                                                                                                                                                                                
                                                                                                                                                                                
controller.php                                                                                      0000705                 00000026721 15242037122 0007444 0                                                                                                    ustar 00                                                                                                                                                                                                                                                       <?php
/**
 * @version     2.0
 * @package     com_tlpteam
 * @copyright   Copyright (C) 2013. All rights reserved.
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 * @author      TechLabPro <techlabpro@gmail.com> - http://www.techlabpro.com
 */
// No direct access
defined('_JEXEC') or die;

jimport('joomla.application.component.controller');

class TlpteamController extends JControllerLegacy {

    /**
     * Method to display a view.
     *
     * @param	boolean			$cachable	If true, the view output will be cached
     * @param	array			$urlparams	An array of safe url parameters and their variable types, for valid values see {@link JFilterInput::clean()}.
     *
     * @return	JController		This object to support chaining.
     * @since	1.5
     */
    public function display($cachable = false, $urlparams = false) {
        require_once JPATH_COMPONENT . '/helpers/tlpteam.php';

        $view = JFactory::getApplication()->input->getCmd('view', 'teams');
        JFactory::getApplication()->input->set('view', $view);

        parent::display($cachable, $urlparams);

        return $this;
    }


    public function singleItem()
    {
        $jinput = JFactory::getApplication()->input;
        $tlpteam_params = JComponentHelper::getParams('com_tlpteam');
        $image_storiage_path            = $tlpteam_params->get('image_path');
        $link_detail                    = $tlpteam_params->get('link_detail');
        $link_type                      = $tlpteam_params->get('link_type');
        $name_field                     = $tlpteam_params->get('g_name_field');
        $primary_color                  = $tlpteam_params->get('g_primary_color');
        $position_field                 = $tlpteam_params->get('g_position_field');
        $shortbio_field                 = $tlpteam_params->get('g_shortbio_field');
        $email_field                    = $tlpteam_params->get('g_email_field');
        $phoneno_field                  = $tlpteam_params->get('g_phoneno_field');
        $mobileno_field                 = $tlpteam_params->get('g_mobileno_field');
        $website_field                  = $tlpteam_params->get('g_website_field');
        $location_field                 = $tlpteam_params->get('g_location_field');
        $skill_field                    = $tlpteam_params->get('g_skill_field');
        $socialicon_field               = $tlpteam_params->get('g_socialicon_field');
        $bootstrap_version              = $tlpteam_params->get('bootstrap_version');
        $image_grid                     = $tlpteam_params->get('image_grid');
        $social_icon_color              = $tlpteam_params->get('g_social_icon_color');
        $social_icon_size               = $tlpteam_params->get('g_social_icon_size');
        $content_grid                   = 12-$image_grid;

        if($bootstrap_version==3){
            $image_area="col-md-".$image_grid." col-lg-".$image_grid." col-sm-6";
            $content_area="col-md-".$content_grid." col-lg-".$content_grid." col-sm-6";
        }else{
            $image_area="tlp-col-md-".$image_grid." tlp-col-lg-".$image_grid." tlp-col-sm-6";
            $content_area="tlp-col-md-".$content_grid." tlp-col-lg-".$content_grid." tlp-col-sm-6";
        }
        $data = $jinput->post->getArray(array());
        $id = (int)$data['id'];
        
        $html = null;
        if($id) {

            $db = JFactory::getDbo();
            $query = $db->getQuery(true);

            $query
                    ->select('a.*,s1.title as skill1,s2.title as skill2,s3.title as skill3,s4.title as skill4,s5.title as skill5')
                    ->from('#__tlpteam_team a');
            
                $query->where("a.id = $id");
      
            $query->join('LEFT', '#__tlpteam_skills AS s1 ON s1.id = a.skill1');
            $query->join('LEFT', '#__tlpteam_skills AS s2 ON s2.id = a.skill2');
            $query->join('LEFT', '#__tlpteam_skills AS s3 ON s3.id = a.skill3');
            $query->join('LEFT', '#__tlpteam_skills AS s4 ON s4.id = a.skill4');
            $query->join('LEFT', '#__tlpteam_skills AS s5 ON s5.id = a.skill5');
            $db->setQuery($query);
            $item = $db->loadObject();
            $imgURL = JURI::root().$tlpteam_params->get('image_path').'/l_'.$item->profile_image;
            if ($item){
                $html .='<div class="tlp-team container">';
                    $html .='<div class="tlp-row tlp-team-detail">';
                        $html .='<div class="'.$image_area.'">';        
                            $html .= '<br><img class="tlp-img-responsive" src="'.$imgURL.'" alt="'.$item->name.'"/>';

                            $html .='<div class="social-icons">';  
                                if($item->facebook!=''){ $html .='<a href="'.$item->facebook.'" target="_blank"><i class="fa fa-facebook"></i></a>';}
                                if($item->twitter!=''){$html .='<a href="'.$item->twitter.'" target="_blank"><i class="fa fa-twitter"></i></a>'; }
                                if($item->google_plus!=''){ $html .='<a href="'.$item->google_plus.'" target="_blank"><i class="fa fa-google-plus"></i></a>'; }
                                if($item->linkedin!=''){ $html .='<a href="'.$item->linkedin.'" target="_blank"><i class="fa fa-linkedin"></i></a>'; }
                                if($item->youtube!=''){ $html .='<a href="'.$item->youtube.'" target="_blank"><i class="fa fa-youtube"></i></a>'; }
                                if($item->vimeo!=''){ $html .='<a href="'.$item->vimeo.'" target="_blank"><i class="fa fa-vimeo"></i></a>'; }
                                if($item->instagram!=''){ $html .='<a href="'.$item->instagram.'" target="_blank"><i class="fa fa-instagram"></i></a>';}
                                if($item->xing!=''){ $html .='<a href="'.$item->xing.'" target="_blank"><i class="fa fa-xing"></i></a>'; }
                                if($item->joomla!=''){ $html .='<a href="'.$item->joomla.'" target="_blank"><i class="fa fa-joomla"></i></a>'; }
                                if($item->wordpress!=''){ $html .='<a href="'.$item->wordpress.'" target="_blank"><i class="fa fa-wordpress"></i></a>'; }
                                if($item->behance!=''){ $html .='<a href="'.$item->behance.'" target="_blank"><i class="fa fa-behance"></i></a>';}
                                if($item->dribbble!=''){ $html .='<a href="'.$item->dribbble.'" target="_blank"><i class="fa fa-dribbble"></i></a>';}
                            $html .='</div>';
                            
                        $html .='</div>';
                        $html .='<div class="'.$content_area.' content-area">';
                        if(($name_field==1)||($position_field==1)){
                            $html .='<article>';
                            $html .='<div class="tlp-content" >';
                                $html .='<h3><span class="tlp-name">'.$item->name.'</span></h3>';
                                if($position_field==1){
                                    $html .='<div class="tlp-position">'.$item->position.'</div>';
                                }
                            $html .='</div>';
                           }
                            $html .='<div class="short-bio">';
                               $html .='<p>'.$item->detail_bio.'</p>';
                           $html .='</div>';

                            if(($email_field==1)||($phoneno_field==1)||($mobileno_field==1)||($website_field==1)||($location_field==1)){
                            $html .='<div class="contact-info">';  
                                $html .='<ul>';
                                if(($email_field==1)&&($item->email!='')){
                                    $html .='<li><i class="fa fa-envelope-o"></i><span><a href="mailto:'.$item->email.'">'.$item->email.'</a></span> </li>';
                                    }
                                if(($website_field==1)&&($item->personal_website!='')){
                                    $html .='<li><i class="fa fa-globe"></i><span><a href="'. $item->personal_website.'" target="_blank">'.$item->personal_website.'</a></span> </li>';
                                   }
                                if(($phoneno_field==1)&&($item->phoneno!='')){
                                    $html .='<li><i class="fa fa-phone"></i><span>'.$item->phoneno.'</span></li>';
                                    }
                                if(($mobileno_field==1)&&($item->mobileno!='')){
                                    $html .='<li><i class="fa fa-mobile"></i><span>'.$item->mobileno.'</span></li>';
                                    }
                                if(($location_field==1)&&($item->location!='')){
                                    $html .='<li><i class="fa fa-map-marker"></i><span>'. $item->location.'</span> </li>';
                                    }     
                                $html .='</ul>';
                            $html .='</div>';
                            }

                            if($skill_field==1){ 
                                $html .='<div class="tlp-team-skill">';
                                    if(($skill_field==1)&&(($item->skill1_no)>0)){
                                        $html .='<div class="skill_name">'.$item->skill1.'</div>';
                                        $html .='<div class="skill-prog"><div class="fill" data-progress-animation='. $item->skill1_no.'></div></div>';
                                     }
                                    if(($skill_field==1)&&(($item->skill2_no)>0)){   
                                        $html .='<div class="skill_name">'.$item->skill2.'</div>';
                                        $html .='<div class="skill-prog"><div class="fill" data-progress-animation='.$item->skill2_no.'></div></div>';
                                    }
                                    if(($skill_field==1)&&(($item->skill3_no)>0)){
                                        $html .='<div class="skill_name">'.$item->skill3.'</div>';
                                        $html .='<div class="skill-prog"><div class="fill" data-progress-animation='.$item->skill3_no.'></div></div>';
                                    }
                                    if(($skill_field==1)&&(($item->skill4_no)>0)){
                                        $html .='<div class="skill_name">'.$item->skill4.'</div>';
                                        $html .='<div class="skill-prog"><div class="fill" data-progress-animation='. $item->skill4_no.'></div></div>';
                                     }
                                    if(($skill_field==1)&&(($item->skill5_no)>0)){   
                                        $html .='<div class="skill_name">'. $item->skill5.'</div>';
                                        $html .='<div class="skill-prog"><div class="fill" data-progress-animation="'.$item->skill5_no.'"></div></div>';
                                    }
                                $html .='</div>';
                            }

                        

                            $html .='</article>';
                       
                        $html .='</div>';
                    $html .='</div>';

                $html .='</div>';
                 }

                // echo "<pre>";
                // print_r($item);
                // echo "</pre>";
                $html .= "<script>progressBarSingle();</script>";
            } else {
                $html .= JText::_('COM_TLPPORTFOLIO_ITEM_NOT_LOADED');
            }
            echo $html;
    }

}
                                               index.html                                                                                          0000705                 00000000032 15242037122 0006530 0                                                                                                    ustar 00                                                                                                                                                                                                                                                       <html><body></body></html>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      router.php                                                                                          0000705                 00000005134 15242037122 0006574 0                                                                                                    ustar 00                                                                                                                                                                                                                                                       <?php
/**
 * @version     2.0
 * @package     com_tlpteam
 * @copyright   Copyright (C) 2013. All rights reserved.
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 * @author      TechLabPro <techlabpro@gmail.com> - http://www.techlabpro.com
 */
// No direct access
defined('_JEXEC') or die;
JLoader::register('TlpteamFrontendHelper', JPATH_BASE . '/components/com_tlpteam/helpers/tlpteam.php');
/**
 * Class TlpteamRouter
 *
 * @since  3.3
 */
class TlpteamRouter extends JComponentRouterBase
{
	/**
	 * Build method for URLs
	 * This method is meant to transform the query parameters into a more human
	 * readable form. It is only executed when SEF mode is switched on.
	 *
	 * @param   array  &$query  An array of URL arguments
	 *
	 * @return  array  The URL arguments to use to assemble the subsequent URL.
	 *
	 * @since   3.3
	 */
	public function build(&$query)
	{
		$segments = array();
		$view     = null;

		if (isset($query['task']))
		{
			$taskParts  = explode('.', $query['task']);
			$segments[] = implode('/', $taskParts);
			$view       = $taskParts[0];
			unset($query['task']);
		}

		if (isset($query['view']))
		{
			$segments[] = $query['view'];
			$view       = $query['view'];
			unset($query['view']);
		}

		if (isset($query['id']))
		{
			if ($view !== null)
			{
				$model      = TlpteamFrontendHelper::getModel($view);
				if($model !== null){
					$item       = $model->getData($query['id']);
					$alias      = $model->getAliasFieldNameByView($view);
					$segments[] = $item->$alias;
				}
			}
			else
			{
				$segments[] = $query['id'];
			}

			unset($query['id']);
		}

		return $segments;
	}

	/**
	 * Parse method for URLs
	 * This method is meant to transform the human readable URL back into
	 * query parameters. It is only executed when SEF mode is switched on.
	 *
	 * @param   array  &$segments  The segments of the URL to parse.
	 *
	 * @return  array  The URL attributes to be used by the application.
	 *
	 * @since   3.3
	 */
	public function parse(&$segments)
	{
		$vars = array();

		// View is always the first element of the array
		$vars['view'] = array_shift($segments);
		$model        = TlpteamFrontendHelper::getModel($vars['view']);

		while (!empty($segments))
		{
			$segment = array_pop($segments);

			// If it's the ID, let's put on the request
			if (is_numeric($segment))
			{
				$vars['id'] = $segment;
			}
			else
			{
				$id = $model->getItemIdByAlias(str_replace(':', '-', $segment));
			if (!empty($id))
			{
				$vars['id'] = $id;
			}
			else
			{
				$vars['task'] = $vars['view'] . '.' . $segment;
			}
						}
					}

			return $vars;
	}
}
                                                                                                                                                                                                                                                                                                                                                                                                                                    models/index.html                                                                                   0000705                 00000000032 15242037122 0010013 0                                                                                                    ustar 00                                                                                                                                                                                                                                                       <html><body></body></html>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      models/forms/filter_teams.xml                                                                       0000705                 00000000754 15242037122 0012357 0                                                                                                    ustar 00                                                                                                                                                                                                                                                       <?xml version="1.0" encoding="utf-8"?>
<form>
    <fields name="filter">
        <field name="search" type="text" hint="COM_TLPTEAM_SEARCH_FILTER_SUBMIT"
               label="COM_USERS_FILTER_SEARCH_DESC"
               class="js-stools-search-string" />

        
		<field name="department" type="category" label="" extension="com_tlpteam" show_root="1" onchange="this.form.submit();" /> 

 
		<field name="access" type="accesslevel" onchange="this.form.submit();" />

    </fields>
</form>                    models/forms/index.html                                                                             0000705                 00000000037 15242037122 0011146 0                                                                                                    ustar 00                                                                                                                                                                                                                                                       <!DOCTYPE html><title></title>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 models/teams.php                                                                                    0000705                 00000035333 15242037122 0007654 0                                                                                                    ustar 00                                                                                                                                                                                                                                                       <?php
/**
 * @version     2.0
 * @package     com_tlpteam
 * @copyright   Copyright (C) 2013. All rights reserved.
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 * @author      TechLabPro <techlabpro@gmail.com> - http://www.techlabpro.com
 */
defined('_JEXEC') or die;

jimport('joomla.application.component.modellist');

/**
 * Methods supporting a list of Tlpteam records.
 */
class TlpteamModelTeams extends JModelList
{

	/**
	 * Constructor.
	 *
	 * @param    array    An optional associative array of configuration settings.
	 *
	 * @see        JController
	 * @since      1.6
	 */
	public function __construct($config = array())
	{
		if (empty($config['filter_fields']))
		{
			$config['filter_fields'] = array(
				                'id', 'a.id',
                'department', 'a.department',
                'name', 'a.name',
                'alias', 'a.alias',
                'position', 'a.position',
                'email', 'a.email',
                'phoneno', 'a.phoneno',
                'personal_website', 'a.personal_website',
                'location', 'a.location',
                'profile_image', 'a.profile_image',
                'short_bio', 'a.short_bio',
                'detail_bio', 'a.detail_bio',
                'facebook', 'a.facebook',
                'twitter', 'a.twitter',
                'linkedin', 'a.linkedin',
                'google_plus', 'a.google_plus',
                'youtube', 'a.youtube',
                'vimeo', 'a.vimeo',
                'instagram', 'a.instagram',
                'skill1', 'a.skill1',
                'skill1_no', 'a.skill1_no',
                'skill2', 'a.skill2',
                'skill2_no', 'a.skill2_no',
                'skill3', 'a.skill3',
                'skill3_no', 'a.skill3_no',
                'skill4', 'a.skill4',
                'skill4_no', 'a.skill4_no',
                'skill5', 'a.skill5',
                'skill5_no', 'a.skill5_no',
                'ordering', 'a.ordering',
                'state', 'a.state',
                'created_by', 'a.created_by',
                'language', 'a.language',
                'access', 'a.access',

			);
		}
		parent::__construct($config);
	}

	/**
	 * Method to auto-populate the model state.
	 *
	 * Note. Calling getState in this method will result in recursion.
	 *
	 * @since    1.6
	 */
	protected function populateState($ordering = null, $direction = null)
	{


		// Initialise variables.
		$app = JFactory::getApplication();

		// List state information
		$limit = $app->getUserStateFromRequest('global.list.limit', 'limit', $app->getCfg('list_limit'));
		$this->setState('list.limit', $limit);

		$limitstart = $app->input->getInt('limitstart', 0);
		$this->setState('list.start', $limitstart);

		if ($list = $app->getUserStateFromRequest($this->context . '.list', 'list', array(), 'array'))
		{
			foreach ($list as $name => $value)
			{
				// Extra validations
				switch ($name)
				{
					case 'fullordering':
						$orderingParts = explode(' ', $value);

						if (count($orderingParts) >= 2)
						{
							// Latest part will be considered the direction
							$fullDirection = end($orderingParts);

							if (in_array(strtoupper($fullDirection), array('ASC', 'DESC', '')))
							{
								$this->setState('list.direction', $fullDirection);
							}

							unset($orderingParts[count($orderingParts) - 1]);

							// The rest will be the ordering
							$fullOrdering = implode(' ', $orderingParts);

							if (in_array($fullOrdering, $this->filter_fields))
							{
								$this->setState('list.ordering', $fullOrdering);
							}
						}
						else
						{
							$this->setState('list.ordering', $ordering);
							$this->setState('list.direction', $direction);
						}
						break;

					case 'ordering':
						if (!in_array($value, $this->filter_fields))
						{
							$value = $ordering;
						}
						break;

					case 'direction':
						if (!in_array(strtoupper($value), array('ASC', 'DESC', '')))
						{
							$value = $direction;
						}
						break;

					case 'limit':
						$limit = $value;
						break;

					// Just to keep the default case
					default:
						$value = $value;
						break;
				}

				$this->setState('list.' . $name, $value);
			}
		}

		// Receive & set filters
		if ($filters = $app->getUserStateFromRequest($this->context . '.filter', 'filter', array(), 'array'))
		{
			foreach ($filters as $name => $value)
			{
				$this->setState('filter.' . $name, $value);
			}
		}

		$ordering = $app->input->get('filter_order');
		if (!empty($ordering))
		{
			$list             = $app->getUserState($this->context . '.list');
			$list['ordering'] = $app->input->get('filter_order');
			$app->setUserState($this->context . '.list', $list);
		}

		$orderingDirection = $app->input->get('filter_order_Dir');
		if (!empty($orderingDirection))
		{
			$list              = $app->getUserState($this->context . '.list');
			$list['direction'] = $app->input->get('filter_order_Dir');
			$app->setUserState($this->context . '.list', $list);
		}

		$list = $app->getUserState($this->context . '.list');

		if (empty($list['ordering']))
{
	$list['ordering'] = 'ordering';
}

if (empty($list['direction']))
{
	$list['direction'] = 'asc';
}

		if (isset($list['ordering'])) {
                    $this->setState('list.ordering', $list['ordering']);
                }
                if (isset($list['direction'])) {
                    $this->setState('list.direction', $list['direction']);
                }
                
	}

	/**
	 * Build an SQL query to load the list data.
	 *
	 * @return    JDatabaseQuery
	 * @since    1.6
	 */
	protected function getListQuery()
	{
		$app = JFactory::getApplication();
		$menu = $app->getMenu();
		$active = $menu->getActive();
		$itemId = $active->id;

//
		// $input = JFactory::getApplication()->input;
		// $menuitemid = $input->getInt( 'Itemid' );
		// @$menu = JSite::getMenu();
		$menuparams = $menu->getParams($itemId);
		$department1 = $menuparams->get("category");
		@$department = implode(",", $department1);

		JFactory::getLanguage()->getTag();

	 	$multilang=JLanguageMultilang::isEnabled();
	
		// Create a new query object.
		$db    = $this->getDbo();
		$query = $db->getQuery(true);

		// Select the required fields from the table.
		$query
			->select(
				$this->getState(
					'list.select', 'DISTINCT a.*'
				)
			);

		$query->from('`#__tlpteam_team` AS a');

		
	    // Join over the users for the checked out user.
	    $query->select('uc.name AS editor');
	    $query->join('LEFT', '#__users AS uc ON uc.id=a.checked_out');
    
		// Join over the category 'department'
		$query->select('department.title AS department_title');
		$query->join('LEFT', '#__categories AS department ON department.id = a.department');
		// Join over the category 'id'
		$query->select('departmentid.id AS department_id');
		$query->join('LEFT', '#__categories AS departmentid ON departmentid.id = a.department');
		// Join over the foreign key 'skill1'
		$query->select('#__tlpteam_skills_1.title AS skills_title_1');
		$query->join('LEFT', '#__tlpteam_skills AS #__tlpteam_skills_1 ON #__tlpteam_skills_1.id = a.skill1');
		// Join over the foreign key 'skill2'
		$query->select('#__tlpteam_skills_2.title AS skills_title_2');
		$query->join('LEFT', '#__tlpteam_skills AS #__tlpteam_skills_2 ON #__tlpteam_skills_2.id = a.skill2');
		// Join over the foreign key 'skill3'
		$query->select('#__tlpteam_skills_3.title AS skills_title_3');
		$query->join('LEFT', '#__tlpteam_skills AS #__tlpteam_skills_3 ON #__tlpteam_skills_3.id = a.skill3');
		// Join over the foreign key 'skill4'
		$query->select('#__tlpteam_skills_4.title AS skills_title_4');
		$query->join('LEFT', '#__tlpteam_skills AS #__tlpteam_skills_4 ON #__tlpteam_skills_4.id = a.skill4');
		// Join over the foreign key 'skill5'
		$query->select('#__tlpteam_skills_5.title AS skills_title_5');
		$query->join('LEFT', '#__tlpteam_skills AS #__tlpteam_skills_5 ON #__tlpteam_skills_5.id = a.skill5');
		// Join over the created by field 'created_by'
		$query->join('LEFT', '#__users AS created_by ON created_by.id = a.created_by');

	if($department>0){
		$query->where("a.department IN ($department)");
	}

	// Filter by language
		if ($multilang)
		{
			$query->where('a.language in (' . $db->quote(JFactory::getLanguage()->getTag()) . ',' . $db->quote('*') . ')');
		}

	if (!JFactory::getUser()->authorise('core.edit.state', 'com_tlpteam'))
	{
		$query->where('a.state = 1');
	}

		// Filter by search in title
		$search = $this->getState('filter.search');
		if (!empty($search))
		{
			if (stripos($search, 'id:') === 0)
			{
				$query->where('a.id = ' . (int) substr($search, 3));
			}
			else
			{
				$search = $db->Quote('%' . $db->escape($search, true) . '%');
				$query->where('( a.name LIKE '.$search.'  OR  a.position LIKE '.$search.' )');
			}
		}

		

		//Filtering department
		// $filter_department = $this->state->get("filter.department");
		// if ($filter_department) {
		// 	$query->where("a.department = '".$db->escape($filter_department)."'");
		// }

		//Filtering language
		// $filter_language = $this->state->get("filter.language");
		// if ($filter_language) {
		// 	$query->where("a.language = '".$db->escape($filter_language)."'");
		// }

		//Filtering access
		$filter_access = $this->state->get("filter.access");
		if ($filter_access) {
			$query->where("a.access = '".$db->escape($filter_access)."'");
		}

		// Add the list ordering clause.
		$orderCol  = $this->state->get('list.ordering');
		$orderDirn = $this->state->get('list.direction');
		if ($orderCol && $orderDirn)
		{
			$query->order($db->escape($orderCol . ' ' . $orderDirn));
		}
//echo $query;

		return $query;
	}

	public function getItems()
	{
		$items = parent::getItems();


		foreach($items as $item){
	

			if ( isset($item->department) ) {

				// Get the title of that particular template
					$title = TlpteamFrontendHelper::getCategoryNameByCategoryId($item->department);

					// Finally replace the data object with proper information
					$item->department = !empty($title) ? $title : $item->department;
				}

			if (isset($item->skill1) && $item->skill1 != '') {
				if(is_object($item->skill1)){
					$item->skill1 = JArrayHelper::fromObject($item->skill1);
				}
				$values = (is_array($item->skill1)) ? $item->skill1 : explode(',',$item->skill1);

				$textValue = array();
				foreach ($values as $value){
					$db = JFactory::getDbo();
					$query = $db->getQuery(true);
					$query
							->select($db->quoteName('title'))
							->from('`#__tlpteam_skills`')
							->where($db->quoteName('id') . ' = ' . $db->quote($db->escape($value)));
					$db->setQuery($query);
					$results = $db->loadObject();
					if ($results) {
						$textValue[] = $results->title;
					}
				}

			$item->skill1 = !empty($textValue) ? implode(', ', $textValue) : $item->skill1;

			}

			if (isset($item->skill2) && $item->skill2 != '') {
				if(is_object($item->skill2)){
					$item->skill2 = JArrayHelper::fromObject($item->skill2);
				}
				$values = (is_array($item->skill2)) ? $item->skill2 : explode(',',$item->skill2);

				$textValue = array();
				foreach ($values as $value){
					$db = JFactory::getDbo();
					$query = $db->getQuery(true);
					$query
							->select($db->quoteName('title'))
							->from('`#__tlpteam_skills`')
							->where($db->quoteName('id') . ' = ' . $db->quote($db->escape($value)));
					$db->setQuery($query);
					$results = $db->loadObject();
					if ($results) {
						$textValue[] = $results->title;
					}
				}

			$item->skill2 = !empty($textValue) ? implode(', ', $textValue) : $item->skill2;

			}

			if (isset($item->skill3) && $item->skill3 != '') {
				if(is_object($item->skill3)){
					$item->skill3 = JArrayHelper::fromObject($item->skill3);
				}
				$values = (is_array($item->skill3)) ? $item->skill3 : explode(',',$item->skill3);

				$textValue = array();
				foreach ($values as $value){
					$db = JFactory::getDbo();
					$query = $db->getQuery(true);
					$query
							->select($db->quoteName('title'))
							->from('`#__tlpteam_skills`')
							->where($db->quoteName('id') . ' = ' . $db->quote($db->escape($value)));
					$db->setQuery($query);
					$results = $db->loadObject();
					if ($results) {
						$textValue[] = $results->title;
					}
				}

			$item->skill3 = !empty($textValue) ? implode(', ', $textValue) : $item->skill3;

			}

			if (isset($item->skill4) && $item->skill4 != '') {
				if(is_object($item->skill4)){
					$item->skill4 = JArrayHelper::fromObject($item->skill4);
				}
				$values = (is_array($item->skill4)) ? $item->skill4 : explode(',',$item->skill4);

				$textValue = array();
				foreach ($values as $value){
					$db = JFactory::getDbo();
					$query = $db->getQuery(true);
					$query
							->select($db->quoteName('title'))
							->from('`#__tlpteam_skills`')
							->where($db->quoteName('id') . ' = ' . $db->quote($db->escape($value)));
					$db->setQuery($query);
					$results = $db->loadObject();
					if ($results) {
						$textValue[] = $results->title;
					}
				}

			$item->skill4 = !empty($textValue) ? implode(', ', $textValue) : $item->skill4;

			}

			if (isset($item->skill5) && $item->skill5 != '') {
				if(is_object($item->skill5)){
					$item->skill5 = JArrayHelper::fromObject($item->skill5);
				}
				$values = (is_array($item->skill5)) ? $item->skill5 : explode(',',$item->skill5);

				$textValue = array();
				foreach ($values as $value){
					$db = JFactory::getDbo();
					$query = $db->getQuery(true);
					$query
							->select($db->quoteName('title'))
							->from('`#__tlpteam_skills`')
							->where($db->quoteName('id') . ' = ' . $db->quote($db->escape($value)));
					$db->setQuery($query);
					$results = $db->loadObject();
					if ($results) {
						$textValue[] = $results->title;
					}
				}

			$item->skill5 = !empty($textValue) ? implode(', ', $textValue) : $item->skill5;

			}
}

		return $items;
	}

	/**
	 * Overrides the default function to check Date fields format, identified by
	 * "_dateformat" suffix, and erases the field if it's not correct.
	 */
	protected function loadFormData()
	{
		$app              = JFactory::getApplication();
		$filters          = $app->getUserState($this->context . '.filter', array());
		$error_dateformat = false;
		foreach ($filters as $key => $value)
		{
			if (strpos($key, '_dateformat') && !empty($value) && !$this->isValidDate($value))
			{
				$filters[$key]    = '';
				$error_dateformat = true;
			}
		}
		if ($error_dateformat)
		{
			$app->enqueueMessage(JText::_("COM_TLPTEAM_SEARCH_FILTER_DATE_FORMAT"), "warning");
			$app->setUserState($this->context . '.filter', $filters);
		}

		return parent::loadFormData();
	}

	/**
	 * Checks if a given date is valid and in an specified format (YYYY-MM-DD)
	 *
	 * @param string Contains the date to be checked
	 *
	 */
	private function isValidDate($date)
	{
		return preg_match("/^(19|20)\d\d[-](0[1-9]|1[012])[-](0[1-9]|[12][0-9]|3[01])$/", $date) && date_create($date);
	}

}
                                                                                                                                                                                                                                                                                                     models/fields/index.html                                                                            0000705                 00000000032 15242037122 0011261 0                                                                                                    ustar 00                                                                                                                                                                                                                                                       <html><body></body></html>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      models/fields/timeupdated.php                                                                       0000705                 00000002563 15242037122 0012315 0                                                                                                    ustar 00                                                                                                                                                                                                                                                       <?php
/**
 * @version     1.1
 * @package     com_tlpteam
 * @copyright   Copyright (C) 2013. All rights reserved.
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 * @author      TechLabPro <techlabpro@gmail.com> - http://www.techlabpro.com
 */

defined('JPATH_BASE') or die;

jimport('joomla.form.formfield');

/**
 * Supports an HTML select list of categories
 */
class JFormFieldTimeupdated extends JFormField
{
	/**
	 * The form field type.
	 *
	 * @var		string
	 * @since	1.6
	 */
	protected $type = 'timeupdated';

	/**
	 * Method to get the field input markup.
	 *
	 * @return	string	The field input markup.
	 * @since	1.6
	 */
	protected function getInput()
	{
		// Initialize variables.
		$html = array();
        
        
		$old_time_updated = $this->value;
        $hidden = (boolean) $this->element['hidden'];
        if ($hidden == null || !$hidden){
            if (!strtotime($old_time_updated)) {
                $html[] = '-';
            } else {
                $jdate = new JDate($old_time_updated);
                $pretty_date = $jdate->format(JText::_('DATE_FORMAT_LC2'));
                $html[] = "<div>".$pretty_date."</div>";
            }
        }
        $time_updated = JFactory::getDate()->toSql();
        $html[] = '<input type="hidden" name="'.$this->name.'" value="'.$time_updated.'" />';
        
		return implode($html);
	}
}                                                                                                                                             models/fields/createdby.php                                                                         0000705                 00000002105 15242037122 0011742 0                                                                                                    ustar 00                                                                                                                                                                                                                                                       <?php
/**
 * @version     1.1
 * @package     com_tlpteam
 * @copyright   Copyright (C) 2013. All rights reserved.
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 * @author      TechLabPro <techlabpro@gmail.com> - http://www.techlabpro.com
 */

defined('JPATH_BASE') or die;

jimport('joomla.form.formfield');

/**
 * Supports an HTML select list of categories
 */
class JFormFieldCreatedby extends JFormField
{
	/**
	 * The form field type.
	 *
	 * @var		string
	 * @since	1.6
	 */
	protected $type = 'createdby';

	/**
	 * Method to get the field input markup.
	 *
	 * @return	string	The field input markup.
	 * @since	1.6
	 */
	protected function getInput()
	{
		// Initialize variables.
		$html = array();
        
        
		//Load user
		$user_id = $this->value;
		if ($user_id) {
			$user = JFactory::getUser($user_id);
		} else {
			$user = JFactory::getUser();
			$html[] = '<input type="hidden" name="'.$this->name.'" value="'.$user->id.'" />';
		}
		$html[] = "<div>".$user->name." (".$user->username.")</div>";
        
		return implode($html);
	}
}                                                                                                                                                                                                                                                                                                                                                                                                                                                           models/fields/timecreated.php                                                                       0000705                 00000002464 15242037122 0012276 0                                                                                                    ustar 00                                                                                                                                                                                                                                                       <?php
/**
 * @version     1.1
 * @package     com_tlpteam
 * @copyright   Copyright (C) 2013. All rights reserved.
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 * @author      TechLabPro <techlabpro@gmail.com> - http://www.techlabpro.com
 */

defined('JPATH_BASE') or die;

jimport('joomla.form.formfield');

/**
 * Supports an HTML select list of categories
 */
class JFormFieldTimecreated extends JFormField
{
	/**
	 * The form field type.
	 *
	 * @var		string
	 * @since	1.6
	 */
	protected $type = 'timecreated';

	/**
	 * Method to get the field input markup.
	 *
	 * @return	string	The field input markup.
	 * @since	1.6
	 */
	protected function getInput() {
        // Initialize variables.
        $html = array();

        $time_created = $this->value;
        if (!strtotime($time_created)) {
            $time_created = JFactory::getDate()->toSql();
            $html[] = '<input type="hidden" name="' . $this->name . '" value="' . $time_created . '" />';
        }
        $hidden = (boolean) $this->element['hidden'];
        if ($hidden == null || !$hidden) {
            $jdate = new JDate($time_created);
            $pretty_date = $jdate->format(JText::_('DATE_FORMAT_LC2'));
            $html[] = "<div>" . $pretty_date . "</div>";
        }
        return implode($html);
    }
}                                                                                                                                                                                                            models/fields/submit.php                                                                            0000705                 00000001567 15242037122 0011316 0                                                                                                    ustar 00                                                                                                                                                                                                                                                       <?php
/**
 * @version     1.1
 * @package     com_tlpteam
 * @copyright   Copyright (C) 2013. All rights reserved.
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 * @author      TechLabPro <techlabpro@gmail.com> - http://www.techlabpro.com
 */

// Check to ensure this file is included in Joomla!
defined('_JEXEC') or die('Restricted access');

jimport('joomla.form.formfield');

class JFormFieldSubmit extends JFormField
{

	protected $type = 'submit';
	protected $value;
	protected $for;

	public function getInput()
	{

		$this->value = $this->getAttribute('value');

		return '<button id="' . $this->id . '"'
		. ' name="submit_' . $this->for . '"'
		. ' value="' . $this->value . '"'
		. ' title="' . JText::_('JSEARCH_FILTER_SUBMIT') . '"'
		. ' class="btn" style="margin-top: -10px;">'
		. JText::_('JSEARCH_FILTER_SUBMIT')
		. ' </button>';
	}

}
                                                                                                                                         models/fields/modifiedby.php                                                                        0000705                 00000001737 15242037122 0012125 0                                                                                                    ustar 00                                                                                                                                                                                                                                                       <?php
/**
 * @version     1.1
 * @package     com_tlpteam
 * @copyright   Copyright (C) 2013. All rights reserved.
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 * @author      TechLabPro <techlabpro@gmail.com> - http://www.techlabpro.com
 */

defined('JPATH_BASE') or die;

jimport('joomla.form.formfield');

/**
 * Supports an HTML select list of categories
 */
class JFormFieldModifiedby extends JFormField
{
	/**
	 * The form field type.
	 *
	 * @var        string
	 * @since    1.6
	 */
	protected $type = 'modifiedby';

	/**
	 * Method to get the field input markup.
	 *
	 * @return    string    The field input markup.
	 * @since    1.6
	 */
	protected function getInput()
	{
		// Initialize variables.
		$html   = array();
		$user   = JFactory::getUser();
		$html[] = '<input type="hidden" name="' . $this->name . '" value="' . $user->id . '" />';
		$html[] = "<div>" . $user->name . " (" . $user->username . ")</div>";

		return implode($html);
	}
}                                 models/fields/foreignkey.php                                                                        0000705                 00000006031 15242037122 0012144 0                                                                                                    ustar 00                                                                                                                                                                                                                                                       <?php

/**
 * @version     1.1
 * @package     com_tlpteam
 * @copyright   Copyright (C) 2013. All rights reserved.
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 * @author      TechLabPro <techlabpro@gmail.com> - http://www.techlabpro.com
 */
defined('JPATH_BASE') or die;

jimport('joomla.form.formfield');

/**
 * Supports a value from an external table
 */
class JFormFieldForeignKey extends JFormField
{

	/**
	 * The form field type.
	 *
	 * @var        string
	 * @since    1.6
	 */
	protected $type = 'foreignkey';
	private $input_type;
	private $table;
	private $key_field;
	private $value_field;

	/**
	 * Method to get the field input markup.
	 *
	 * @return    string    The field input markup.
	 * @since    1.6
	 */
	protected function getInput()
	{

		//Assign field properties.
		//Type of input the field shows
		$this->input_type = $this->getAttribute('input_type');

		//Database Table
		$this->table = $this->getAttribute('table');

		//The field that the field will save on the database
		$this->key_field = (string) $this->getAttribute('key_field');

		//The column that the field shows in the input
		$this->value_field = (string) $this->getAttribute('value_field');
		// Initialize variables.
		$html = '';

		//Load all the field options
		$db    = JFactory::getDbo();
		$query = $db->getQuery(true);

		$query
			->select(
				array(
					$db->quoteName($this->key_field),
					$db->quoteName($this->value_field)
				)
			)
			->from($this->table);

		$db->setQuery($query);
		$results = $db->loadObjectList();

		$input_options = 'class="' . $this->getAttribute('class') . '"';

		//Depends of the type of input, the field will show a type or another
		switch ($this->input_type)
		{
			case 'list':
			default:
				$options = array();

				//Iterate through all the results
				foreach ($results as $result)
				{
					$options[] = JHtml::_('select.option', $result->{$this->key_field}, $result->{$this->value_field});
				}

				$value = $this->value;

				//If the value is a string -> Only one result
				if (is_string($value))
				{
					$value = array($value);
				}
				else if (is_object($value))
				{ //If the value is an object, let's get its properties.
					$value = get_object_vars($value);
				}

				//If the select is multiple
				if ($this->multiple)
				{
					$input_options .= 'multiple="multiple"';
				}
				else
				{
					array_unshift($options, JHtml::_('select.option', '', ''));
				}

				$html = JHtml::_('select.genericlist', $options, $this->name, $input_options, 'value', 'text', $value, $this->id);
				break;
		}

		return $html;
	}

	/**
	 * Wrapper method for getting attributes from the form element
	 *
	 * @param string $attr_name Attribute name
	 * @param mixed  $default   Optional value to return if attribute not found
	 *
	 * @return mixed The value of the attribute if it exists, null otherwise
	 */
	public function getAttribute($attr_name, $default = null)
	{
		if (!empty($this->element[$attr_name]))
		{
			return $this->element[$attr_name];
		}
		else
		{
			return $default;
		}
	}

}
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       models/team.php                                                                                     0000705                 00000021071 15242037122 0007463 0                                                                                                    ustar 00                                                                                                                                                                                                                                                       <?php
/**
 * @version     2.0
 * @package     com_tlpteam
 * @copyright   Copyright (C) 2013. All rights reserved.
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 * @author      TechLabPro <techlabpro@gmail.com> - http://www.techlabpro.com
 */
// No direct access.
defined('_JEXEC') or die;

jimport('joomla.application.component.modelitem');
jimport('joomla.event.dispatcher');

/**
 * Tlpteam model.
 */
class TlpteamModelTeam extends JModelItem
{

	/**
	 * Method to auto-populate the model state.
	 *
	 * Note. Calling getState in this method will result in recursion.
	 *
	 * @since    1.6
	 */
	protected function populateState()
	{
		$app = JFactory::getApplication('com_tlpteam');

		// Load state from the request userState on edit or from the passed variable on default
		if (JFactory::getApplication()->input->get('layout') == 'edit')
		{
			$id = JFactory::getApplication()->getUserState('com_tlpteam.edit.team.id');
		}
		else
		{
			$id = JFactory::getApplication()->input->get('id');
			JFactory::getApplication()->setUserState('com_tlpteam.edit.team.id', $id);
		}
		$this->setState('team.id', $id);

		// Load the parameters.
		$params       = $app->getParams();
		$params_array = $params->toArray();
		if (isset($params_array['item_id']))
		{
			$this->setState('team.id', $params_array['item_id']);
		}
		$this->setState('params', $params);
	}

	/**
	 * Method to get an ojbect.
	 *
	 * @param    integer    The id of the object to get.
	 *
	 * @return    mixed    Object on success, false on failure.
	 */
	public function &getData($id = null)
	{
		if ($this->_item === null)
		{
			$this->_item = false;

			if (empty($id))
			{
				$id = $this->getState('team.id');
			}

			// Get a level row instance.
			$table = $this->getTable();

			// Attempt to load the row.
			if ($table->load($id))
			{
				// Check published state.
				if ($published = $this->getState('filter.published'))
				{
					if ($table->state != $published)
					{
						return $this->_item;
					}
				}

				// Convert the JTable to a clean JObject.
				$properties  = $table->getProperties(1);
				$this->_item = JArrayHelper::toObject($properties, 'JObject');
			}
			elseif ($error = $table->getError())
			{
				$this->setError($error);
			}
		}

		

			if (isset($this->_item->skill1) && $this->_item->skill1 != '') {
				if(is_object($this->_item->skill1)){
					$this->_item->skill1 = JArrayHelper::fromObject($this->_item->skill1);
				}
				$values = (is_array($this->_item->skill1)) ? $this->_item->skill1 : explode(',',$this->_item->skill1);

				$textValue = array();
				foreach ($values as $value){
					$db = JFactory::getDbo();
					$query = $db->getQuery(true);
					$query
							->select('title')
							->from('`#__tlpteam_skills`')
							->where('id = ' . $db->quote($db->escape($value)));
					$db->setQuery($query);
					$results = $db->loadObject();
					if ($results) {
						$textValue[] = $results->title;
					}
				}

			$this->_item->skill1 = !empty($textValue) ? implode(', ', $textValue) : $this->_item->skill1;

			}

			if (isset($this->_item->skill2) && $this->_item->skill2 != '') {
				if(is_object($this->_item->skill2)){
					$this->_item->skill2 = JArrayHelper::fromObject($this->_item->skill2);
				}
				$values = (is_array($this->_item->skill2)) ? $this->_item->skill2 : explode(',',$this->_item->skill2);

				$textValue = array();
				foreach ($values as $value){
					$db = JFactory::getDbo();
					$query = $db->getQuery(true);
					$query
							->select('title')
							->from('`#__tlpteam_skills`')
							->where('id = ' . $db->quote($db->escape($value)));
					$db->setQuery($query);
					$results = $db->loadObject();
					if ($results) {
						$textValue[] = $results->title;
					}
				}

			$this->_item->skill2 = !empty($textValue) ? implode(', ', $textValue) : $this->_item->skill2;

			}

			if (isset($this->_item->skill3) && $this->_item->skill3 != '') {
				if(is_object($this->_item->skill3)){
					$this->_item->skill3 = JArrayHelper::fromObject($this->_item->skill3);
				}
				$values = (is_array($this->_item->skill3)) ? $this->_item->skill3 : explode(',',$this->_item->skill3);

				$textValue = array();
				foreach ($values as $value){
					$db = JFactory::getDbo();
					$query = $db->getQuery(true);
					$query
							->select('title')
							->from('`#__tlpteam_skills`')
							->where('id = ' . $db->quote($db->escape($value)));
					$db->setQuery($query);
					$results = $db->loadObject();
					if ($results) {
						$textValue[] = $results->title;
					}
				}

			$this->_item->skill3 = !empty($textValue) ? implode(', ', $textValue) : $this->_item->skill3;

			}

			if (isset($this->_item->skill4) && $this->_item->skill4 != '') {
				if(is_object($this->_item->skill4)){
					$this->_item->skill4 = JArrayHelper::fromObject($this->_item->skill4);
				}
				$values = (is_array($this->_item->skill4)) ? $this->_item->skill4 : explode(',',$this->_item->skill4);

				$textValue = array();
				foreach ($values as $value){
					$db = JFactory::getDbo();
					$query = $db->getQuery(true);
					$query
							->select('title')
							->from('`#__tlpteam_skills`')
							->where('id = ' . $db->quote($db->escape($value)));
					$db->setQuery($query);
					$results = $db->loadObject();
					if ($results) {
						$textValue[] = $results->title;
					}
				}

			$this->_item->skill4 = !empty($textValue) ? implode(', ', $textValue) : $this->_item->skill4;

			}

			if (isset($this->_item->skill5) && $this->_item->skill5 != '') {
				if(is_object($this->_item->skill5)){
					$this->_item->skill5 = JArrayHelper::fromObject($this->_item->skill5);
				}
				$values = (is_array($this->_item->skill5)) ? $this->_item->skill5 : explode(',',$this->_item->skill5);

				$textValue = array();
				foreach ($values as $value){
					$db = JFactory::getDbo();
					$query = $db->getQuery(true);
					$query
							->select('title')
							->from('`#__tlpteam_skills`')
							->where('id = ' . $db->quote($db->escape($value)));
					$db->setQuery($query);
					$results = $db->loadObject();
					if ($results) {
						$textValue[] = $results->title;
					}
				}

			$this->_item->skill5 = !empty($textValue) ? implode(', ', $textValue) : $this->_item->skill5;

			}
		if ( isset($this->_item->created_by) ) {
			$this->_item->created_by_name = JFactory::getUser($this->_item->created_by)->name;
		}

		return $this->_item;
	}

	public function getTable($type = 'Team', $prefix = 'TlpteamTable', $config = array())
	{
		$this->addTablePath(JPATH_ADMINISTRATOR . '/components/com_tlpteam/tables');

		return JTable::getInstance($type, $prefix, $config);
	}

	public function getItemIdByAlias($alias)
	{
		$table = $this->getTable();

		$table->load(array('alias' => $alias));

		return $table->id;
	}

	/**
	 * Method to check in an item.
	 *
	 * @param    integer        The id of the row to check out.
	 *
	 * @return    boolean        True on success, false on failure.
	 * @since    1.6
	 */
	public function checkin($id = null)
	{
		// Get the id.
		$id = (!empty($id)) ? $id : (int) $this->getState('team.id');

		if ($id)
		{

			// Initialise the table
			$table = $this->getTable();

			// Attempt to check the row in.
			if (method_exists($table, 'checkin'))
			{
				if (!$table->checkin($id))
				{
					$this->setError($table->getError());

					return false;
				}
			}
		}

		return true;
	}

	/**
	 * Method to check out an item for editing.
	 *
	 * @param    integer        The id of the row to check out.
	 *
	 * @return    boolean        True on success, false on failure.
	 * @since    1.6
	 */
	public function checkout($id = null)
	{
		// Get the user id.
		$id = (!empty($id)) ? $id : (int) $this->getState('team.id');

		if ($id)
		{

			// Initialise the table
			$table = $this->getTable();

			// Get the current user object.
			$user = JFactory::getUser();

			// Attempt to check the row out.
			if (method_exists($table, 'checkout'))
			{
				if (!$table->checkout($user->get('id'), $id))
				{
					$this->setError($table->getError());

					return false;
				}
			}
		}

		return true;
	}

	public function getCategoryName($id)
	{
		$db    = JFactory::getDbo();
		$query = $db->getQuery(true);
		$query
			->select('title')
			->from('#__categories')
			->where('id = ' . $id);
		$db->setQuery($query);

		return $db->loadObject();
	}

	public function publish($id, $state)
	{
		$table = $this->getTable();
		$table->load($id);
		$table->state = $state;

		return $table->store();
	}

	public function delete($id)
	{
		$table = $this->getTable();

		return $table->delete($id);
	}

	public function getAliasFieldNameByView($view)
	{
		switch ($view)
		{
			case 'team':
			case 'teamform':
				return 'alias';
			break;
		}
	}
}

                                                                                                                                                                                                                                                                                                                                                                                                                                                                       assets/images/tlp-loading.gif                                                                       0000705                 00000006210 15242037122 0012207 0                                                                                                    ustar 00                                                                                                                                                                                                                                                       GIF89a         Ƅ666VVV似         !Created with ajaxload.info ! 
   !NETSCAPE2.0   ,         IiabK$FRAT,2S*05//mp!z0;$0C.I*!HC(A@o!39T5\8)`dwxG=Y
gwHbvA=0	V\\;	;H0t%HsrY<H.ŉ	bZbOEg:GY].=AOQs \bh.9=sgce*ֆf 7D  ! 
  ,         IiYͧYF5FԢRÔTbGJLd&Ymx莔 \@ 1&RH
41Q|V%zv#j0
lGg{0~<<	[[hxG
y[0GPzhɾĘkziyh|zhG݄VŢ \h[ Ǥ&+W78! ! 
  ,         I)11G5d](RǲT2jL{< [5M
0)
 LImE`pU
^f%^u;zz}0X	
S0ewyk<%	O	z{|%Fi10˼Y8x	z@<ݫ   8Y<ɥ8\P$!  ! 
  ,         IgEU ՠRaTB٤p>'e$"\#E1CnĎ~ J,,AaUw^4I%PuQ33{0i1TGgwy}%%'R	=3G%p0
JRo5Ȇ0IĦmykxT_}( ^yKs>i_%n=q4e-M¤D  ! 
  ,         I)*')Ed]PR	A:!zrbw%6"G(d$["JFhaQP`p%/BFP\cU?TtW/pG&OtDa_sylD'Mq	tcb2DM:d%4%s)uE3 YU tږD$JiM<Y;ذd< OtX<q'+B  ! 
  ,         IiRͧ"J% EQZLd-Y
hkQ|5u4YINbWu5
r	%yb>^%o/rvl9'L;99%i9 C"BBDs^Xf}$P	{L?P O4 E咛V$d J#)pV$ ! 
  ,         IiRͧ"Jd] RZN*P*;$P{*N\EА!1UO2D	_r6Ib
H8	B;	"'ZtbK#C'Kw}?Kiz6:xKAC&}9tz\\D5;xQd( 	KWMBIڈM=ˤs⸽8DaJ`@LG ! 
  ,         IiRͧ"Jd] RZN*P*;$P{*N\EА!1UO2D	_r6Ib
H8	B;	"'ZtbK#C'KGziz68}z~%XK9:0}%	tz\BlcLbQ 	ǉ ųKňx(țPX,ւ|/"  ! 
  ,         IiRͧ"Jd] RZN*P*;$P{*N\EА!1UO2D	_r6Ib
H8	B;	"'ZtbK#C'KGziz68}z~%:A/C}u\h}bD]= 	V)
ڊ9CDK Ku	*00StD  ! 
 	 ,         IiRͧ"Jd] RZN*P*;$P{*N\EА!1UO2D	_r6Ib
H8	B;	"'ZtbK#C'KGzz5
C:	A/C}u\Eh}b6 [= Wx&)I9Ԭ @oCT?Kd]B7 6ЫD ! 
 
 ,         IiRͧ"Jd] RZN*P*;$P{*N\EА!1UO2D	_r6IƀH03hոaj U{CIkmbK#cK8	{a8nV:/q:M
Cu~ Ehk6 	 [_6P</UYHF9?M%
GCk v>.]6!)V  ! 
  ,         IiRͧ"Jd]URZN	JjN2sK6
dI)
LHWG6	KX젱.6d~zhuur/6 X5I;_tO#E	{O9V94;VC/
6Ø~*'MonbX:~]+V*mK_OrK N@. d ~qЦDB֋5D  ;                                                                                                                                                                                                                                                                                                                                                                                                 assets/images/popuploading.gif                                                                      0000705                 00000020056 15242037122 0012502 0                                                                                                    ustar 00                                                                                                                                                                                                                                                       GIF89ad d    3h6^<b\|IA,VTvLo~ˆ$O 3vDi
:                                       !NETSCAPE2.0   !Created with ajaxload.info !	   ,    d d    dihlp,tmx|2
G,ArZitxK^Ïq)$" {^_hw<{v+SN.'{.A0
A$	zUF\$E%F"}		+E9B7
3
5!-S=& UG.3jȱǏ CIɓ(%	0P_)M 9@!<\1&jP(9DQSJt鈤),5p Czu׮- Pޤ>mn=lݣL5W'Ԯx VAK1`a:Xowq仞6QYװc˞M۸sAMۀߖ	-osoX?k0:kαw& ^M3!3qϿn$$pv ,8L>1 $6
V@a4@&@DB#p0@Ґ	\80I@1!!eI &U/'di!  !	   ,    d d    dihlp,tmx|2G,D౬XCY]"ٰB<}H%`/+8,+`+ly(,Ux*$I.H-%

E$D"=ãWEu

pT<8Zр>Un6 $j  ,`">7)0 p 'J(H/iɳϟ@
JѣHy8ꠓQx-88@4N<21.FVmI, BT"hmھ|7
ZUa|E&\aɰUIA ZR*2̀)O|%ĝۢqՃgݚ^{7ᵑ]JP+_μУKN:,HPE9$pw
"8c?>5"](

8 }74P:! 9Š}3uv ("5qAEKr	ODP@2 8W3FP$(3>4PGȍB@Z<Ψ	"0"
c:L0%4"rY5%=࢓颛L=opt7	t$#j衈 !	   ,    d d    dihlp,tmx|@q(HFp:	ljz[\7(`4^p)
J9+
r)uvXzM~+#g.-%Lv@	kQ>$D??
@		8"6
 !m<$砆|h}[FA}Q8!	P8sɳϟ@
J @8vtEuҞ5=46OӺ=_Itu*(0iV0{Y#Ջn^bP@]ڸҪ{߰~qkAMc-7h'f>زH
Nȓ+_>.xr0 :S`AwѮ_/i@Po;AG"܁&r6pp`!{@@eNÆpM,".<em`Y9 
xM5E؀Q@G(g#q7Fibrt,YrX`)	  !	   ,    d d    dihlp,tmx|P N@88rJ3<6V@\ռcx-C%(U=H+f*y)Y-) |	mt-%?

$>"j

?%k>
	8FCT>	 =
)-]̠Bv0LP>(r'>PL!|F8X ʣH*]ʴӧPJJUG}Jyuz`X+r%2cM%]{c97ŀ,ʗ%l93_( i~ȭ7o&2;q][cڳc0PծakD[pp5TweU˟O?u 	` bTC ]N8
cCHJDsXcII!znG5 -  (4h82S@ 	@?#d@4dC(1G&;@e{$Sa t`V,i<<號4DG*㡈&.  !	   ,    d d    dihlp,tmx|@Z`h<cy0 6s`@1%z[ԡSrj@gVCYX]rpq'		w-l.'|@#		Aa$yAF"	A	$	Af>
4ΐ 3	0N
1x#:!2"D`hd @A0cʜI͛8sɳ/d@ы"Q0 OȪkV_Iv]M4x

[aV_MK6-׾bPV+޿#V/
?=\jիMHmٲݾYc\rdշkq+͠p:p>μУKN}
d (GXWv [^AwJt>
_K[1D|HP64XvzW{$!8  = u ( Ec#8RGO0ВUbLRq42+R-R1'(?MIA@eaIdi&!  !	   ,    d d    dihlp,tmx|@ZhFb0"5ӑ dIM8pkK-C蔠M\];@{n	mst%U	`./'[@RV%A}"UN A
#
?Ą?C315ucAbo7 V ̗0S>Fa0 8 %zC :ɳϟ@
JѣH"Q-cNjA`)xٲ%ΦUK ekQPk+΍V[[mZدU6XYǋsܶ3
R& lpڡMI *	o9r\VN+'Jjt6W_νËOy?xAk$ȗƝ_,8	7_o3x%`Xwʗ0L~a64P!//`XM|9$By0(4Yj=P2#Y@LÑd!P1Y xPJYK.ISxP( t-i%<3|y3V'h&袋  !	   ,    d d    dihlp,tmx|p,Ȭ-ĢI	P²U5Fw*䟠!~5
BXDi@b0	yz"_f}=	S$}fB$_Bp"IC#DpB[ 6
ޜ677mS֍?8.h=AHŋ3jȱǏ CaČ(ZX(AɊNYbgO$p
P'<h3hNEVQVYx[
sEvV4!N`x뉱M]YMXlk]Ho-,* e8[߮%\ز/cDaDѨS^ͺװc˞ME
NwS4 oP/qd
~@[:L.;A'kxr7ZkϿf|rjH`{# |07m5C(ঀ8`	(h`v.0(@4B"H-@ND A	LeGJjPF9%jDz%pd	@[az6  !	   ,    d d    dihlp,tmx|p@ȬP I	"QBdYhQ4ʯ!<jD
1VX	Zv|#~p@OkB	 >GBP#@
g5		3
	
67`0_3zwu6!qŋ3jȱǏ CId1`p,pp_,d[>K :DG$EZ P+!FfUW_E,4lPk\	5],ܮc{6M9(\G"֚XaOi<*̺D6j8a*dF%l2,K^ͺװc˞Mm"V, vPX?!GՃ GP
*3 =o/v9.ޚ؀@[dC%oϿHГrCBs^ D(]*|,׀@4 8>J(!%"( ^(w-Rx<)[?Pb+, !ౡ.$OtZA&@&0Ԧ9@ *(!  !	   ,    d d    dihlp,tmx|p(k@&
r
38ex:pQ2hC8AZePCa`B{R~#C$V
C{V
@{bGnS}8{	x5Źz4v	4
3= 
H @	$jѠ`h"F?($ɑSȒ 6VD	`&Gq)fO*E6,f	2dSO:DP/e(7{}sOLQ(Tb;KɺUK<8ZLÈ+^̸cM$d, +C>@PySXyrA鼱V} Aװa1H=t%bҥB=;!te\#X0ËGxur @p@w-뿞C~ GsVa$@ {@ FJq =hM
!@߉)`@(J, @ R
$A'$p@`yaNxQnXG0Ab['d !	   ,    d d    dihlp,tmx|p(k0&P,"r
Duۂ<Z%xFĀ@1dzbsKNaA||~"C$^C}#@pcF:Gy4

ɷ2̣ƥE޵1eӐ; 
HLSHzPD 0b|waI%TI% .E`TX AGT(PA2:dLDE2i6:agÜ(ݺңIy6zAԛBZ%iB+ӥdUbMqQƟu}KdӓDF"	3k̹ϠCM:݀	ZcׯX2 ލ	n	p.|_; 8pjD.!;zo[ՅbqٺaJ,KϿM   ЀD'$ D\x>0a&!
 =č1|=/a­VDQ@t4@5  d cj0`@h
FpyKh"%f|f@qYuiR &   !	   ,    d d    dihlp,tmx|pH8bA:eRu,h(0Ϩ°nb(Dyx|%
uA
xzjGQzZ?8226ø06˺M5¸3 
4¼$ JP¬X8a;N213@e0	Cę$S絞!)|iSF:G:lgQ'UTMZ,ա?ͪ0&;V:Դ-nպl#<UP܇4"^̸ǐ#KLe(8ug >Q 	`op5诡=۠	Zxme80R>Zlx}ว߸8ӫ__Axʯ|NP=	
T@B@$ȇ|~&ac@߅{ !!	Ƈ *(=ᄗDp¹0@xwJH@}U@x(80@ )#B
r d@fR6Ibc`逖eF{h2  !	   ,    d d    dihlp,tmx|pH8@:eJ`|ZYz-ĂbLf;ȫF3[ b@OwmB
~$wB%B$vzpkwGl&	?ɲ#0Js4	Y5	2޿Y6
5\qcV]$Ç#JHŋ3jb]0  A!U08P4PE-dDlJ89"( E`P B( Ĺ3)У=EEU[z]iS~Q|XJrEڈh[qsw+k׸Ś`4BUX	-<-g5YKh@$)>Fͺװc˞MA(`:%t[_1.H'G#uA^@2,W`tɰ~z^#K?~B@~y6طT@ }q n6Foe
!}b`G	$D C4 ܅,ǃ%Ƙ].]PG 	@90 '2 g8A&@5f9	-
 CiE]fl9䗨%&Ps5 J(蠄B ;                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           assets/images/tlp-sprite.png                                                                        0000705                 00000021746 15242037122 0012132 0                                                                                                    ustar 00                                                                                                                                                                                                                                                       PNG

   IHDR            tEXtSoftware Adobe ImageReadyqe<  fiTXtXML:com.adobe.xmp     <?xpacket begin="﻿" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.3-c011 66.145661, 2012/02/06-14:56:27        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns: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:1F26FE5D3D33E3118C448E83434A74B6" xmpMM:DocumentID="xmp.did:3135020782EC11E5AB509B2ABF224ED7" xmpMM:InstanceID="xmp.iid:3135020682EC11E5AB509B2ABF224ED7" xmp:CreatorTool="Adobe Photoshop CS6 (Windows)"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:5D3E750BEC82E511A78EAFE0AADBDA31" stRef:documentID="xmp.did:1F26FE5D3D33E3118C448E83434A74B6"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>WX   IDATx]xE.@E@"83< @Ge|$
ʢ <qԕԙUD(
~GGPy(3
$=7T:VwW/7UU:uTuFpIw >;q{⯈ ¾$$	JKK]^QQQNɨKĝI|q{`2o$*"~x49.*҂ *fҽj*RP~׸-w`(jWCĻwAP~DڦĭbFޕĵ_B܅߈'4ryhs%gI_/6zbH>i_q<q9qM~ˉ^hhQ{ L/O%FxN%K|)_@g?(HsO4̉>f	7gĭ1!^Pst$Ns?"(<Zw.4ӣ#]VVD
J'~xC`?|͛7*))D%#JFRz^# x!r'4|:h݋-NzԹ?4P7hcnf% aLyys3g#h+e=i!nCWڂ.F7ga7Vad{{M{22' e.0ȳ4nCOx_A=cGO'<l'
c@	OcPN=EVF^qOAF*BQTV2yyJxF/+@P\=}8x<c!g/0f{|H`WMQ֗(&I3fal0 F{%	Pw2e-it;btfVA(S"Fa8'x>oU{9G1C;CōHfTA"-TA<<\z} N`"yhpl?'N2,a()nf'~r?x0 m_1in,tnZ?O);YxSt^㥚KSк~zËm} kn
$]ciq<`ROFܭ1auB^gbξBHMG˕fEV$\"OHLCMc#@Cz$imt)i&w ceKL9-g吂i7Qo8qxE֒S1d/,ۉ9,<>.mgxظ%]{?0ƗY^@1B*9dǽ3vP_ 1N30O`;|DFy*tǩ`+ VtKӅI0aqhuB4ڟDrm\`*Gy	FX9T/I8zIt~XdnS	΅~nC7Ctt$'YVS0hpO(*8ƟKt6u@Vy2]aߣq𴒮Ivw"%Vx"Bw0v6[:prw35e8Հ&#&d)aUQt'V=:Bzh-C0r;_Cݭ0A|'~
i7a>Ln5 olK`o^qQ&+=M\y؋12ص%¬q1GCO|Hnm~nك1b=;4-#^ỹq{?p_		L)<,L\YP2zbЫR\+T%mF_Û՝P!1<`2B-L& cZ[xhjX.V*ԃ6S.[7osv[cv X7	iIhL%*u,L'Yh0jIHQJqi,8I3Lx6
_=8ds<9E'z!UW
oi'< 'hx
u_?A|O FyNyZCQ?pF"n1/ -<Ǔ<Ӱu>:(ӖX	.tiVt^B1'҅ʀ*+grY #x'
i,Kd[:k~P:na+<`3!p텆k&sQsx6ޔ#0g ,@YPspF{02M]昆uX&/8H.<:"st3'ɊXΒmCXxj$Y\71kip*껴Tv{FzEå
/A_nKVX)]b)$X΅ztF3yOHAoޥ1@((pP"al˽%if _N;tsAZƿ*DpD?iWND3>o6ZᔝAyw)7Vm^f|:"
2o;EФuV'O-ӷ|	#L!`j*;oӸel:vwca`@ 4gcǍ2&'	Ű\B(@pކ3ÖA-]prM'F\]$8O9x<cQ!x'Q(.gF^D7
]1l!sٝI;cG\8c&~+wg)P~:p^8+K^S8Y%B6y=WX(+'Q+8	>>´@j'<uV)Lt37i4oa#\dn\l;D%#	 ÞVf>
ڏGqs7ZuszNC?ڂ|8@0<$43=.*<~#^I^ۃz1k~:(]jZFc} j|^dkX8@K_pZ<Jc
},I˧;Kb,*9P1{G]m 'xs#X(OKJN#BR1 0l_pDԹ9~'la6	cEXYxX=|2~Uan? Q"1Ť`,C9qsŤqx#XCpX{D@QXԛ41B;7ÖJy3&3Qo;]ԛa6SQoL{f1.(3Fc%}z
Oh8(hIx>Bipl{Q^S)  gἏB8'5MzO//ad^$?)<<A/`ϻF
y;%$|!/ʸB#\aUtKL~T,(Qo1Q֨7a|bA*R(F*F1,؇!@ǤxZg\q}<
Bl4OEw9/1h"]+6fK_Oc;Qo~*kHD?޸tQo>{![4vg:)/ؤ"n^[1lVv*.w(TvhK`!>DFZx01;콸B^pP~<I!`ؔiinUӈ>[LLY;QgSnCM,#.TH_	<.};`)3QoD1qԛ3M|B-[0(&&FUc+%$O<C>]m7uvo'$?cxq|K a1}V "fv+=j\׉J`:.A\ ]/8ͷ/0͓"^<WY	P1q(IG9,@qԛLBV?wT2w#?P/0m恨FI7}ˉa11īQgGiHqԛd{&aZ7C3	7GQioLx1]0&N'n9k:p[q!:5׌ۘ0//GbEOXLխ柣{pNGnO!,Ȉԃ6J@>ػZ3%Eq_:I6ӡ76-$]uez- C:gje@ >_lY(<#~ǁDgUxϜf,^'4֖LBͿPDd=Q5NЅ;@n0R.wQ~*cciKF	?F!ljF$xCn_!6̽$,Qo7vQo3	-4-yS:6i6U~)6LӁ#V9?Z|]	,4Km4v-DÐn;0/clb}^ o܁MJl"nx~XfZ biN-YA\!_̖fH^@6034i[6ڟ3w_@y.g%j1ߔp0lUܜUܲ5nNa'yweUxX%?\TqܘiLuLǧH>
Χm#N(3N*n%"ҼE>aoA6'd?jZ2jP46F0w`Rĵf1Fp>Tc㱰r}/2PfG5q*PN-<_le5"WxTZJ[0V[T2)h%|m54N[U)rUv볰*Uj{ݎ^I{wyR:(|pV~.7enGF!zLTqgҞIo1a;;̸3-@!b8_%z1QŝI> d)@DLjֲOc>S!#
/zM$1;YW
b9ƭF۱N4c$|깡ĭ?h=^4=*f	-4=*&	5#3!l)='1%ʀ[%J|WwwܱG*6-G
w*Or2|0B?j? tmJLnqGڊCq$DeJx8zǎ~8AyE<2{s[.zcBz7DOhP"&n܋b{[
OVJTM7 ?Ewp"Dqx`*ܢƸm'<g`w4]4[O^pSP&~R:'Qo7ԋC{CF3n^
6U|<m'<|@\1}WJ"i{\ۅ."QuP`|Y9wOy+<E*FSFkRxNî55G-2]laںpB`֥t-dvCIM'q[
Oސ*dHJ9EָWc^p[
O +n^FyQ?E+\;ijm;lbD2:ImQP0'	<8qq7VQoEpQo"E2o?!	=vyx}- EQoCt?p9څ7_kOZu
=ꍀ/qEщih,RE#L,<6W>M4FyWvu:vg7)s0#k|hoa[#&>WeG}cxP:pɈzF!0O7Ǽy'2ܧY{D5LjǄI%4ԁ[$&60Oq<^7NG6q[
O&ب7^pC(JYUdGMR-քRxY׊;K(-ygC3`czO1TU'R4NG^rKX:{RFܶn:k"?x@m;،vP.HOu yxm)<qԛ`޸{	gKcTzOO!46`71kiPӂ>1܍M`"⋄%qxvܩE0B/?ԿF8^
LoL
'^{pދgu3en/2LaPG<,5w@G`{	)pe"\T
fvԢUm#3FcB "rq/m)<L+03(iUdcč4QloKaz
N&vM9AUd0<s[؝Iȋmq9h[08@qsHvRgIu܀ڸx0'^P|Fpk&ÝJx
#[]yIuJDr0nJ<p) |vY&Gc-WrDěNcC1޲zB))x!	kiz1q
Q2iCwx_xx.4#K*cLq\SV19lK (ƝaK%
l\Հbܚq{P=
ko!.%.pn ܂<ֈ[%Q~44P;C
n_ĸ}Ɲf68:ć^V(kv_; v7G'7"7FP4wnC_c%|L cⶺx52C<(<e3q\;X;Vdt[*bmP	LǸ@x%Cj6qN+ᘝЌqRx.#%I>1=Z`Kw9-HTؚ[܏qRxEZE<8Et}/8~r:8QoPQFь;7ip[mWo#QKa8
lո `f]׉h*Lq1&q[[}P"fv+=j\׉J`:@7lx'n"mIl-PGEw QoR܆G9,@q{ܖ6:]}=nju5]<u؈:Z,ÆfF'	J;Ї)itMTe)nc&BX>'p-ۇnqkQo\SF7)zGqmT&zJp7-'zGQm15.OH _αp{ŝF:q;Xr0/ekmkaPpm慺jFЇQ;H~`Ourm+zGQm9lɛ9b⧉]lNZlRlr;MUqz	NBrζiͶwm7><Æv6zY;XJdg">aq[飿2Xabx(2x@*2 e'Ewm:Vd0L cNu䇱[;6eHUw:#jt<#64^!I1 p$*9/JE^1g)3n,~N<
{x=(䑐֕82ƭףtGab>}(,>R;x[UlL' =MP    IENDB`                          assets/owl-carousel/owl.transitions.css                                                             0000705                 00000010574 15242037122 0014354 0                                                                                                    ustar 00                                                                                                                                                                                                                                                       /* 
 *  Owl Carousel CSS3 Transitions 
 *  v1.3.2
 */

.owl-origin {
	-webkit-perspective: 1200px;
	-webkit-perspective-origin-x : 50%;
	-webkit-perspective-origin-y : 50%;
	-moz-perspective : 1200px;
	-moz-perspective-origin-x : 50%;
	-moz-perspective-origin-y : 50%;
	perspective : 1200px;
}
/* fade */
.owl-fade-out {
  z-index: 10;
  -webkit-animation: fadeOut .7s both ease;
  -moz-animation: fadeOut .7s both ease;
  animation: fadeOut .7s both ease;
}
.owl-fade-in {
  -webkit-animation: fadeIn .7s both ease;
  -moz-animation: fadeIn .7s both ease;
  animation: fadeIn .7s both ease;
}
/* backSlide */
.owl-backSlide-out {
  -webkit-animation: backSlideOut 1s both ease;
  -moz-animation: backSlideOut 1s both ease;
  animation: backSlideOut 1s both ease;
}
.owl-backSlide-in {
  -webkit-animation: backSlideIn 1s both ease;
  -moz-animation: backSlideIn 1s both ease;
  animation: backSlideIn 1s both ease;
}
/* goDown */
.owl-goDown-out {
  -webkit-animation: scaleToFade .7s ease both;
  -moz-animation: scaleToFade .7s ease both;
  animation: scaleToFade .7s ease both;
}
.owl-goDown-in {
  -webkit-animation: goDown .6s ease both;
  -moz-animation: goDown .6s ease both;
  animation: goDown .6s ease both;
}
/* scaleUp */
.owl-fadeUp-in {
  -webkit-animation: scaleUpFrom .5s ease both;
  -moz-animation: scaleUpFrom .5s ease both;
  animation: scaleUpFrom .5s ease both;
}

.owl-fadeUp-out {
  -webkit-animation: scaleUpTo .5s ease both;
  -moz-animation: scaleUpTo .5s ease both;
  animation: scaleUpTo .5s ease both;
}
/* Keyframes */
/*empty*/
@-webkit-keyframes empty {
  0% {opacity: 1}
}
@-moz-keyframes empty {
  0% {opacity: 1}
}
@keyframes empty {
  0% {opacity: 1}
}
@-webkit-keyframes fadeIn {
  0% { opacity:0; }
  100% { opacity:1; }
}
@-moz-keyframes fadeIn {
  0% { opacity:0; }
  100% { opacity:1; }
}
@keyframes fadeIn {
  0% { opacity:0; }
  100% { opacity:1; }
}
@-webkit-keyframes fadeOut {
  0% { opacity:1; }
  100% { opacity:0; }
}
@-moz-keyframes fadeOut {
  0% { opacity:1; }
  100% { opacity:0; }
}
@keyframes fadeOut {
  0% { opacity:1; }
  100% { opacity:0; }
}
@-webkit-keyframes backSlideOut {
  25% { opacity: .5; -webkit-transform: translateZ(-500px); }
  75% { opacity: .5; -webkit-transform: translateZ(-500px) translateX(-200%); }
  100% { opacity: .5; -webkit-transform: translateZ(-500px) translateX(-200%); }
}
@-moz-keyframes backSlideOut {
  25% { opacity: .5; -moz-transform: translateZ(-500px); }
  75% { opacity: .5; -moz-transform: translateZ(-500px) translateX(-200%); }
  100% { opacity: .5; -moz-transform: translateZ(-500px) translateX(-200%); }
}
@keyframes backSlideOut {
  25% { opacity: .5; transform: translateZ(-500px); }
  75% { opacity: .5; transform: translateZ(-500px) translateX(-200%); }
  100% { opacity: .5; transform: translateZ(-500px) translateX(-200%); }
}
@-webkit-keyframes backSlideIn {
  0%, 25% { opacity: .5; -webkit-transform: translateZ(-500px) translateX(200%); }
  75% { opacity: .5; -webkit-transform: translateZ(-500px); }
  100% { opacity: 1; -webkit-transform: translateZ(0) translateX(0); }
}
@-moz-keyframes backSlideIn {
  0%, 25% { opacity: .5; -moz-transform: translateZ(-500px) translateX(200%); }
  75% { opacity: .5; -moz-transform: translateZ(-500px); }
  100% { opacity: 1; -moz-transform: translateZ(0) translateX(0); }
}
@keyframes backSlideIn {
  0%, 25% { opacity: .5; transform: translateZ(-500px) translateX(200%); }
  75% { opacity: .5; transform: translateZ(-500px); }
  100% { opacity: 1; transform: translateZ(0) translateX(0); }
}
@-webkit-keyframes scaleToFade {
  to { opacity: 0; -webkit-transform: scale(.8); }
}
@-moz-keyframes scaleToFade {
  to { opacity: 0; -moz-transform: scale(.8); }
}
@keyframes scaleToFade {
  to { opacity: 0; transform: scale(.8); }
}
@-webkit-keyframes goDown {
  from { -webkit-transform: translateY(-100%); }
}
@-moz-keyframes goDown {
  from { -moz-transform: translateY(-100%); }
}
@keyframes goDown {
  from { transform: translateY(-100%); }
}

@-webkit-keyframes scaleUpFrom {
  from { opacity: 0; -webkit-transform: scale(1.5); }
}
@-moz-keyframes scaleUpFrom {
  from { opacity: 0; -moz-transform: scale(1.5); }
}
@keyframes scaleUpFrom {
  from { opacity: 0; transform: scale(1.5); }
}

@-webkit-keyframes scaleUpTo {
  to { opacity: 0; -webkit-transform: scale(1.5); }
}
@-moz-keyframes scaleUpTo {
  to { opacity: 0; -moz-transform: scale(1.5); }
}
@keyframes scaleUpTo {
  to { opacity: 0; transform: scale(1.5); }
}                                                                                                                                    assets/owl-carousel/AjaxLoader.gif                                                                  0000705                 00000002755 15242037122 0013170 0                                                                                                    ustar 00                                                                                                                                                                                                                                                       GIF89a      !NETSCAPE2.0   !	  ,         x F0O)əYFT
<Њ![
Ł@N͆Z\U+ 	W!bp>sZ78R}0a|
JK<J{j'\V0``oU$^4	 !	  ,         x F}0N)əYF ,FQB 
U,χB
@*FR)bHLgJKP#cԒf(.;} d|~w<,hX-z,,&	 !	  ,         xAF
mYƴBL(hnǲ!t@ l@ 9k01@(,SuӪJOЖyH_{
c\\^GS,a E\ 
oKaU5	 !	  ,         x$bIy0=KWIAngD`ka
m
I! `q*XN[h2umNhuSDL0Wh`{g v}E Qn5q ( |z	 !	  ,         xEIy=M'b_}PX'K/)DCfg	*LA9Zrur<(bY mtsZvSeU zq~#G4z< huI<=7QqVx	 !	  ,         x0IZC:u T]V6h6'8ҍ]z`(pDgHa0G\a0 dB L1 !@DPyo3}uq
 cnU|
b_omt]y.w=Asn	 !	  ,         x0I8ͻ`(!Eg 0 haۇ)v߅]lvlBb<f4c UE6@Eе`>:VɀNo5I~c|tjxB-hv{.y^)1-gD&fvKbh` !\^	 !	  ,         x0I4XyBjgSd6)2f<$J)K+V#.z0-y)TI@(6|Auyyr}}vey8EafJtg=pe(nXsmT_P'	 ;                   assets/owl-carousel/grabbing.png                                                                    0000705                 00000000164 15242037122 0012740 0                                                                                                    ustar 00                                                                                                                                                                                                                                                       PNG

   IHDR         a   ;IDAT8c`v?cOPd>SbR EDBLZk/  n6e/<r    IENDB`                                                                                                                                                                                                                                                                                                                                                                                                            assets/owl-carousel/owl.carousel.css                                                                0000705                 00000002704 15242037122 0013610 0                                                                                                    ustar 00                                                                                                                                                                                                                                                       /* 
 * 	Core Owl Carousel CSS File
 *	v1.3.3
 */

/* clearfix */
.owl-carousel .owl-wrapper:after {
	content: ".";
	display: block;
	clear: both;
	visibility: hidden;
	line-height: 0;
	height: 0;
}
/* display none until init */
.owl-carousel{
	display: none;
	position: relative;
	width: 100%;
	-ms-touch-action: pan-y;
}
.owl-carousel .owl-wrapper{
	display: none;
	position: relative;
	-webkit-transform: translate3d(0px, 0px, 0px);
}
.owl-carousel .owl-wrapper-outer{
	overflow: hidden;
	position: relative;
	width: 100%;
}
.owl-carousel .owl-wrapper-outer.autoHeight{
	-webkit-transition: height 500ms ease-in-out;
	-moz-transition: height 500ms ease-in-out;
	-ms-transition: height 500ms ease-in-out;
	-o-transition: height 500ms ease-in-out;
	transition: height 500ms ease-in-out;
}
	
.owl-carousel .owl-item{
	float: left;
}
.owl-controls .owl-page,
.owl-controls .owl-buttons div{
	cursor: pointer;
}
.owl-controls {
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

/* mouse grab icon */
.grabbing { 
    cursor:url(grabbing.png) 8 8, move;
}

/* fix */
.owl-carousel  .owl-wrapper,
.owl-carousel  .owl-item{
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility:    hidden;
	-ms-backface-visibility:     hidden;
  -webkit-transform: translate3d(0,0,0);
  -moz-transform: translate3d(0,0,0);
  -ms-transform: translate3d(0,0,0);
}

                                                            assets/owl-carousel/owl.theme.css                                                                   0000705                 00000003201 15242037122 0013066 0                                                                                                    ustar 00                                                                                                                                                                                                                                                       /*
* 	Owl Carousel Owl Demo Theme 
*	v1.3.3
*/

.owl-theme .owl-controls{
	margin-top: 10px;
	text-align: center;
}

/* Styling Next and Prev buttons */

.owl-theme .owl-controls .owl-buttons div{
	color: #FFF;
	display: inline-block;
	zoom: 1;
	*display: inline;/*IE7 life-saver */
	margin: 5px;
	padding: 3px 10px;
	font-size: 12px;
	-webkit-border-radius: 30px;
	-moz-border-radius: 30px;
	border-radius: 30px;
	background: #869791;
	filter: Alpha(Opacity=50);/*IE7 fix*/
	opacity: 0.5;
}
/* Clickable class fix problem with hover on touch devices */
/* Use it for non-touch hover action */
.owl-theme .owl-controls.clickable .owl-buttons div:hover{
	filter: Alpha(Opacity=100);/*IE7 fix*/
	opacity: 1;
	text-decoration: none;
}

/* Styling Pagination*/

.owl-theme .owl-controls .owl-page{
	display: inline-block;
	zoom: 1;
	*display: inline;/*IE7 life-saver */
}
.owl-theme .owl-controls .owl-page span{
	display: block;
	width: 12px;
	height: 12px;
	margin: 5px 7px;
	filter: Alpha(Opacity=50);/*IE7 fix*/
	opacity: 0.5;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	border-radius: 20px;
	background: #869791;
}

.owl-theme .owl-controls .owl-page.active span,
.owl-theme .owl-controls.clickable .owl-page:hover span{
	filter: Alpha(Opacity=100);/*IE7 fix*/
	opacity: 1;
}

/* If PaginationNumbers is true */

.owl-theme .owl-controls .owl-page span.owl-numbers{
	height: auto;
	width: auto;
	color: #FFF;
	padding: 2px 10px;
	font-size: 12px;
	-webkit-border-radius: 30px;
	-moz-border-radius: 30px;
	border-radius: 30px;
}

/* preloading images */
.owl-item.loading{
	min-height: 150px;
	background: url(AjaxLoader.gif) no-repeat center center
}                                                                                                                                                                                                                                                                                                                                                                                               assets/owl-carousel/owl.carousel.js                                                                 0000705                 00000147075 15242037122 0013447 0                                                                                                    ustar 00                                                                                                                                                                                                                                                       /*
 *  jQuery OwlCarousel v1.3.3
 *
 *  Copyright (c) 2013 Bartosz Wojciechowski
 *  http://www.owlgraphic.com/owlcarousel/
 *
 *  Licensed under MIT
 *
 */

/*JS Lint helpers: */
/*global dragMove: false, dragEnd: false, $, jQuery, alert, window, document */
/*jslint nomen: true, continue:true */

if (typeof Object.create !== "function") {
    Object.create = function (obj) {
        function F() {}
        F.prototype = obj;
        return new F();
    };
}
(function ($, window, document) {

    var Carousel = {
        init : function (options, el) {
            var base = this;

            base.$elem = $(el);
            base.options = $.extend({}, $.fn.owlCarousel.options, base.$elem.data(), options);

            base.userOptions = options;
            base.loadContent();
        },

        loadContent : function () {
            var base = this, url;

            function getData(data) {
                var i, content = "";
                if (typeof base.options.jsonSuccess === "function") {
                    base.options.jsonSuccess.apply(this, [data]);
                } else {
                    for (i in data.owl) {
                        if (data.owl.hasOwnProperty(i)) {
                            content += data.owl[i].item;
                        }
                    }
                    base.$elem.html(content);
                }
                base.logIn();
            }

            if (typeof base.options.beforeInit === "function") {
                base.options.beforeInit.apply(this, [base.$elem]);
            }

            if (typeof base.options.jsonPath === "string") {
                url = base.options.jsonPath;
                $.getJSON(url, getData);
            } else {
                base.logIn();
            }
        },

        logIn : function () {
            var base = this;

            base.$elem.data("owl-originalStyles", base.$elem.attr("style"));
            base.$elem.data("owl-originalClasses", base.$elem.attr("class"));

            base.$elem.css({opacity: 0});
            base.orignalItems = base.options.items;
            base.checkBrowser();
            base.wrapperWidth = 0;
            base.checkVisible = null;
            base.setVars();
        },

        setVars : function () {
            var base = this;
            if (base.$elem.children().length === 0) {return false; }
            base.baseClass();
            base.eventTypes();
            base.$userItems = base.$elem.children();
            base.itemsAmount = base.$userItems.length;
            base.wrapItems();
            base.$owlItems = base.$elem.find(".owl-item");
            base.$owlWrapper = base.$elem.find(".owl-wrapper");
            base.playDirection = "next";
            base.prevItem = 0;
            base.prevArr = [0];
            base.currentItem = 0;
            base.customEvents();
            base.onStartup();
        },

        onStartup : function () {
            var base = this;
            base.updateItems();
            base.calculateAll();
            base.buildControls();
            base.updateControls();
            base.response();
            base.moveEvents();
            base.stopOnHover();
            base.owlStatus();

            if (base.options.transitionStyle !== false) {
                base.transitionTypes(base.options.transitionStyle);
            }
            if (base.options.autoPlay === true) {
                base.options.autoPlay = 5000;
            }
            base.play();

            base.$elem.find(".owl-wrapper").css("display", "block");

            if (!base.$elem.is(":visible")) {
                base.watchVisibility();
            } else {
                base.$elem.css("opacity", 1);
            }
            base.onstartup = false;
            base.eachMoveUpdate();
            if (typeof base.options.afterInit === "function") {
                base.options.afterInit.apply(this, [base.$elem]);
            }
        },

        eachMoveUpdate : function () {
            var base = this;

            if (base.options.lazyLoad === true) {
                base.lazyLoad();
            }
            if (base.options.autoHeight === true) {
                base.autoHeight();
            }
            base.onVisibleItems();

            if (typeof base.options.afterAction === "function") {
                base.options.afterAction.apply(this, [base.$elem]);
            }
        },

        updateVars : function () {
            var base = this;
            if (typeof base.options.beforeUpdate === "function") {
                base.options.beforeUpdate.apply(this, [base.$elem]);
            }
            base.watchVisibility();
            base.updateItems();
            base.calculateAll();
            base.updatePosition();
            base.updateControls();
            base.eachMoveUpdate();
            if (typeof base.options.afterUpdate === "function") {
                base.options.afterUpdate.apply(this, [base.$elem]);
            }
        },

        reload : function () {
            var base = this;
            window.setTimeout(function () {
                base.updateVars();
            }, 0);
        },

        watchVisibility : function () {
            var base = this;

            if (base.$elem.is(":visible") === false) {
                base.$elem.css({opacity: 0});
                window.clearInterval(base.autoPlayInterval);
                window.clearInterval(base.checkVisible);
            } else {
                return false;
            }
            base.checkVisible = window.setInterval(function () {
                if (base.$elem.is(":visible")) {
                    base.reload();
                    base.$elem.animate({opacity: 1}, 200);
                    window.clearInterval(base.checkVisible);
                }
            }, 500);
        },

        wrapItems : function () {
            var base = this;
            base.$userItems.wrapAll("<div class=\"owl-wrapper\">").wrap("<div class=\"owl-item\"></div>");
            base.$elem.find(".owl-wrapper").wrap("<div class=\"owl-wrapper-outer\">");
            base.wrapperOuter = base.$elem.find(".owl-wrapper-outer");
            base.$elem.css("display", "block");
        },

        baseClass : function () {
            var base = this,
                hasBaseClass = base.$elem.hasClass(base.options.baseClass),
                hasThemeClass = base.$elem.hasClass(base.options.theme);

            if (!hasBaseClass) {
                base.$elem.addClass(base.options.baseClass);
            }

            if (!hasThemeClass) {
                base.$elem.addClass(base.options.theme);
            }
        },

        updateItems : function () {
            var base = this, width, i;

            if (base.options.responsive === false) {
                return false;
            }
            if (base.options.singleItem === true) {
                base.options.items = base.orignalItems = 1;
                base.options.itemsCustom = false;
                base.options.itemsDesktop = false;
                base.options.itemsDesktopSmall = false;
                base.options.itemsTablet = false;
                base.options.itemsTabletSmall = false;
                base.options.itemsMobile = false;
                return false;
            }

            width = $(base.options.responsiveBaseWidth).width();

            if (width > (base.options.itemsDesktop[0] || base.orignalItems)) {
                base.options.items = base.orignalItems;
            }
            if (base.options.itemsCustom !== false) {
                //Reorder array by screen size
                base.options.itemsCustom.sort(function (a, b) {return a[0] - b[0]; });

                for (i = 0; i < base.options.itemsCustom.length; i += 1) {
                    if (base.options.itemsCustom[i][0] <= width) {
                        base.options.items = base.options.itemsCustom[i][1];
                    }
                }

            } else {

                if (width <= base.options.itemsDesktop[0] && base.options.itemsDesktop !== false) {
                    base.options.items = base.options.itemsDesktop[1];
                }

                if (width <= base.options.itemsDesktopSmall[0] && base.options.itemsDesktopSmall !== false) {
                    base.options.items = base.options.itemsDesktopSmall[1];
                }

                if (width <= base.options.itemsTablet[0] && base.options.itemsTablet !== false) {
                    base.options.items = base.options.itemsTablet[1];
                }

                if (width <= base.options.itemsTabletSmall[0] && base.options.itemsTabletSmall !== false) {
                    base.options.items = base.options.itemsTabletSmall[1];
                }

                if (width <= base.options.itemsMobile[0] && base.options.itemsMobile !== false) {
                    base.options.items = base.options.itemsMobile[1];
                }
            }

            //if number of items is less than declared
            if (base.options.items > base.itemsAmount && base.options.itemsScaleUp === true) {
                base.options.items = base.itemsAmount;
            }
        },

        response : function () {
            var base = this,
                smallDelay,
                lastWindowWidth;

            if (base.options.responsive !== true) {
                return false;
            }
            lastWindowWidth = $(window).width();

            base.resizer = function () {
                if ($(window).width() !== lastWindowWidth) {
                    if (base.options.autoPlay !== false) {
                        window.clearInterval(base.autoPlayInterval);
                    }
                    window.clearTimeout(smallDelay);
                    smallDelay = window.setTimeout(function () {
                        lastWindowWidth = $(window).width();
                        base.updateVars();
                    }, base.options.responsiveRefreshRate);
                }
            };
            $(window).resize(base.resizer);
        },

        updatePosition : function () {
            var base = this;
            base.jumpTo(base.currentItem);
            if (base.options.autoPlay !== false) {
                base.checkAp();
            }
        },

        appendItemsSizes : function () {
            var base = this,
                roundPages = 0,
                lastItem = base.itemsAmount - base.options.items;

            base.$owlItems.each(function (index) {
                var $this = $(this);
                $this
                    .css({"width": base.itemWidth})
                    .data("owl-item", Number(index));

                if (index % base.options.items === 0 || index === lastItem) {
                    if (!(index > lastItem)) {
                        roundPages += 1;
                    }
                }
                $this.data("owl-roundPages", roundPages);
            });
        },

        appendWrapperSizes : function () {
            var base = this,
                width = base.$owlItems.length * base.itemWidth;

            base.$owlWrapper.css({
                "width": width * 2,
                "left": 0
            });
            base.appendItemsSizes();
        },

        calculateAll : function () {
            var base = this;
            base.calculateWidth();
            base.appendWrapperSizes();
            base.loops();
            base.max();
        },

        calculateWidth : function () {
            var base = this;
            base.itemWidth = Math.round(base.$elem.width() / base.options.items);
        },

        max : function () {
            var base = this,
                maximum = ((base.itemsAmount * base.itemWidth) - base.options.items * base.itemWidth) * -1;
            if (base.options.items > base.itemsAmount) {
                base.maximumItem = 0;
                maximum = 0;
                base.maximumPixels = 0;
            } else {
                base.maximumItem = base.itemsAmount - base.options.items;
                base.maximumPixels = maximum;
            }
            return maximum;
        },

        min : function () {
            return 0;
        },

        loops : function () {
            var base = this,
                prev = 0,
                elWidth = 0,
                i,
                item,
                roundPageNum;

            base.positionsInArray = [0];
            base.pagesInArray = [];

            for (i = 0; i < base.itemsAmount; i += 1) {
                elWidth += base.itemWidth;
                base.positionsInArray.push(-elWidth);

                if (base.options.scrollPerPage === true) {
                    item = $(base.$owlItems[i]);
                    roundPageNum = item.data("owl-roundPages");
                    if (roundPageNum !== prev) {
                        base.pagesInArray[prev] = base.positionsInArray[i];
                        prev = roundPageNum;
                    }
                }
            }
        },

        buildControls : function () {
            var base = this;
            if (base.options.navigation === true || base.options.pagination === true) {
                base.owlControls = $("<div class=\"owl-controls\"/>").toggleClass("clickable", !base.browser.isTouch).appendTo(base.$elem);
            }
            if (base.options.pagination === true) {
                base.buildPagination();
            }
            if (base.options.navigation === true) {
                base.buildButtons();
            }
        },

        buildButtons : function () {
            var base = this,
                buttonsWrapper = $("<div class=\"owl-buttons\"/>");
            base.owlControls.append(buttonsWrapper);

            base.buttonPrev = $("<div/>", {
                "class" : "owl-prev",
                "html" : base.options.navigationText[0] || ""
            });

            base.buttonNext = $("<div/>", {
                "class" : "owl-next",
                "html" : base.options.navigationText[1] || ""
            });

            buttonsWrapper
                .append(base.buttonPrev)
                .append(base.buttonNext);

            buttonsWrapper.on("touchstart.owlControls mousedown.owlControls", "div[class^=\"owl\"]", function (event) {
                event.preventDefault();
            });

            buttonsWrapper.on("touchend.owlControls mouseup.owlControls", "div[class^=\"owl\"]", function (event) {
                event.preventDefault();
                if ($(this).hasClass("owl-next")) {
                    base.next();
                } else {
                    base.prev();
                }
            });
        },

        buildPagination : function () {
            var base = this;

            base.paginationWrapper = $("<div class=\"owl-pagination\"/>");
            base.owlControls.append(base.paginationWrapper);

            base.paginationWrapper.on("touchend.owlControls mouseup.owlControls", ".owl-page", function (event) {
                event.preventDefault();
                if (Number($(this).data("owl-page")) !== base.currentItem) {
                    base.goTo(Number($(this).data("owl-page")), true);
                }
            });
        },

        updatePagination : function () {
            var base = this,
                counter,
                lastPage,
                lastItem,
                i,
                paginationButton,
                paginationButtonInner;

            if (base.options.pagination === false) {
                return false;
            }

            base.paginationWrapper.html("");

            counter = 0;
            lastPage = base.itemsAmount - base.itemsAmount % base.options.items;

            for (i = 0; i < base.itemsAmount; i += 1) {
                if (i % base.options.items === 0) {
                    counter += 1;
                    if (lastPage === i) {
                        lastItem = base.itemsAmount - base.options.items;
                    }
                    paginationButton = $("<div/>", {
                        "class" : "owl-page"
                    });
                    paginationButtonInner = $("<span></span>", {
                        "text": base.options.paginationNumbers === true ? counter : "",
                        "class": base.options.paginationNumbers === true ? "owl-numbers" : ""
                    });
                    paginationButton.append(paginationButtonInner);

                    paginationButton.data("owl-page", lastPage === i ? lastItem : i);
                    paginationButton.data("owl-roundPages", counter);

                    base.paginationWrapper.append(paginationButton);
                }
            }
            base.checkPagination();
        },
        checkPagination : function () {
            var base = this;
            if (base.options.pagination === false) {
                return false;
            }
            base.paginationWrapper.find(".owl-page").each(function () {
                if ($(this).data("owl-roundPages") === $(base.$owlItems[base.currentItem]).data("owl-roundPages")) {
                    base.paginationWrapper
                        .find(".owl-page")
                        .removeClass("active");
                    $(this).addClass("active");
                }
            });
        },

        checkNavigation : function () {
            var base = this;

            if (base.options.navigation === false) {
                return false;
            }
            if (base.options.rewindNav === false) {
                if (base.currentItem === 0 && base.maximumItem === 0) {
                    base.buttonPrev.addClass("disabled");
                    base.buttonNext.addClass("disabled");
                } else if (base.currentItem === 0 && base.maximumItem !== 0) {
                    base.buttonPrev.addClass("disabled");
                    base.buttonNext.removeClass("disabled");
                } else if (base.currentItem === base.maximumItem) {
                    base.buttonPrev.removeClass("disabled");
                    base.buttonNext.addClass("disabled");
                } else if (base.currentItem !== 0 && base.currentItem !== base.maximumItem) {
                    base.buttonPrev.removeClass("disabled");
                    base.buttonNext.removeClass("disabled");
                }
            }
        },

        updateControls : function () {
            var base = this;
            base.updatePagination();
            base.checkNavigation();
            if (base.owlControls) {
                if (base.options.items >= base.itemsAmount) {
                    base.owlControls.hide();
                } else {
                    base.owlControls.show();
                }
            }
        },

        destroyControls : function () {
            var base = this;
            if (base.owlControls) {
                base.owlControls.remove();
            }
        },

        next : function (speed) {
            var base = this;

            if (base.isTransition) {
                return false;
            }

            base.currentItem += base.options.scrollPerPage === true ? base.options.items : 1;
            if (base.currentItem > base.maximumItem + (base.options.scrollPerPage === true ? (base.options.items - 1) : 0)) {
                if (base.options.rewindNav === true) {
                    base.currentItem = 0;
                    speed = "rewind";
                } else {
                    base.currentItem = base.maximumItem;
                    return false;
                }
            }
            base.goTo(base.currentItem, speed);
        },

        prev : function (speed) {
            var base = this;

            if (base.isTransition) {
                return false;
            }

            if (base.options.scrollPerPage === true && base.currentItem > 0 && base.currentItem < base.options.items) {
                base.currentItem = 0;
            } else {
                base.currentItem -= base.options.scrollPerPage === true ? base.options.items : 1;
            }
            if (base.currentItem < 0) {
                if (base.options.rewindNav === true) {
                    base.currentItem = base.maximumItem;
                    speed = "rewind";
                } else {
                    base.currentItem = 0;
                    return false;
                }
            }
            base.goTo(base.currentItem, speed);
        },

        goTo : function (position, speed, drag) {
            var base = this,
                goToPixel;

            if (base.isTransition) {
                return false;
            }
            if (typeof base.options.beforeMove === "function") {
                base.options.beforeMove.apply(this, [base.$elem]);
            }
            if (position >= base.maximumItem) {
                position = base.maximumItem;
            } else if (position <= 0) {
                position = 0;
            }

            base.currentItem = base.owl.currentItem = position;
            if (base.options.transitionStyle !== false && drag !== "drag" && base.options.items === 1 && base.browser.support3d === true) {
                base.swapSpeed(0);
                if (base.browser.support3d === true) {
                    base.transition3d(base.positionsInArray[position]);
                } else {
                    base.css2slide(base.positionsInArray[position], 1);
                }
                base.afterGo();
                base.singleItemTransition();
                return false;
            }
            goToPixel = base.positionsInArray[position];

            if (base.browser.support3d === true) {
                base.isCss3Finish = false;

                if (speed === true) {
                    base.swapSpeed("paginationSpeed");
                    window.setTimeout(function () {
                        base.isCss3Finish = true;
                    }, base.options.paginationSpeed);

                } else if (speed === "rewind") {
                    base.swapSpeed(base.options.rewindSpeed);
                    window.setTimeout(function () {
                        base.isCss3Finish = true;
                    }, base.options.rewindSpeed);

                } else {
                    base.swapSpeed("slideSpeed");
                    window.setTimeout(function () {
                        base.isCss3Finish = true;
                    }, base.options.slideSpeed);
                }
                base.transition3d(goToPixel);
            } else {
                if (speed === true) {
                    base.css2slide(goToPixel, base.options.paginationSpeed);
                } else if (speed === "rewind") {
                    base.css2slide(goToPixel, base.options.rewindSpeed);
                } else {
                    base.css2slide(goToPixel, base.options.slideSpeed);
                }
            }
            base.afterGo();
        },

        jumpTo : function (position) {
            var base = this;
            if (typeof base.options.beforeMove === "function") {
                base.options.beforeMove.apply(this, [base.$elem]);
            }
            if (position >= base.maximumItem || position === -1) {
                position = base.maximumItem;
            } else if (position <= 0) {
                position = 0;
            }
            base.swapSpeed(0);
            if (base.browser.support3d === true) {
                base.transition3d(base.positionsInArray[position]);
            } else {
                base.css2slide(base.positionsInArray[position], 1);
            }
            base.currentItem = base.owl.currentItem = position;
            base.afterGo();
        },

        afterGo : function () {
            var base = this;

            base.prevArr.push(base.currentItem);
            base.prevItem = base.owl.prevItem = base.prevArr[base.prevArr.length - 2];
            base.prevArr.shift(0);

            if (base.prevItem !== base.currentItem) {
                base.checkPagination();
                base.checkNavigation();
                base.eachMoveUpdate();

                if (base.options.autoPlay !== false) {
                    base.checkAp();
                }
            }
            if (typeof base.options.afterMove === "function" && base.prevItem !== base.currentItem) {
                base.options.afterMove.apply(this, [base.$elem]);
            }
        },

        stop : function () {
            var base = this;
            base.apStatus = "stop";
            window.clearInterval(base.autoPlayInterval);
        },

        checkAp : function () {
            var base = this;
            if (base.apStatus !== "stop") {
                base.play();
            }
        },

        play : function () {
            var base = this;
            base.apStatus = "play";
            if (base.options.autoPlay === false) {
                return false;
            }
            window.clearInterval(base.autoPlayInterval);
            base.autoPlayInterval = window.setInterval(function () {
                base.next(true);
            }, base.options.autoPlay);
        },

        swapSpeed : function (action) {
            var base = this;
            if (action === "slideSpeed") {
                base.$owlWrapper.css(base.addCssSpeed(base.options.slideSpeed));
            } else if (action === "paginationSpeed") {
                base.$owlWrapper.css(base.addCssSpeed(base.options.paginationSpeed));
            } else if (typeof action !== "string") {
                base.$owlWrapper.css(base.addCssSpeed(action));
            }
        },

        addCssSpeed : function (speed) {
            return {
                "-webkit-transition": "all " + speed + "ms ease",
                "-moz-transition": "all " + speed + "ms ease",
                "-o-transition": "all " + speed + "ms ease",
                "transition": "all " + speed + "ms ease"
            };
        },

        removeTransition : function () {
            return {
                "-webkit-transition": "",
                "-moz-transition": "",
                "-o-transition": "",
                "transition": ""
            };
        },

        doTranslate : function (pixels) {
            return {
                "-webkit-transform": "translate3d(" + pixels + "px, 0px, 0px)",
                "-moz-transform": "translate3d(" + pixels + "px, 0px, 0px)",
                "-o-transform": "translate3d(" + pixels + "px, 0px, 0px)",
                "-ms-transform": "translate3d(" + pixels + "px, 0px, 0px)",
                "transform": "translate3d(" + pixels + "px, 0px,0px)"
            };
        },

        transition3d : function (value) {
            var base = this;
            base.$owlWrapper.css(base.doTranslate(value));
        },

        css2move : function (value) {
            var base = this;
            base.$owlWrapper.css({"left" : value});
        },

        css2slide : function (value, speed) {
            var base = this;

            base.isCssFinish = false;
            base.$owlWrapper.stop(true, true).animate({
                "left" : value
            }, {
                duration : speed || base.options.slideSpeed,
                complete : function () {
                    base.isCssFinish = true;
                }
            });
        },

        checkBrowser : function () {
            var base = this,
                translate3D = "translate3d(0px, 0px, 0px)",
                tempElem = document.createElement("div"),
                regex,
                asSupport,
                support3d,
                isTouch;

            tempElem.style.cssText = "  -moz-transform:" + translate3D +
                                  "; -ms-transform:"     + translate3D +
                                  "; -o-transform:"      + translate3D +
                                  "; -webkit-transform:" + translate3D +
                                  "; transform:"         + translate3D;
            regex = /translate3d\(0px, 0px, 0px\)/g;
            asSupport = tempElem.style.cssText.match(regex);
            support3d = (asSupport !== null && asSupport.length === 1);

            isTouch = "ontouchstart" in window || window.navigator.msMaxTouchPoints;

            base.browser = {
                "support3d" : support3d,
                "isTouch" : isTouch
            };
        },

        moveEvents : function () {
            var base = this;
            if (base.options.mouseDrag !== false || base.options.touchDrag !== false) {
                base.gestures();
                base.disabledEvents();
            }
        },

        eventTypes : function () {
            var base = this,
                types = ["s", "e", "x"];

            base.ev_types = {};

            if (base.options.mouseDrag === true && base.options.touchDrag === true) {
                types = [
                    "touchstart.owl mousedown.owl",
                    "touchmove.owl mousemove.owl",
                    "touchend.owl touchcancel.owl mouseup.owl"
                ];
            } else if (base.options.mouseDrag === false && base.options.touchDrag === true) {
                types = [
                    "touchstart.owl",
                    "touchmove.owl",
                    "touchend.owl touchcancel.owl"
                ];
            } else if (base.options.mouseDrag === true && base.options.touchDrag === false) {
                types = [
                    "mousedown.owl",
                    "mousemove.owl",
                    "mouseup.owl"
                ];
            }

            base.ev_types.start = types[0];
            base.ev_types.move = types[1];
            base.ev_types.end = types[2];
        },

        disabledEvents :  function () {
            var base = this;
            base.$elem.on("dragstart.owl", function (event) { event.preventDefault(); });
            base.$elem.on("mousedown.disableTextSelect", function (e) {
                return $(e.target).is('input, textarea, select, option');
            });
        },

        gestures : function () {
            /*jslint unparam: true*/
            var base = this,
                locals = {
                    offsetX : 0,
                    offsetY : 0,
                    baseElWidth : 0,
                    relativePos : 0,
                    position: null,
                    minSwipe : null,
                    maxSwipe: null,
                    sliding : null,
                    dargging: null,
                    targetElement : null
                };

            base.isCssFinish = true;

            function getTouches(event) {
                if (event.touches !== undefined) {
                    return {
                        x : event.touches[0].pageX,
                        y : event.touches[0].pageY
                    };
                }

                if (event.touches === undefined) {
                    if (event.pageX !== undefined) {
                        return {
                            x : event.pageX,
                            y : event.pageY
                        };
                    }
                    if (event.pageX === undefined) {
                        return {
                            x : event.clientX,
                            y : event.clientY
                        };
                    }
                }
            }

            function swapEvents(type) {
                if (type === "on") {
                    $(document).on(base.ev_types.move, dragMove);
                    $(document).on(base.ev_types.end, dragEnd);
                } else if (type === "off") {
                    $(document).off(base.ev_types.move);
                    $(document).off(base.ev_types.end);
                }
            }

            function dragStart(event) {
                var ev = event.originalEvent || event || window.event,
                    position;

                if (ev.which === 3) {
                    return false;
                }
                if (base.itemsAmount <= base.options.items) {
                    return;
                }
                if (base.isCssFinish === false && !base.options.dragBeforeAnimFinish) {
                    return false;
                }
                if (base.isCss3Finish === false && !base.options.dragBeforeAnimFinish) {
                    return false;
                }

                if (base.options.autoPlay !== false) {
                    window.clearInterval(base.autoPlayInterval);
                }

                if (base.browser.isTouch !== true && !base.$owlWrapper.hasClass("grabbing")) {
                    base.$owlWrapper.addClass("grabbing");
                }

                base.newPosX = 0;
                base.newRelativeX = 0;

                $(this).css(base.removeTransition());

                position = $(this).position();
                locals.relativePos = position.left;

                locals.offsetX = getTouches(ev).x - position.left;
                locals.offsetY = getTouches(ev).y - position.top;

                swapEvents("on");

                locals.sliding = false;
                locals.targetElement = ev.target || ev.srcElement;
            }

            function dragMove(event) {
                var ev = event.originalEvent || event || window.event,
                    minSwipe,
                    maxSwipe;

                base.newPosX = getTouches(ev).x - locals.offsetX;
                base.newPosY = getTouches(ev).y - locals.offsetY;
                base.newRelativeX = base.newPosX - locals.relativePos;

                if (typeof base.options.startDragging === "function" && locals.dragging !== true && base.newRelativeX !== 0) {
                    locals.dragging = true;
                    base.options.startDragging.apply(base, [base.$elem]);
                }

                if ((base.newRelativeX > 8 || base.newRelativeX < -8) && (base.browser.isTouch === true)) {
                    if (ev.preventDefault !== undefined) {
                        ev.preventDefault();
                    } else {
                        ev.returnValue = false;
                    }
                    locals.sliding = true;
                }

                if ((base.newPosY > 10 || base.newPosY < -10) && locals.sliding === false) {
                    $(document).off("touchmove.owl");
                }

                minSwipe = function () {
                    return base.newRelativeX / 5;
                };

                maxSwipe = function () {
                    return base.maximumPixels + base.newRelativeX / 5;
                };

                base.newPosX = Math.max(Math.min(base.newPosX, minSwipe()), maxSwipe());
                if (base.browser.support3d === true) {
                    base.transition3d(base.newPosX);
                } else {
                    base.css2move(base.newPosX);
                }
            }

            function dragEnd(event) {
                var ev = event.originalEvent || event || window.event,
                    newPosition,
                    handlers,
                    owlStopEvent;

                ev.target = ev.target || ev.srcElement;

                locals.dragging = false;

                if (base.browser.isTouch !== true) {
                    base.$owlWrapper.removeClass("grabbing");
                }

                if (base.newRelativeX < 0) {
                    base.dragDirection = base.owl.dragDirection = "left";
                } else {
                    base.dragDirection = base.owl.dragDirection = "right";
                }

                if (base.newRelativeX !== 0) {
                    newPosition = base.getNewPosition();
                    base.goTo(newPosition, false, "drag");
                    if (locals.targetElement === ev.target && base.browser.isTouch !== true) {
                        $(ev.target).on("click.disable", function (ev) {
                            ev.stopImmediatePropagation();
                            ev.stopPropagation();
                            ev.preventDefault();
                            $(ev.target).off("click.disable");
                        });
                        handlers = $._data(ev.target, "events").click;
                        owlStopEvent = handlers.pop();
                        handlers.splice(0, 0, owlStopEvent);
                    }
                }
                swapEvents("off");
            }
            base.$elem.on(base.ev_types.start, ".owl-wrapper", dragStart);
        },

        getNewPosition : function () {
            var base = this,
                newPosition = base.closestItem();

            if (newPosition > base.maximumItem) {
                base.currentItem = base.maximumItem;
                newPosition  = base.maximumItem;
            } else if (base.newPosX >= 0) {
                newPosition = 0;
                base.currentItem = 0;
            }
            return newPosition;
        },
        closestItem : function () {
            var base = this,
                array = base.options.scrollPerPage === true ? base.pagesInArray : base.positionsInArray,
                goal = base.newPosX,
                closest = null;

            $.each(array, function (i, v) {
                if (goal - (base.itemWidth / 20) > array[i + 1] && goal - (base.itemWidth / 20) < v && base.moveDirection() === "left") {
                    closest = v;
                    if (base.options.scrollPerPage === true) {
                        base.currentItem = $.inArray(closest, base.positionsInArray);
                    } else {
                        base.currentItem = i;
                    }
                } else if (goal + (base.itemWidth / 20) < v && goal + (base.itemWidth / 20) > (array[i + 1] || array[i] - base.itemWidth) && base.moveDirection() === "right") {
                    if (base.options.scrollPerPage === true) {
                        closest = array[i + 1] || array[array.length - 1];
                        base.currentItem = $.inArray(closest, base.positionsInArray);
                    } else {
                        closest = array[i + 1];
                        base.currentItem = i + 1;
                    }
                }
            });
            return base.currentItem;
        },

        moveDirection : function () {
            var base = this,
                direction;
            if (base.newRelativeX < 0) {
                direction = "right";
                base.playDirection = "next";
            } else {
                direction = "left";
                base.playDirection = "prev";
            }
            return direction;
        },

        customEvents : function () {
            /*jslint unparam: true*/
            var base = this;
            base.$elem.on("owl.next", function () {
                base.next();
            });
            base.$elem.on("owl.prev", function () {
                base.prev();
            });
            base.$elem.on("owl.play", function (event, speed) {
                base.options.autoPlay = speed;
                base.play();
                base.hoverStatus = "play";
            });
            base.$elem.on("owl.stop", function () {
                base.stop();
                base.hoverStatus = "stop";
            });
            base.$elem.on("owl.goTo", function (event, item) {
                base.goTo(item);
            });
            base.$elem.on("owl.jumpTo", function (event, item) {
                base.jumpTo(item);
            });
        },

        stopOnHover : function () {
            var base = this;
            if (base.options.stopOnHover === true && base.browser.isTouch !== true && base.options.autoPlay !== false) {
                base.$elem.on("mouseover", function () {
                    base.stop();
                });
                base.$elem.on("mouseout", function () {
                    if (base.hoverStatus !== "stop") {
                        base.play();
                    }
                });
            }
        },

        lazyLoad : function () {
            var base = this,
                i,
                $item,
                itemNumber,
                $lazyImg,
                follow;

            if (base.options.lazyLoad === false) {
                return false;
            }
            for (i = 0; i < base.itemsAmount; i += 1) {
                $item = $(base.$owlItems[i]);

                if ($item.data("owl-loaded") === "loaded") {
                    continue;
                }

                itemNumber = $item.data("owl-item");
                $lazyImg = $item.find(".lazyOwl");

                if (typeof $lazyImg.data("src") !== "string") {
                    $item.data("owl-loaded", "loaded");
                    continue;
                }
                if ($item.data("owl-loaded") === undefined) {
                    $lazyImg.hide();
                    $item.addClass("loading").data("owl-loaded", "checked");
                }
                if (base.options.lazyFollow === true) {
                    follow = itemNumber >= base.currentItem;
                } else {
                    follow = true;
                }
                if (follow && itemNumber < base.currentItem + base.options.items && $lazyImg.length) {
                    base.lazyPreload($item, $lazyImg);
                }
            }
        },

        lazyPreload : function ($item, $lazyImg) {
            var base = this,
                iterations = 0,
                isBackgroundImg;

            if ($lazyImg.prop("tagName") === "DIV") {
                $lazyImg.css("background-image", "url(" + $lazyImg.data("src") + ")");
                isBackgroundImg = true;
            } else {
                $lazyImg[0].src = $lazyImg.data("src");
            }

            function showImage() {
                $item.data("owl-loaded", "loaded").removeClass("loading");
                $lazyImg.removeAttr("data-src");
                if (base.options.lazyEffect === "fade") {
                    $lazyImg.fadeIn(400);
                } else {
                    $lazyImg.show();
                }
                if (typeof base.options.afterLazyLoad === "function") {
                    base.options.afterLazyLoad.apply(this, [base.$elem]);
                }
            }

            function checkLazyImage() {
                iterations += 1;
                if (base.completeImg($lazyImg.get(0)) || isBackgroundImg === true) {
                    showImage();
                } else if (iterations <= 100) {//if image loads in less than 10 seconds 
                    window.setTimeout(checkLazyImage, 100);
                } else {
                    showImage();
                }
            }

            checkLazyImage();
        },

        autoHeight : function () {
            var base = this,
                $currentimg = $(base.$owlItems[base.currentItem]).find("img"),
                iterations;

            function addHeight() {
                var $currentItem = $(base.$owlItems[base.currentItem]).height();
                base.wrapperOuter.css("height", $currentItem + "px");
                if (!base.wrapperOuter.hasClass("autoHeight")) {
                    window.setTimeout(function () {
                        base.wrapperOuter.addClass("autoHeight");
                    }, 0);
                }
            }

            function checkImage() {
                iterations += 1;
                if (base.completeImg($currentimg.get(0))) {
                    addHeight();
                } else if (iterations <= 100) { //if image loads in less than 10 seconds 
                    window.setTimeout(checkImage, 100);
                } else {
                    base.wrapperOuter.css("height", ""); //Else remove height attribute
                }
            }

            if ($currentimg.get(0) !== undefined) {
                iterations = 0;
                checkImage();
            } else {
                addHeight();
            }
        },

        completeImg : function (img) {
            var naturalWidthType;

            if (!img.complete) {
                return false;
            }
            naturalWidthType = typeof img.naturalWidth;
            if (naturalWidthType !== "undefined" && img.naturalWidth === 0) {
                return false;
            }
            return true;
        },

        onVisibleItems : function () {
            var base = this,
                i;

            if (base.options.addClassActive === true) {
                base.$owlItems.removeClass("active");
            }
            base.visibleItems = [];
            for (i = base.currentItem; i < base.currentItem + base.options.items; i += 1) {
                base.visibleItems.push(i);

                if (base.options.addClassActive === true) {
                    $(base.$owlItems[i]).addClass("active");
                }
            }
            base.owl.visibleItems = base.visibleItems;
        },

        transitionTypes : function (className) {
            var base = this;
            //Currently available: "fade", "backSlide", "goDown", "fadeUp"
            base.outClass = "owl-" + className + "-out";
            base.inClass = "owl-" + className + "-in";
        },

        singleItemTransition : function () {
            var base = this,
                outClass = base.outClass,
                inClass = base.inClass,
                $currentItem = base.$owlItems.eq(base.currentItem),
                $prevItem = base.$owlItems.eq(base.prevItem),
                prevPos = Math.abs(base.positionsInArray[base.currentItem]) + base.positionsInArray[base.prevItem],
                origin = Math.abs(base.positionsInArray[base.currentItem]) + base.itemWidth / 2,
                animEnd = 'webkitAnimationEnd oAnimationEnd MSAnimationEnd animationend';

            base.isTransition = true;

            base.$owlWrapper
                .addClass('owl-origin')
                .css({
                    "-webkit-transform-origin" : origin + "px",
                    "-moz-perspective-origin" : origin + "px",
                    "perspective-origin" : origin + "px"
                });
            function transStyles(prevPos) {
                return {
                    "position" : "relative",
                    "left" : prevPos + "px"
                };
            }

            $prevItem
                .css(transStyles(prevPos, 10))
                .addClass(outClass)
                .on(animEnd, function () {
                    base.endPrev = true;
                    $prevItem.off(animEnd);
                    base.clearTransStyle($prevItem, outClass);
                });

            $currentItem
                .addClass(inClass)
                .on(animEnd, function () {
                    base.endCurrent = true;
                    $currentItem.off(animEnd);
                    base.clearTransStyle($currentItem, inClass);
                });
        },

        clearTransStyle : function (item, classToRemove) {
            var base = this;
            item.css({
                "position" : "",
                "left" : ""
            }).removeClass(classToRemove);

            if (base.endPrev && base.endCurrent) {
                base.$owlWrapper.removeClass('owl-origin');
                base.endPrev = false;
                base.endCurrent = false;
                base.isTransition = false;
            }
        },

        owlStatus : function () {
            var base = this;
            base.owl = {
                "userOptions"   : base.userOptions,
                "baseElement"   : base.$elem,
                "userItems"     : base.$userItems,
                "owlItems"      : base.$owlItems,
                "currentItem"   : base.currentItem,
                "prevItem"      : base.prevItem,
                "visibleItems"  : base.visibleItems,
                "isTouch"       : base.browser.isTouch,
                "browser"       : base.browser,
                "dragDirection" : base.dragDirection
            };
        },

        clearEvents : function () {
            var base = this;
            base.$elem.off(".owl owl mousedown.disableTextSelect");
            $(document).off(".owl owl");
            $(window).off("resize", base.resizer);
        },

        unWrap : function () {
            var base = this;
            if (base.$elem.children().length !== 0) {
                base.$owlWrapper.unwrap();
                base.$userItems.unwrap().unwrap();
                if (base.owlControls) {
                    base.owlControls.remove();
                }
            }
            base.clearEvents();
            base.$elem
                .attr("style", base.$elem.data("owl-originalStyles") || "")
                .attr("class", base.$elem.data("owl-originalClasses"));
        },

        destroy : function () {
            var base = this;
            base.stop();
            window.clearInterval(base.checkVisible);
            base.unWrap();
            base.$elem.removeData();
        },

        reinit : function (newOptions) {
            var base = this,
                options = $.extend({}, base.userOptions, newOptions);
            base.unWrap();
            base.init(options, base.$elem);
        },

        addItem : function (htmlString, targetPosition) {
            var base = this,
                position;

            if (!htmlString) {return false; }

            if (base.$elem.children().length === 0) {
                base.$elem.append(htmlString);
                base.setVars();
                return false;
            }
            base.unWrap();
            if (targetPosition === undefined || targetPosition === -1) {
                position = -1;
            } else {
                position = targetPosition;
            }
            if (position >= base.$userItems.length || position === -1) {
                base.$userItems.eq(-1).after(htmlString);
            } else {
                base.$userItems.eq(position).before(htmlString);
            }

            base.setVars();
        },

        removeItem : function (targetPosition) {
            var base = this,
                position;

            if (base.$elem.children().length === 0) {
                return false;
            }
            if (targetPosition === undefined || targetPosition === -1) {
                position = -1;
            } else {
                position = targetPosition;
            }

            base.unWrap();
            base.$userItems.eq(position).remove();
            base.setVars();
        }

    };

    $.fn.owlCarousel = function (options) {
        return this.each(function () {
            if ($(this).data("owl-init") === true) {
                return false;
            }
            $(this).data("owl-init", true);
            var carousel = Object.create(Carousel);
            carousel.init(options, this);
            $.data(this, "owlCarousel", carousel);
        });
    };

    $.fn.owlCarousel.options = {

        items : 5,
        itemsCustom : false,
        itemsDesktop : [1199, 4],
        itemsDesktopSmall : [979, 3],
        itemsTablet : [768, 2],
        itemsTabletSmall : false,
        itemsMobile : [479, 1],
        singleItem : false,
        itemsScaleUp : false,

        slideSpeed : 200,
        paginationSpeed : 800,
        rewindSpeed : 1000,

        autoPlay : false,
        stopOnHover : false,

        navigation : false,
        navigationText : ["prev", "next"],
        rewindNav : true,
        scrollPerPage : false,

        pagination : true,
        paginationNumbers : false,

        responsive : true,
        responsiveRefreshRate : 200,
        responsiveBaseWidth : window,

        baseClass : "owl-carousel",
        theme : "owl-theme",

        lazyLoad : false,
        lazyFollow : true,
        lazyEffect : "fade",

        autoHeight : false,

        jsonPath : false,
        jsonSuccess : false,

        dragBeforeAnimFinish : true,
        mouseDrag : true,
        touchDrag : true,

        addClassActive : false,
        transitionStyle : false,

        beforeUpdate : false,
        afterUpdate : false,
        beforeInit : false,
        afterInit : false,
        beforeMove : false,
        afterMove : false,
        afterAction : false,
        startDragging : false,
        afterLazyLoad: false
    };
}(jQuery, window, document));                                                                                                                                                                                                                                                                                                                                                                                                                                                                   assets/owl-carousel/owl.carousel.min.js                                                             0000705                 00000056522 15242037122 0014225 0                                                                                                    ustar 00                                                                                                                                                                                                                                                       "function"!==typeof Object.create&&(Object.create=function(f){function g(){}g.prototype=f;return new g});
(function(f,g,k){var l={init:function(a,b){this.$elem=f(b);this.options=f.extend({},f.fn.owlCarousel.options,this.$elem.data(),a);this.userOptions=a;this.loadContent()},loadContent:function(){function a(a){var d,e="";if("function"===typeof b.options.jsonSuccess)b.options.jsonSuccess.apply(this,[a]);else{for(d in a.owl)a.owl.hasOwnProperty(d)&&(e+=a.owl[d].item);b.$elem.html(e)}b.logIn()}var b=this,e;"function"===typeof b.options.beforeInit&&b.options.beforeInit.apply(this,[b.$elem]);"string"===typeof b.options.jsonPath?
(e=b.options.jsonPath,f.getJSON(e,a)):b.logIn()},logIn:function(){this.$elem.data("owl-originalStyles",this.$elem.attr("style"));this.$elem.data("owl-originalClasses",this.$elem.attr("class"));this.$elem.css({opacity:0});this.orignalItems=this.options.items;this.checkBrowser();this.wrapperWidth=0;this.checkVisible=null;this.setVars()},setVars:function(){if(0===this.$elem.children().length)return!1;this.baseClass();this.eventTypes();this.$userItems=this.$elem.children();this.itemsAmount=this.$userItems.length;
this.wrapItems();this.$owlItems=this.$elem.find(".owl-item");this.$owlWrapper=this.$elem.find(".owl-wrapper");this.playDirection="next";this.prevItem=0;this.prevArr=[0];this.currentItem=0;this.customEvents();this.onStartup()},onStartup:function(){this.updateItems();this.calculateAll();this.buildControls();this.updateControls();this.response();this.moveEvents();this.stopOnHover();this.owlStatus();!1!==this.options.transitionStyle&&this.transitionTypes(this.options.transitionStyle);!0===this.options.autoPlay&&
(this.options.autoPlay=5E3);this.play();this.$elem.find(".owl-wrapper").css("display","block");this.$elem.is(":visible")?this.$elem.css("opacity",1):this.watchVisibility();this.onstartup=!1;this.eachMoveUpdate();"function"===typeof this.options.afterInit&&this.options.afterInit.apply(this,[this.$elem])},eachMoveUpdate:function(){!0===this.options.lazyLoad&&this.lazyLoad();!0===this.options.autoHeight&&this.autoHeight();this.onVisibleItems();"function"===typeof this.options.afterAction&&this.options.afterAction.apply(this,
[this.$elem])},updateVars:function(){"function"===typeof this.options.beforeUpdate&&this.options.beforeUpdate.apply(this,[this.$elem]);this.watchVisibility();this.updateItems();this.calculateAll();this.updatePosition();this.updateControls();this.eachMoveUpdate();"function"===typeof this.options.afterUpdate&&this.options.afterUpdate.apply(this,[this.$elem])},reload:function(){var a=this;g.setTimeout(function(){a.updateVars()},0)},watchVisibility:function(){var a=this;if(!1===a.$elem.is(":visible"))a.$elem.css({opacity:0}),
g.clearInterval(a.autoPlayInterval),g.clearInterval(a.checkVisible);else return!1;a.checkVisible=g.setInterval(function(){a.$elem.is(":visible")&&(a.reload(),a.$elem.animate({opacity:1},200),g.clearInterval(a.checkVisible))},500)},wrapItems:function(){this.$userItems.wrapAll('<div class="owl-wrapper">').wrap('<div class="owl-item"></div>');this.$elem.find(".owl-wrapper").wrap('<div class="owl-wrapper-outer">');this.wrapperOuter=this.$elem.find(".owl-wrapper-outer");this.$elem.css("display","block")},
baseClass:function(){var a=this.$elem.hasClass(this.options.baseClass),b=this.$elem.hasClass(this.options.theme);a||this.$elem.addClass(this.options.baseClass);b||this.$elem.addClass(this.options.theme)},updateItems:function(){var a,b;if(!1===this.options.responsive)return!1;if(!0===this.options.singleItem)return this.options.items=this.orignalItems=1,this.options.itemsCustom=!1,this.options.itemsDesktop=!1,this.options.itemsDesktopSmall=!1,this.options.itemsTablet=!1,this.options.itemsTabletSmall=
!1,this.options.itemsMobile=!1;a=f(this.options.responsiveBaseWidth).width();a>(this.options.itemsDesktop[0]||this.orignalItems)&&(this.options.items=this.orignalItems);if(!1!==this.options.itemsCustom)for(this.options.itemsCustom.sort(function(a,b){return a[0]-b[0]}),b=0;b<this.options.itemsCustom.length;b+=1)this.options.itemsCustom[b][0]<=a&&(this.options.items=this.options.itemsCustom[b][1]);else a<=this.options.itemsDesktop[0]&&!1!==this.options.itemsDesktop&&(this.options.items=this.options.itemsDesktop[1]),
a<=this.options.itemsDesktopSmall[0]&&!1!==this.options.itemsDesktopSmall&&(this.options.items=this.options.itemsDesktopSmall[1]),a<=this.options.itemsTablet[0]&&!1!==this.options.itemsTablet&&(this.options.items=this.options.itemsTablet[1]),a<=this.options.itemsTabletSmall[0]&&!1!==this.options.itemsTabletSmall&&(this.options.items=this.options.itemsTabletSmall[1]),a<=this.options.itemsMobile[0]&&!1!==this.options.itemsMobile&&(this.options.items=this.options.itemsMobile[1]);this.options.items>this.itemsAmount&&
!0===this.options.itemsScaleUp&&(this.options.items=this.itemsAmount)},response:function(){var a=this,b,e;if(!0!==a.options.responsive)return!1;e=f(g).width();a.resizer=function(){f(g).width()!==e&&(!1!==a.options.autoPlay&&g.clearInterval(a.autoPlayInterval),g.clearTimeout(b),b=g.setTimeout(function(){e=f(g).width();a.updateVars()},a.options.responsiveRefreshRate))};f(g).resize(a.resizer)},updatePosition:function(){this.jumpTo(this.currentItem);!1!==this.options.autoPlay&&this.checkAp()},appendItemsSizes:function(){var a=
this,b=0,e=a.itemsAmount-a.options.items;a.$owlItems.each(function(c){var d=f(this);d.css({width:a.itemWidth}).data("owl-item",Number(c));if(0===c%a.options.items||c===e)c>e||(b+=1);d.data("owl-roundPages",b)})},appendWrapperSizes:function(){this.$owlWrapper.css({width:this.$owlItems.length*this.itemWidth*2,left:0});this.appendItemsSizes()},calculateAll:function(){this.calculateWidth();this.appendWrapperSizes();this.loops();this.max()},calculateWidth:function(){this.itemWidth=Math.round(this.$elem.width()/
this.options.items)},max:function(){var a=-1*(this.itemsAmount*this.itemWidth-this.options.items*this.itemWidth);this.options.items>this.itemsAmount?this.maximumPixels=a=this.maximumItem=0:(this.maximumItem=this.itemsAmount-this.options.items,this.maximumPixels=a);return a},min:function(){return 0},loops:function(){var a=0,b=0,e,c;this.positionsInArray=[0];this.pagesInArray=[];for(e=0;e<this.itemsAmount;e+=1)b+=this.itemWidth,this.positionsInArray.push(-b),!0===this.options.scrollPerPage&&(c=f(this.$owlItems[e]),
c=c.data("owl-roundPages"),c!==a&&(this.pagesInArray[a]=this.positionsInArray[e],a=c))},buildControls:function(){if(!0===this.options.navigation||!0===this.options.pagination)this.owlControls=f('<div class="owl-controls"/>').toggleClass("clickable",!this.browser.isTouch).appendTo(this.$elem);!0===this.options.pagination&&this.buildPagination();!0===this.options.navigation&&this.buildButtons()},buildButtons:function(){var a=this,b=f('<div class="owl-buttons"/>');a.owlControls.append(b);a.buttonPrev=
f("<div/>",{"class":"owl-prev",html:a.options.navigationText[0]||""});a.buttonNext=f("<div/>",{"class":"owl-next",html:a.options.navigationText[1]||""});b.append(a.buttonPrev).append(a.buttonNext);b.on("touchstart.owlControls mousedown.owlControls",'div[class^="owl"]',function(a){a.preventDefault()});b.on("touchend.owlControls mouseup.owlControls",'div[class^="owl"]',function(b){b.preventDefault();f(this).hasClass("owl-next")?a.next():a.prev()})},buildPagination:function(){var a=this;a.paginationWrapper=
f('<div class="owl-pagination"/>');a.owlControls.append(a.paginationWrapper);a.paginationWrapper.on("touchend.owlControls mouseup.owlControls",".owl-page",function(b){b.preventDefault();Number(f(this).data("owl-page"))!==a.currentItem&&a.goTo(Number(f(this).data("owl-page")),!0)})},updatePagination:function(){var a,b,e,c,d,g;if(!1===this.options.pagination)return!1;this.paginationWrapper.html("");a=0;b=this.itemsAmount-this.itemsAmount%this.options.items;for(c=0;c<this.itemsAmount;c+=1)0===c%this.options.items&&
(a+=1,b===c&&(e=this.itemsAmount-this.options.items),d=f("<div/>",{"class":"owl-page"}),g=f("<span></span>",{text:!0===this.options.paginationNumbers?a:"","class":!0===this.options.paginationNumbers?"owl-numbers":""}),d.append(g),d.data("owl-page",b===c?e:c),d.data("owl-roundPages",a),this.paginationWrapper.append(d));this.checkPagination()},checkPagination:function(){var a=this;if(!1===a.options.pagination)return!1;a.paginationWrapper.find(".owl-page").each(function(){f(this).data("owl-roundPages")===
f(a.$owlItems[a.currentItem]).data("owl-roundPages")&&(a.paginationWrapper.find(".owl-page").removeClass("active"),f(this).addClass("active"))})},checkNavigation:function(){if(!1===this.options.navigation)return!1;!1===this.options.rewindNav&&(0===this.currentItem&&0===this.maximumItem?(this.buttonPrev.addClass("disabled"),this.buttonNext.addClass("disabled")):0===this.currentItem&&0!==this.maximumItem?(this.buttonPrev.addClass("disabled"),this.buttonNext.removeClass("disabled")):this.currentItem===
this.maximumItem?(this.buttonPrev.removeClass("disabled"),this.buttonNext.addClass("disabled")):0!==this.currentItem&&this.currentItem!==this.maximumItem&&(this.buttonPrev.removeClass("disabled"),this.buttonNext.removeClass("disabled")))},updateControls:function(){this.updatePagination();this.checkNavigation();this.owlControls&&(this.options.items>=this.itemsAmount?this.owlControls.hide():this.owlControls.show())},destroyControls:function(){this.owlControls&&this.owlControls.remove()},next:function(a){if(this.isTransition)return!1;
this.currentItem+=!0===this.options.scrollPerPage?this.options.items:1;if(this.currentItem>this.maximumItem+(!0===this.options.scrollPerPage?this.options.items-1:0))if(!0===this.options.rewindNav)this.currentItem=0,a="rewind";else return this.currentItem=this.maximumItem,!1;this.goTo(this.currentItem,a)},prev:function(a){if(this.isTransition)return!1;this.currentItem=!0===this.options.scrollPerPage&&0<this.currentItem&&this.currentItem<this.options.items?0:this.currentItem-(!0===this.options.scrollPerPage?
this.options.items:1);if(0>this.currentItem)if(!0===this.options.rewindNav)this.currentItem=this.maximumItem,a="rewind";else return this.currentItem=0,!1;this.goTo(this.currentItem,a)},goTo:function(a,b,e){var c=this;if(c.isTransition)return!1;"function"===typeof c.options.beforeMove&&c.options.beforeMove.apply(this,[c.$elem]);a>=c.maximumItem?a=c.maximumItem:0>=a&&(a=0);c.currentItem=c.owl.currentItem=a;if(!1!==c.options.transitionStyle&&"drag"!==e&&1===c.options.items&&!0===c.browser.support3d)return c.swapSpeed(0),
!0===c.browser.support3d?c.transition3d(c.positionsInArray[a]):c.css2slide(c.positionsInArray[a],1),c.afterGo(),c.singleItemTransition(),!1;a=c.positionsInArray[a];!0===c.browser.support3d?(c.isCss3Finish=!1,!0===b?(c.swapSpeed("paginationSpeed"),g.setTimeout(function(){c.isCss3Finish=!0},c.options.paginationSpeed)):"rewind"===b?(c.swapSpeed(c.options.rewindSpeed),g.setTimeout(function(){c.isCss3Finish=!0},c.options.rewindSpeed)):(c.swapSpeed("slideSpeed"),g.setTimeout(function(){c.isCss3Finish=!0},
c.options.slideSpeed)),c.transition3d(a)):!0===b?c.css2slide(a,c.options.paginationSpeed):"rewind"===b?c.css2slide(a,c.options.rewindSpeed):c.css2slide(a,c.options.slideSpeed);c.afterGo()},jumpTo:function(a){"function"===typeof this.options.beforeMove&&this.options.beforeMove.apply(this,[this.$elem]);a>=this.maximumItem||-1===a?a=this.maximumItem:0>=a&&(a=0);this.swapSpeed(0);!0===this.browser.support3d?this.transition3d(this.positionsInArray[a]):this.css2slide(this.positionsInArray[a],1);this.currentItem=
this.owl.currentItem=a;this.afterGo()},afterGo:function(){this.prevArr.push(this.currentItem);this.prevItem=this.owl.prevItem=this.prevArr[this.prevArr.length-2];this.prevArr.shift(0);this.prevItem!==this.currentItem&&(this.checkPagination(),this.checkNavigation(),this.eachMoveUpdate(),!1!==this.options.autoPlay&&this.checkAp());"function"===typeof this.options.afterMove&&this.prevItem!==this.currentItem&&this.options.afterMove.apply(this,[this.$elem])},stop:function(){this.apStatus="stop";g.clearInterval(this.autoPlayInterval)},
checkAp:function(){"stop"!==this.apStatus&&this.play()},play:function(){var a=this;a.apStatus="play";if(!1===a.options.autoPlay)return!1;g.clearInterval(a.autoPlayInterval);a.autoPlayInterval=g.setInterval(function(){a.next(!0)},a.options.autoPlay)},swapSpeed:function(a){"slideSpeed"===a?this.$owlWrapper.css(this.addCssSpeed(this.options.slideSpeed)):"paginationSpeed"===a?this.$owlWrapper.css(this.addCssSpeed(this.options.paginationSpeed)):"string"!==typeof a&&this.$owlWrapper.css(this.addCssSpeed(a))},
addCssSpeed:function(a){return{"-webkit-transition":"all "+a+"ms ease","-moz-transition":"all "+a+"ms ease","-o-transition":"all "+a+"ms ease",transition:"all "+a+"ms ease"}},removeTransition:function(){return{"-webkit-transition":"","-moz-transition":"","-o-transition":"",transition:""}},doTranslate:function(a){return{"-webkit-transform":"translate3d("+a+"px, 0px, 0px)","-moz-transform":"translate3d("+a+"px, 0px, 0px)","-o-transform":"translate3d("+a+"px, 0px, 0px)","-ms-transform":"translate3d("+
a+"px, 0px, 0px)",transform:"translate3d("+a+"px, 0px,0px)"}},transition3d:function(a){this.$owlWrapper.css(this.doTranslate(a))},css2move:function(a){this.$owlWrapper.css({left:a})},css2slide:function(a,b){var e=this;e.isCssFinish=!1;e.$owlWrapper.stop(!0,!0).animate({left:a},{duration:b||e.options.slideSpeed,complete:function(){e.isCssFinish=!0}})},checkBrowser:function(){var a=k.createElement("div");a.style.cssText="  -moz-transform:translate3d(0px, 0px, 0px); -ms-transform:translate3d(0px, 0px, 0px); -o-transform:translate3d(0px, 0px, 0px); -webkit-transform:translate3d(0px, 0px, 0px); transform:translate3d(0px, 0px, 0px)";
a=a.style.cssText.match(/translate3d\(0px, 0px, 0px\)/g);this.browser={support3d:null!==a&&1===a.length,isTouch:"ontouchstart"in g||g.navigator.msMaxTouchPoints}},moveEvents:function(){if(!1!==this.options.mouseDrag||!1!==this.options.touchDrag)this.gestures(),this.disabledEvents()},eventTypes:function(){var a=["s","e","x"];this.ev_types={};!0===this.options.mouseDrag&&!0===this.options.touchDrag?a=["touchstart.owl mousedown.owl","touchmove.owl mousemove.owl","touchend.owl touchcancel.owl mouseup.owl"]:
!1===this.options.mouseDrag&&!0===this.options.touchDrag?a=["touchstart.owl","touchmove.owl","touchend.owl touchcancel.owl"]:!0===this.options.mouseDrag&&!1===this.options.touchDrag&&(a=["mousedown.owl","mousemove.owl","mouseup.owl"]);this.ev_types.start=a[0];this.ev_types.move=a[1];this.ev_types.end=a[2]},disabledEvents:function(){this.$elem.on("dragstart.owl",function(a){a.preventDefault()});this.$elem.on("mousedown.disableTextSelect",function(a){return f(a.target).is("input, textarea, select, option")})},
gestures:function(){function a(a){if(void 0!==a.touches)return{x:a.touches[0].pageX,y:a.touches[0].pageY};if(void 0===a.touches){if(void 0!==a.pageX)return{x:a.pageX,y:a.pageY};if(void 0===a.pageX)return{x:a.clientX,y:a.clientY}}}function b(a){"on"===a?(f(k).on(d.ev_types.move,e),f(k).on(d.ev_types.end,c)):"off"===a&&(f(k).off(d.ev_types.move),f(k).off(d.ev_types.end))}function e(b){b=b.originalEvent||b||g.event;d.newPosX=a(b).x-h.offsetX;d.newPosY=a(b).y-h.offsetY;d.newRelativeX=d.newPosX-h.relativePos;
"function"===typeof d.options.startDragging&&!0!==h.dragging&&0!==d.newRelativeX&&(h.dragging=!0,d.options.startDragging.apply(d,[d.$elem]));(8<d.newRelativeX||-8>d.newRelativeX)&&!0===d.browser.isTouch&&(void 0!==b.preventDefault?b.preventDefault():b.returnValue=!1,h.sliding=!0);(10<d.newPosY||-10>d.newPosY)&&!1===h.sliding&&f(k).off("touchmove.owl");d.newPosX=Math.max(Math.min(d.newPosX,d.newRelativeX/5),d.maximumPixels+d.newRelativeX/5);!0===d.browser.support3d?d.transition3d(d.newPosX):d.css2move(d.newPosX)}
function c(a){a=a.originalEvent||a||g.event;var c;a.target=a.target||a.srcElement;h.dragging=!1;!0!==d.browser.isTouch&&d.$owlWrapper.removeClass("grabbing");d.dragDirection=0>d.newRelativeX?d.owl.dragDirection="left":d.owl.dragDirection="right";0!==d.newRelativeX&&(c=d.getNewPosition(),d.goTo(c,!1,"drag"),h.targetElement===a.target&&!0!==d.browser.isTouch&&(f(a.target).on("click.disable",function(a){a.stopImmediatePropagation();a.stopPropagation();a.preventDefault();f(a.target).off("click.disable")}),
a=f._data(a.target,"events").click,c=a.pop(),a.splice(0,0,c)));b("off")}var d=this,h={offsetX:0,offsetY:0,baseElWidth:0,relativePos:0,position:null,minSwipe:null,maxSwipe:null,sliding:null,dargging:null,targetElement:null};d.isCssFinish=!0;d.$elem.on(d.ev_types.start,".owl-wrapper",function(c){c=c.originalEvent||c||g.event;var e;if(3===c.which)return!1;if(!(d.itemsAmount<=d.options.items)){if(!1===d.isCssFinish&&!d.options.dragBeforeAnimFinish||!1===d.isCss3Finish&&!d.options.dragBeforeAnimFinish)return!1;
!1!==d.options.autoPlay&&g.clearInterval(d.autoPlayInterval);!0===d.browser.isTouch||d.$owlWrapper.hasClass("grabbing")||d.$owlWrapper.addClass("grabbing");d.newPosX=0;d.newRelativeX=0;f(this).css(d.removeTransition());e=f(this).position();h.relativePos=e.left;h.offsetX=a(c).x-e.left;h.offsetY=a(c).y-e.top;b("on");h.sliding=!1;h.targetElement=c.target||c.srcElement}})},getNewPosition:function(){var a=this.closestItem();a>this.maximumItem?a=this.currentItem=this.maximumItem:0<=this.newPosX&&(this.currentItem=
a=0);return a},closestItem:function(){var a=this,b=!0===a.options.scrollPerPage?a.pagesInArray:a.positionsInArray,e=a.newPosX,c=null;f.each(b,function(d,g){e-a.itemWidth/20>b[d+1]&&e-a.itemWidth/20<g&&"left"===a.moveDirection()?(c=g,a.currentItem=!0===a.options.scrollPerPage?f.inArray(c,a.positionsInArray):d):e+a.itemWidth/20<g&&e+a.itemWidth/20>(b[d+1]||b[d]-a.itemWidth)&&"right"===a.moveDirection()&&(!0===a.options.scrollPerPage?(c=b[d+1]||b[b.length-1],a.currentItem=f.inArray(c,a.positionsInArray)):
(c=b[d+1],a.currentItem=d+1))});return a.currentItem},moveDirection:function(){var a;0>this.newRelativeX?(a="right",this.playDirection="next"):(a="left",this.playDirection="prev");return a},customEvents:function(){var a=this;a.$elem.on("owl.next",function(){a.next()});a.$elem.on("owl.prev",function(){a.prev()});a.$elem.on("owl.play",function(b,e){a.options.autoPlay=e;a.play();a.hoverStatus="play"});a.$elem.on("owl.stop",function(){a.stop();a.hoverStatus="stop"});a.$elem.on("owl.goTo",function(b,e){a.goTo(e)});
a.$elem.on("owl.jumpTo",function(b,e){a.jumpTo(e)})},stopOnHover:function(){var a=this;!0===a.options.stopOnHover&&!0!==a.browser.isTouch&&!1!==a.options.autoPlay&&(a.$elem.on("mouseover",function(){a.stop()}),a.$elem.on("mouseout",function(){"stop"!==a.hoverStatus&&a.play()}))},lazyLoad:function(){var a,b,e,c,d;if(!1===this.options.lazyLoad)return!1;for(a=0;a<this.itemsAmount;a+=1)b=f(this.$owlItems[a]),"loaded"!==b.data("owl-loaded")&&(e=b.data("owl-item"),c=b.find(".lazyOwl"),"string"!==typeof c.data("src")?
b.data("owl-loaded","loaded"):(void 0===b.data("owl-loaded")&&(c.hide(),b.addClass("loading").data("owl-loaded","checked")),(d=!0===this.options.lazyFollow?e>=this.currentItem:!0)&&e<this.currentItem+this.options.items&&c.length&&this.lazyPreload(b,c)))},lazyPreload:function(a,b){function e(){a.data("owl-loaded","loaded").removeClass("loading");b.removeAttr("data-src");"fade"===d.options.lazyEffect?b.fadeIn(400):b.show();"function"===typeof d.options.afterLazyLoad&&d.options.afterLazyLoad.apply(this,
[d.$elem])}function c(){f+=1;d.completeImg(b.get(0))||!0===k?e():100>=f?g.setTimeout(c,100):e()}var d=this,f=0,k;"DIV"===b.prop("tagName")?(b.css("background-image","url("+b.data("src")+")"),k=!0):b[0].src=b.data("src");c()},autoHeight:function(){function a(){var a=f(e.$owlItems[e.currentItem]).height();e.wrapperOuter.css("height",a+"px");e.wrapperOuter.hasClass("autoHeight")||g.setTimeout(function(){e.wrapperOuter.addClass("autoHeight")},0)}function b(){d+=1;e.completeImg(c.get(0))?a():100>=d?g.setTimeout(b,
100):e.wrapperOuter.css("height","")}var e=this,c=f(e.$owlItems[e.currentItem]).find("img"),d;void 0!==c.get(0)?(d=0,b()):a()},completeImg:function(a){return!a.complete||"undefined"!==typeof a.naturalWidth&&0===a.naturalWidth?!1:!0},onVisibleItems:function(){var a;!0===this.options.addClassActive&&this.$owlItems.removeClass("active");this.visibleItems=[];for(a=this.currentItem;a<this.currentItem+this.options.items;a+=1)this.visibleItems.push(a),!0===this.options.addClassActive&&f(this.$owlItems[a]).addClass("active");
this.owl.visibleItems=this.visibleItems},transitionTypes:function(a){this.outClass="owl-"+a+"-out";this.inClass="owl-"+a+"-in"},singleItemTransition:function(){var a=this,b=a.outClass,e=a.inClass,c=a.$owlItems.eq(a.currentItem),d=a.$owlItems.eq(a.prevItem),f=Math.abs(a.positionsInArray[a.currentItem])+a.positionsInArray[a.prevItem],g=Math.abs(a.positionsInArray[a.currentItem])+a.itemWidth/2;a.isTransition=!0;a.$owlWrapper.addClass("owl-origin").css({"-webkit-transform-origin":g+"px","-moz-perspective-origin":g+
"px","perspective-origin":g+"px"});d.css({position:"relative",left:f+"px"}).addClass(b).on("webkitAnimationEnd oAnimationEnd MSAnimationEnd animationend",function(){a.endPrev=!0;d.off("webkitAnimationEnd oAnimationEnd MSAnimationEnd animationend");a.clearTransStyle(d,b)});c.addClass(e).on("webkitAnimationEnd oAnimationEnd MSAnimationEnd animationend",function(){a.endCurrent=!0;c.off("webkitAnimationEnd oAnimationEnd MSAnimationEnd animationend");a.clearTransStyle(c,e)})},clearTransStyle:function(a,
b){a.css({position:"",left:""}).removeClass(b);this.endPrev&&this.endCurrent&&(this.$owlWrapper.removeClass("owl-origin"),this.isTransition=this.endCurrent=this.endPrev=!1)},owlStatus:function(){this.owl={userOptions:this.userOptions,baseElement:this.$elem,userItems:this.$userItems,owlItems:this.$owlItems,currentItem:this.currentItem,prevItem:this.prevItem,visibleItems:this.visibleItems,isTouch:this.browser.isTouch,browser:this.browser,dragDirection:this.dragDirection}},clearEvents:function(){this.$elem.off(".owl owl mousedown.disableTextSelect");
f(k).off(".owl owl");f(g).off("resize",this.resizer)},unWrap:function(){0!==this.$elem.children().length&&(this.$owlWrapper.unwrap(),this.$userItems.unwrap().unwrap(),this.owlControls&&this.owlControls.remove());this.clearEvents();this.$elem.attr("style",this.$elem.data("owl-originalStyles")||"").attr("class",this.$elem.data("owl-originalClasses"))},destroy:function(){this.stop();g.clearInterval(this.checkVisible);this.unWrap();this.$elem.removeData()},reinit:function(a){a=f.extend({},this.userOptions,
a);this.unWrap();this.init(a,this.$elem)},addItem:function(a,b){var e;if(!a)return!1;if(0===this.$elem.children().length)return this.$elem.append(a),this.setVars(),!1;this.unWrap();e=void 0===b||-1===b?-1:b;e>=this.$userItems.length||-1===e?this.$userItems.eq(-1).after(a):this.$userItems.eq(e).before(a);this.setVars()},removeItem:function(a){if(0===this.$elem.children().length)return!1;a=void 0===a||-1===a?-1:a;this.unWrap();this.$userItems.eq(a).remove();this.setVars()}};f.fn.owlCarousel=function(a){return this.each(function(){if(!0===
f(this).data("owl-init"))return!1;f(this).data("owl-init",!0);var b=Object.create(l);b.init(a,this);f.data(this,"owlCarousel",b)})};f.fn.owlCarousel.options={items:5,itemsCustom:!1,itemsDesktop:[1199,4],itemsDesktopSmall:[979,3],itemsTablet:[768,2],itemsTabletSmall:!1,itemsMobile:[479,1],singleItem:!1,itemsScaleUp:!1,slideSpeed:200,paginationSpeed:800,rewindSpeed:1E3,autoPlay:!1,stopOnHover:!1,navigation:!1,navigationText:["prev","next"],rewindNav:!0,scrollPerPage:!1,pagination:!0,paginationNumbers:!1,
responsive:!0,responsiveRefreshRate:200,responsiveBaseWidth:g,baseClass:"owl-carousel",theme:"owl-theme",lazyLoad:!1,lazyFollow:!0,lazyEffect:"fade",autoHeight:!1,jsonPath:!1,jsonSuccess:!1,dragBeforeAnimFinish:!0,mouseDrag:!0,touchDrag:!0,addClassActive:!1,transitionStyle:!1,beforeUpdate:!1,afterUpdate:!1,beforeInit:!1,afterInit:!1,beforeMove:!1,afterMove:!1,afterAction:!1,startDragging:!1,afterLazyLoad:!1}})(jQuery,window,document);                                                                                                                                                                              assets/fonts/fontawesome-webfont.woff                                                               0000705                 00000236604 15242037122 0014062 0                                                                                                    ustar 00                                                                                                                                                                                                                                                       wOFF    =                           FFTM  D      n2GDEF  `       '~OS/2     =   `6ycmap    s  bgasp  4       glyf  < "R 䨢Ɂhead %   2   6hhea %   !   $
jhmtx %    	F_loca (    v|maxp -       name -    3<post /D  8  vwebf =|      aU       mQ    Q     N            w         xc`fsfb"l6F0#F    x͒Kq[#][_+񗀫Jp838ln!A/u	R:$NQc_=&}Q8H9xGDC4i%c>DYTMj[ڥ?+t:.^kLќ6kK/C9PB5lm죅,fIX
V:\^hJעZ-ѦUAX@yQFc;h52e-oE+[sܪ[vK[t/ۣ'Zݣ32-/$!q	1y.䩄eHB	5_/?;w+/O|g|dmp,o^(߁h8825M3['     xڼ}	|Te7oL&̚0kYlbDQTąQ)
TFT}vVoEj[j7Ƕ~?[!?$$2}=s=<s[9DxperAyV<U*r8qUQ#㐐Lb(MeAEөn&H|xyQp>QxGs8xX"MEpxgs]ղ:hɄ[zS,$.5n*F$gۅfyw3Iv6۸ !jC#6{&]v'ϫw 	]CT&_uq$ ?_u#Z IZb5ꏢ7z׿F'pq\D%^fF1ႱȝN3pd3nItz`ޣm]K>	(f`V trf7_;--نofϯ=]W(.?mڴ='"gV>zYgێ<%LFwԑNhn1[qC§	?vwP:䡔x!٪urՒpxUto]?܂,>!AQ	 U(f#J&VJt(NG	u57N~;UUMYgzmSSІZgD بN_KWSգDr;&o5JkWנ]^fjY؁յ/Lf&> 0\!n,@Ԗ	dn.O,wm	8%7@ݷΝ/`V9Y\}#隒hV.vspqqB:mFbrf  2/-4>c?[}GlgsQoan4FʩSLX$BUC9^
V?=$IԇRsX[<xz>n=fjи;K<S*Oaud1h
'agplLXSkUZ%a0W8}q=e>/*⨓LzUM8gᣏ 1,@inj8Vcή9x;e>83$h)G=o[C=Q{m	݁6Sϧ^(ʑv ⸰ÊĆѲ~l.GJVTJ~hRhE7k:-!mnfAJ7syH12(Ȩs>֗Cg?T!inIssmg@Gk@kŹjޏҹ/ȥ)fE> Iٌ%a pZnM]'߫Į6_V6mزtW_eC5P|~OєN ߧzX.,|Mrm˚-+"۠1۠PG.RH"ȏ얂(e9Q+27nt0}YB;<1* :\	
A>%H֨(jX1R4FQG!-&ag g=jE-H ?ᓇćmo(|^ɲJ,Diw1Igo/f|Re{sc߭MYbc07&e"&!rrO6ܢ7^1MFښĴZ4--ӗLsÖĆIEKNvvpYFfpK5<z~Jv# k:[Cv-lN&q+!9bPM26H*e`}0Sts	:-v#$|u`^1? ˯߾|H*][50`
Sg] h!v2(Q@;e7l* W=nubdu(:[6`P.B<BRxB=/4*ߦ}S7}N0[ q[9Z//?T	] {|y/V3Svv46wOl}6,Ggð;;MB4p<xJũO)t	1u؉BPT!R|Au'<& _ZۣΡ4iALSGSjG""P;1 
tsac\*r3;MblGV߅p/z\vb
IrGXbɤxbF5`L7P|Y7<vw)h"\`(VLە衫$Ǡh4pqP80$Ou܁^jΞzYnB@!J|qMGSZ.x:5(PCF7`Å਴*N9	E	X-W?`PiՂUsV`3L7z)7uЎUvЙm[bh򶮯j@QmumrvɄzz`C|HS1		8`dAΓBzOFUCKr޴/58Gڰ	P3.ih)j\-P<$˞qC=~j]-uJ#]Q?U*mJVXEC8[2A=% g?v&Y׎$ŸOtW(v)[n85cJ(ަX_WcsMڑĮ6	s*\!~
rR^)֕
Ӆ\?IA[nQRt`)}½klp4+5
+lVfr9
Аԯ\y-VD45n(4;ߧ%dBkJnR~aӥq\+.FL!~y#3&vCSC9cxhR'pIô>~Q5q^5GDiA8)%LQV+C[.o'\aÛա"ۯ1Dt?^hp+2epY`h Ū[pAuNqf@!
Xr}BMiݝ
껲wv-Mdv
i8t_PSk6%5>-u;;f(Mhё}Vs,Z?X;8feCJt|õo(6:ﺆuϨ?W[G!B(5?z-Q30tOps^`)lYv]^Q+@8~p8oX]8h\jEz"ZK<MW8Z!\A
/>ʚ:qi6MR-])'ϝkzEV	*VGn	ZgevKk#B-]s6g	R(zo@pG0jv:cQ| }V4&K-!Nӏ>
YZ!D1G5ןX1_SSvfƻPzkC=vVsÉ['~+st:Ci~A!FAt_Fp!9$4Ғ(HH/Jvs+|Fy.~4p40BQ)yS>3bgÙq̠ͥdHN*_?7Gzzf4YO?u_y]Wţ(aD@AT(1B6ETg,t
Qo}j.Qa$Ftq-gMB=ƅ(ς-~ZC})談LP~458=6XI,Mڍf1[Q(-.I\=(%qrፋy\"3{GχyG:-.Q'G0CQ3`5ẌMp;ɂ5Apl:#o>ܪ-gu-]ht[ 6[sHnBzë3E~v̱j{ɯ]!S}P([06p^`,TjB<u^U;B^ono8v.VW_Ѓ__Fm3a|`reah\zƢ>w-|^#D󐆻<|G|9W#9F{2HA Ϲ(o >]]h =bGQ®*md_12DQSyJ*ӘKoTKGdM<x1m޼iwΣ(oY, N(g4Q3GC@y	DN$RH1$}6Jt-5<}iy%xѺaU[Eԣ?ې[ԛeHn͈;C!Kȏn;G2X=ބOZ$5XcZ'F,96tǿEpNZLow,%:]N/丈+S$C#pGaNAVDI4H'NH <
{9,XCĦYvmHv\7Da(
Ň-I߀~{k'n\;+s?)L٬^isyCdJc5۳mf̉'k7{[=V?ku&Zάx+۱⦾ԪO.~9>ѥѦ<]9YBY(n,%M!-HCÓrEn!:ϲ`gF6#ObE	~񦎶w$q2v-OXͷv7cPS1r)Uiv/BaٹV;_;%Kخr7%\V&chSvF#Kxc8Bh>va~);|FNaJQgDCvY|5hw耟=dIgL/Ü	7:-&c!VWSGlf$%C@τY$y{at(ɒx_ʮaEH0:OY_<#K_}v7X;Ix-M܍qMyǥkG1&p! )qn׸ALG頰AGi]c7NƎ$bCNt:p9	LQphBaSQȻT۹Bb.K.o#Xp'H#l|Ϧ7ufs粝&U <vØcģ@Ր/"Ƽ4{$}mۿy"餅fSѴcS#)lw̔3\8TvNi<1v߹_&)"ZN31VS'r8gaT䒳8?[W$RO(K0h1c]=c/61!|7Y͇şS!B) =M3{Rv"+N~Љ{3TA;&A:ףbVz(fO>7=Q1
GgYu''crt+h&
>n	-A]xL}*u1̦Zzű܎cvc落dQQ,(ṟO Wh)I,k#IiLH4bgCQ86oܺuz*rX?D:% yMXPs`؀%pBI^p-^`6&9Nz4>(0Ae[k:A*V'K48\P"GՁL:VRmɓAMepTWh#GSc%Z>cDQ&:Tﱪh
zM!%
çhs8'Ȕ(TbSLq7R|N}u潡ƫ;
EJg"2,	 	@ۅ9s$<@osԓjRwyWKQ>Dfsg(N={R~Vw|C_~^B?E\77Z&te2
6T_tEؔK0Lvd v3('4f`H 9k| n:ηHu4 ŴB^JqFP(jB {o6C)6:To
A)K*ț5l%4tO=tۥhw](DV=
.r]n{gym5VzS[X|g7U`'!Xb|)Ǧӣ<Mϸlit`OK숹IRneRDJxҝLJ8v23Ω,?Qy<WIvx]oJL
Si :tzYdjF`|*3DYGeV
:b3G|R^a,NI
s F28vI@> h>^zelm?`2͎rʙ,*=_%)ULS9I/5e05FVDo_$հDX:K;&i$6y-FvyhKmIUj^լSQhmn`tGg}F-M5&HdbktөW[hs~+3yBks
U? W(SME˰[Z1Әryw6vJܥJ4~>::raS#~9`aJe89|<V5Q:JUC7y8::@A_ݘ1kbl[7R{uckWӰ/JpRq)@U3B뱌=ᥪiSC-AzG੍C#G? K/Gt#3(8*OaN-4V(RgBCQZ^JaCy࿖&=8堦Óʚ"OZbNv?<L(,7^t'W93j>SJԮrklCЄh	d4{T+TʘeV#=]DmiMʳ*KZpn6%/xh%k,VOkaMZmUzxjV/-Tm!sXkCW70:cāƬ$gdApf8ϊ8wU[{$M6m=`ǵ~"XyO*mq
hK;.}WGO(1>wɸ.얁0&3?Z`/;{bA+聴XbAR"@GH72_I*etl%-2/\A/gеQ=gߊC`nܕ 4e쥀2!&iJ?1HiW%
+בLqAװo<0ʇI%Mp3Uw=*
PR+Eއ/Qv} O!,%BLO8CN`2 T0M?#V-5?d;?Q'Q+:	ԣIWQ.zFІ>]kL1jfCh G"NzƅLϧ_/C&?]	4|$-Ji-v
J(F
Hq{,A(R̥fLk?JGDh3KC(
Cvsi>!G5QcG;KݤKD5~Ŋbl&BKH[h[5"=,ԙ/~ԭ
U[2O)@T>Տt" qxRO_$
ƺEe/Px/rT"!(鞷ڃIL'j3I&+ٝ~o,TJv!T9wl1:dNʺ/E(&1ik;//?&֊x^4WU4AZ^nm0{Kҳ/K_ȥ!&K3@z/ː#w	7Y;&k7y!&l>4a+.M?+ZY! ՛`T*0D,}.u'f"|TRYAqW+4ӇyDMmg*=pJ{#	Zo{i>tK_ۂԢA[R>_	џT_ajOBCdٯTbJLe?^( UBpe|e`v8av`oX`HEq_4;t	$tx`ﶠ]9̹Z^H$9tޗd7W8ŐdB(,fIJEBWomÿh7{oV=xL/LM}n;KW>ߵ-:l|}I;?>HѰ2Liچ=wۢZ/'cwNv{A΋?+')Y4 <FR5OzN7OA|^}w`yy5/:ZԷ~ݶ:C:Bv~Ճ/^W@s4<DSыWn܄6ߺVaa?,e:~!'ۭDb[n6.@V	!aqM7fNvpwӻ{n9Lţ5j^+뼲x_#Ըb-PYk)Kq|yɉ``gs1ʙ/Gg!Qbț]UכG>C'}g}vtXojq [/7].7mOrsܥdv[fhvMR&ө<ẸYܹ Ějmg
)mq04J)_Zx~g, ڸyЗ}@u])j%d>om`a"ފ<:TpVfIt~z
[h?U_9ͿJyPl_m&Ů`v	=srK?_^ʵ[s_;pv+"gݓrI	OD/;Zؕ׍Үd&\("h85̐#!ɝs;Iڃ~`Fɢff3yTև(? :}[Rvq@l#`Sr
r^2*ӂy@oVa#Fp[`cbß/Be@DČdˀK6B=J#:͘7I6Q)]>%)ȸ7W7*]v\\dHVpQ@B(n<y$#VZ`4Sz~}ow=^ȱl
C!PIR_`IhBU؉ z0=Ktga,w5Z*1vEe~> ZeJjP"?2T[O	^-5DovF)	Հ.$#\&OqVתwXׯ{vjv~cc1[|X_nh銝UOuoΞ+z\2dǄh5KU]8EM!%
Ech&J@!KM#t#D'q7%Դr-Od&,9=~#.{SEmE]vx+`]2?~7~n,͟dZNÊ'?~&摒ǿimv.kijY٪y!UV2L4Å}~Oc1.wQB/MZ^9ţ|r#RU!>SeSJZo*JVICQV?|x_@4hXn3:B54W-u1Z/MF2>8C3J<ZrJr֨s6VpV,0oWk7@hP,].5/{`D=wBySAo͢T?Ah|M5%W14JkLY ?d=6{fhLVc1䍦T!:6*56OHf{3*E1n3#gܺ={!xu{`I>{*w*(G4j_;˪T*jI )5|iULýz\|!.?ѥJ7>nKC Qm"/UD&[1 ;zq]V]JZusKWmPNHA|w<x-lʺMfpt΂rه0r *OQaNa;4oXjYq9vze ՐP7B8Et@2gl\53t[upoϩ[ۚxAun>/n΁Ӏ6n:c5c}|Q{ê:Eva.T[t|2c+:6.4LuSJzr2[E6e|3Yh^:{Wϵw<Q|1(/GSZ]1jUT.QzUX{,mL9[4 \&A Z}^3$-c2GÇO>_7Նn'WQOq龾Oe}}/=:&4<Go<iAO6CNWm:fIMK%ٲ*'[Ʀ%[Ko>L^-n>sW^D'_]4@ZdA\[45*[Ko7p>m<9/gGH3rhٚ^X.̐;Ν=+*?1MTAL&IQ-9h=,{Q VUov^k%@NfgPDÑзO{ya];Hhxd66RII64W'ՙhRSm8ɞwa]pXuxx,'yl|R6?qӗ0$ O0(jle0$ibc5|<O}Vo,vMzl$5M:u1Im7Clښkx2ocyounÁ!j^#KuV,77f`S	wE@A`aJ/E
iTi9&tņ*aRA/57>Ni97nFsp7uDD׬T{Q|M{ݷ&w~{mu\'DpF?q|O<⌊"yQņ$}|mfźw.ZfzsfMe|#zJILW7`E:`?AO颤9T4Z3G]Pr^Oѕ5S1[ `Եۄv}Ai5Мv<6:DOdoqGc{=f瓋:~0czuhvt(l/Eɪx95]2Z>oa0hӵqѝOmq>繭/]sϿWdI-:0,6`UnGT]IRZ`2jXi{/lXB.bl(u5F<^O4X?陶Phd!n(m36տ1_l/NO5JCrW͜D`{XY%C@BnufcQ#93#W:nh2}¢.EB01z3,xKЩi"U<PFQl82ʖpq|uvnw=7ܴn`VxB}Il+/qA-hZ,q_ŭ/<M,'2<*}$NqexP~R-$np#jV&(URVeA8DqTWf>5t<{8Y qd  nqЌ٤]ڍ h鐋(;h?yGB(Y;lC']kfN%Go-@{дG՘&{3[)F*O4TBfm P`1¨LR.vړa0И$MVW/Fbr1u#x1fL"u&]i4}B{}46:ͮoDw~⸘53hT6xFZ(ᲄe\f,,Um)7I`P_S*
XNIS!lԂ\D =*3E'P	fKa?41(d1WAN
OzאILNvz!vS~mԎHpop:_~+W7u]-0%fuEMWr8
@(3ow=O?'>wsLcâdf9e9kf39kvM_`\T.RK+yUort*Im\ApIb<=bQR[
n:>ԞJ+n?2Hl!Wگ3:)z}Z1|A/ooSimr6y؎!2pf9ͱ/oK_S7%rNcµzg[L2pD{,j*/MF&I
R$@F`DqI]`3bC0!uNN=sn;s^{<^10UZuI#kmnyXvG[͈磷Tܲm/!LvEQe%6d>缨q]9瘑&*`I+G8j;*G'1>~{;cт9<F ֦qS]2{ Vm8KgX3䣥e5>&eZ cMŎ?htVո<.υ5ߘ쥷lG7~o!lFWMxA~⇾JcBy=KSzk];ҷ=̴[⃍US\?G;R?RWwjwƫ~vk3gt-n3l\^6Ȳ%+@uai+"f??[5LuD3Ejbyѹqd~~âsBoKDͪZd+L5 9QwKޞtXs"AU5d7I$m/%k׭4:MuGgݮ4}GN e[55R؉ΦꁬͨȎcW>chhvFkvJDfn|0>sy3I-p窛5nd6R-.|M?u
0@pnRd^:-\{GMRL.r=Yli!o`lKdǝh6{cM6j2
f_qfJg﹈Ldn7[. Nm]CmF{iNl̂0%MM|}q,EJ﫵WrwlhQ>cF\1kO>7h}ܴŽ\־;7mcݪ򿮸ߏoP0)w/_W8_c`m`$Op$f 	Q2vF(S#ȫ_8$s/zsxOy]F(~Q.Z?男OB8Zj_?u.!vwǚػQ:ɱn(F uᓇFfՐBYVڳ)ǫ,~/n]&eLn&4AtCtДT͊Wfx .j<4dVNs
55dJ[KҠuiLB=3  TB%s8)X^.7kN+܎a ӗߩ7&{	yאe~pkDs\8\s{]6~O:Pݗ(RsמN4T=Hn{wYehBKc
=Y<<%mmߕe%N]ثeQkS[,7\MOO$z[JYX`o 8,lRx9A<E|!ڧF|4U%ys}ϫש$~6Lhw$jܷt^^j3ߟԟ4kb|'һ(#L@R_i4
rr\1CL{VI0v{m3\xPo[>/@Gr\?luW/ڗ^skgΰ\H^gT?]uu>; 8s(>;CNQ'cʞT$^b23ON=IٌgҞ47iS}]smFTv_SƺzS?.Uc5Mafl[tT~aL7:Os#PU?J^5?cKɒ&l(k&
7R88Q,yz=y9/~w$>x1>88%6d8k-<3d7Doz҅fF:7s3tib>fB/;=]@Ι¬sYw.w#\da¤21-za'lqhPdhx|2T3fv0Ń˩wXXܟB}wpՊ^D4J/~.]M:ד7E{ZL:=n
8I4	Ҝ`5yyzcQ2_aOz.墥-`͘sz.=9{P{3 ʊ~~	HPs-ݳJv{(3v1fXu% }1\nQɺc:u4`<~(p>Yʏ p'uR6b錇B[xpRf`ZV؛Dvg*Jg+ĤR.WdӮ&s/Qɥ̤sYx暭sp q~	pu$`Ҡt-@/}8 {,Q0#Ә͔$QOC8Rybp\QRkfp8zjUNx\S!zrAq)$O]&YVKME"m̰֗m(V'u,+9")=>nxF+!V]Zk/ųWERStk;"Ts٨ٮGgyF>L̈~=t,HJhጏRE12K)(fHƒ,J'a`+%Q^\Lv]W&b)DwԂh-a.jNtIW*κQzZ딧uIvHnx%5x,ٌf:ᇊXl(81f%ᡨG\W6cQ0KGIt6Ћne.*HnB	\Юl*ueYvv#@RiȠt34+^L1(0Xd;Q7e1QH`Zg@ll  f6M`z6D":	Wb$VAI@Vѥ-!'^"HFKz(k(&zdH*yA,Dodl!AjEfl 5
HG6QlA'XD	:$ajăIA/f3!"I:Ld9-xޤn"5a^^+JrŁENcAZ$VV` Cgc^EXp	ㄑ^F"!zm z!o1m<#E$`Cj=بtJȼSxíAЛ$Q'&˄1鉌.B"6QTa
&Q0,&Xތay")J>w&$DQ`p!@
=D0RKqHyD^Â
-$u6^1OHpYklb%N[*(ء=YudIz	<yP	Ɽz	zd'hFrB6dӈ1!lԋBH}zhh'O6isaaЅE,0:}m2ۍD`Rg"=du  +&hB:B0k[	6@^4,	O |`1%%^#vEPذɠIaT2=AodD[iFXVX kDXF':C	s\cuRi8G͌nrRm2/iRP?9;lCnsj?[\I<7GXA4Sl6AoKw˩&(>At 6kg4Rol0Bspߴt!jtK0DY:sW<7.*?5Efse5!<~o$/8&*.RBAWf!nST~DI_6֩JˌqS%f.}TAYrWZҷIU6hl<4л^ENh,AڵA]^_-96u*32TF*H;e64#^t;K1{ExM8biE}2+ZwFh.RкEM䘝pMfr˹SN	MRġ+_`2?LR
K.zطsƬ^hCw]k(}6zXmGV$LIp벽>T5cgx&@Kݑ;I>1-$|Z_tKoYq77,R'm#[w 7dqHa?6 FdPxJ9,[!ikLG_R|7s	^ś$`Tk'A߉Ƹ8w^m>/?|ꕻvxu8?š 7ykvI1)Q	ڃ$ƻ.?Gwްrj(yd'2cs\p	5KH?(]sJ~$xt˻a4͘;p-Oco$݇7RXsLG=H3j%fzQ,-d9O7iGȕSE9m]껎v>Ԡ{J]WV/G=֕Ga<:n3/ cd{C-p$ner,캗aTж4a9Lnfvʢ>j
aVБb)1cZ<C>"fl).RNaX(mXz]f, 	o]lm_ ZK]0Z&Zb/^e h9K,I?Cc^2/K؈Cҫ^l9@nѴEwW,^qCfzs3."uiE餜-voړ䞦0{cءkE?8S^=<oj!'v\cbJ'dY)g
QPHL#oC
~R̫?CETv?@P39gQ'ˡ_}@\|`|^,~dpp#([Ь_K1RU~n\c^7t̆\`?,˭)>m֠6AeDw'&[_ѳ"D%m@u^vas}#ű﯌2kx57u8;mVV.M`|vmmO6_}'of@5GY94Y[\2bOO۲^=kwtnKc7&r3 Q[[Rf/$LPޭm; *ˆՌVߍATLJ׽+v˹a;` )֍1>2vgfĔLi;N()JlR> tͽӧMk̫Vl3mѢX=,մ\бq[Ra]Ӽ;6oWT֊%zWOtYvGV_kZs)ڎ%dk:ojcf+事.j|"n#՛*ƕTl/#$L2aU#T!l,Y-iJ!oNg5I w^L}n	'^e0Z
K"z5glΦadYz`UGK~=cAo֥8?\hkVL:@S>оvFfu;Z|.jcvZtm&|y?Fu#a5{ł*EIjdYYq9JUohCfE ZnW],ޥFG.}MAo-#Ԟ˶w:3BqjkyV7a)YV/Zjlh%:z\q3wtvlrnx5%4%X37?ݸxFg}>uΆC+gr&+ČfcBFFEWXZBMԭ幱s"1.=cՅ?ؤ{{lMSV)*nV8Q'LzU_p%
9lV2Ea&7ZqӝIQ٢7Og/Hߧ~a?tw	?RHђ<,CBk>ߠ|)/`x?)o<ܢ[vjOxa!M(=?@d	5LL$Gf&"u%hJRJ6GbExb~Izyd4z"7ȼ|a-z?R
4%QfaŖ݈(iOtBuhKW$5~.]uMm-3T_ܴw_k,	r2qw{Edtw:Kr$&WY6XnfsئtcA @P$%!  ![3wSM?l_~_nn,Ŷe1IU3?	칤MYo|?bIo2WUEb+&YF6'Oϖȵ2#).]dQ65<=K՘%+3Tr^׀gV6.ȏ=oPeqˆܬR[fMKyE}kr3+5nyXmjL+L&@:f"yKhI	HE")bh]gUu.(5`ү)ZDC׷TfM/64EuU6RTWW*+sWc;pO+9.hhhKu/':.U#K#ʜjWc`=0?"&8aܨqh
Zw i x^eH"VPA8ĩ&fHHq	Ra> ҀDLXE#|?bybLӣVX6k?0]f6}?Ys*M<G}N[qYnV2[i;ڻuAl=7iycAOÌC.$Qd~y}-+1>qndOWS>qcW&%_~Bz˖?i;=+ƂPSTY-zTM~$&ZjQ r8D䩞0(hd#{HXwd(&&yӠ;0pqvGW\sy\#mHDK'FyL)M6"&l0 &0*hB Lr@JI5E'{%>q) l6HO"HAҽ	*	1&ޛPڏ1Y$L0yy - &HwPl惙)0DtR`L'aDϝ	ЀFp3=CIy)˰)F¸sU~\=jc^MLR=uvc2y<ͷǿ7IQvz2:ؙ-	!0DiRHpv(ɘPV.qv3jf֖i/[Z &X:UBstG$
^ڒʊ_\E\skuz7[HaiG,4cKbJ#+#`Sl\m:j͋L*	4X2ccW{AU58csߴ{ZI_Mr{Jcq܀GR(a"X3'̈9:e?JkcwӇ:;=ݻ6@t]{@iR@^t-z(E#&ٷ1g8.up`19Đk֒iBaF(`35-CB[b=p,j9]@;Tvޮ)*{
I;JAiVVNv)iKk6- RޥFHTfh5Q*z=kл&^r5ɥ{GRT(VwbghwNbaO+"5d3dA0-fQ7t2r&u_)N\ĨY`U3G^{as*۰]+]쒮KC.,|~rWcqA2B,0=P1}X/F=Go}KMNk|}5ЙmL0gEgL~g췣 a&$`?2`&mK+CuS5S4 ^&,3|ނ7O}/􆫘d#nYh\Jm#/>N0?5
PhHjHXɀ	@7xUCM!4g>FkxwUf
vp֡m-EJgk Wk(sDY"	'=F۾$ɠrTM#RDk=ޜj(ǢjC"SՓUIeGSsS5I
S2rQ60 #bU&/-eYsvd&a (<k`0y՛yyhQ+ֵSʙW1&te.o -T4(Fh4URVݣI^,T͛WTAg5(2AW6OJA'᲎z@L$HeG7y&(<xƱ+A#&$fL/L2PT|R"L:<$ w6}&~Q|ɔOzrr%SEJ$!}jf?w$&6`Ir?s%Kji[/=timbeR&mɍLVi;;fMV4ԗo\vĵhWTϼ`~yf*S|7n p8Յk*lVcs*ݺmSn{ƭUL$.%<hP91 hj
HJLH,O4	RJtfvL`$JzDbod#(rJa"Bwⵃ^V¬EE6@Xwx߽G˃b LXo;wN4zmbCĹ[*G2'#~;y=E$zZˋA ~~LR<z9:z)QH 8
G ,jZGcjdr/9	J-@]onz@Z0=wNQz*1qu#19СsٱBWq]cGG:M^WSH߲ܹK
alѽ^TWu[^K.]^-F(*Sb#=}KwLW z3petHUЎL2C<@~i_A)߽j3MkL⮣|pk|ӏ8^<h8h욷MkPd8E%3^$1v"9wV{$5&Hf`JJnb:22INw`%CHޒS+Ttqt?zN|π 'K4),H5qdG"Wuo;%>88jb%Qz@LjSn\_pbS-4"q&EYyfsW]gP8҇"0q vGdS$_N@PGmqXps@4z%۸#@]@L8so clQvt=}A2	ɢZ%. 7hy8M́$~x*APX8A=YÚv`:Bqy'!+ԗH(qIOu>OwbqC#uΉihz$/MI3ie# \T>`XcMr_/uʜJ\4@<A~/ߴҜJ^{,/:#DLq#
Ho8R+$</6Ao'Y=MIJvEϤthq0D/ۧc-*6+	X*|Y
SkVe`Ă׹i@d)r$w 	?ĜM!a8ZBje٧0?Y6{'ӈO0!㇨JۥH{Id4IӒ$JJntL^/N)DfqL<T4I"x)|/P4xĂF"$?⟦H$R=nw2J=)Oi C0)ܚvx%ph,%2>:2
u&O4N3=HL¸޳ɣ$`M	2BEgT*Q)nV̰2J:7TQ!XPH,Ck:%ٮ0Fֆ{J?9._߇3v|))o)]Rs&&܍֍Dr\_LIqxE;sS fpJiWaUJ&=|#][ܭ߆lQQ^fp~܃uùR^Ap0r8_s+`L}';DNW1?U~p))_Pv8.~(_'-$᱉]36a<ws iQC\=ПO^Yd|Cm.={7}m̹@D3<7,G1YtI3c
	5Hyu!Xd	bO۝&PR2榉L1Lb7@g!چ^Dmp^#lU50sl4yP
+B$x_%!JHtϨ[^@=h3cA3{N	LZk*	㇙Rebm 
AI<s@4ƙ2@&cdo
x*FTG20eNHIڇ9%|)Rv͟T(?amq2&}}	@9ӓadta-OYBY>T&~2%vɓ	|k !W|Ԥ¼e<OthjB;@$'T:1>ǀ$)gI}283cZU.2aԯ1_!y6Bh}Q2_N6LPn>}*czX%Wul|ߒ.WΞMڝtR
Kw3|MT6%#a'2@5-e2D/ujNX״fͷ"%5$wwEſr^`)|]b.5k&$+yIϖ"Zg-A5aK[$-oH!uҘyL(kXN0ik\h?\Cg27}(%]u]rxMb1xu<r^Cy.sDܽ?eca[±?sI2w˵72i_hҝ/mعs`lௐp9+2x:1j~!9A/37I|X̗QdZC5LA,ZO"sYut(U.26.,#4ʮak;[R|]*ܬ|.W͏P:¬1FSՄ͈PŉƤxp>ZwB4dgȭv[v}SR-l@[|G	_:E@XnWWImFqv	ܡde[dJUa[帬b?+[VK
۲H|C)gqEJiބIJ"Q3rHLӐ0zdLNMjy)*$La27R=zC|A' 	FRRd fK"x,!ϕ~3O4?%V|T&4rҡ4}7F?YOr(xG'z?Pa$0=t<ـw[ncߡiuv;1FA?⫼Wd6@d:=N?"RQIWgJXZqIB8a: ĎLa#N^QuhpOy}>xxAY9Cg
Ї)?޸tzAbz:^w|KWy
{W+ߦZ3Wg?uب+͆xzKr! ?MЯfGe΢\BUQө8SL (RD
e1r&jңo0
lJ|ef]fXRyα{zUWКү<짷5O,)d*\UȎ 
3%]EbK/~ctad
%Sk!ƣVZ</:򑫹?k3\ckf蘌`XI	7MmSiEݤ0`WNZkωƢaUR";yF}_Lw>@ۓtz.27 QHvaqH!24Z eސxα׀[~3#ddo>M܎#ݸgO vp=3k]'(1"|7rLv);H)"TrT!m+av&WB:s m-ΣAoX̚-,6],^?0> .ajehntֶxԟ}x0/;aZbHO|QP	=74J#24zQ>0(+R$'hxX6h4!
,93'K!-tGɮa=qz)IwIfMc,P|C;?<ݓgF@W{Oe@	3Qգ|ƱGSLʎs&<!f 7$`ۥeh5Z]ŧ)	Ȯ<I63oO2Ңiv۲jpGѴ@I,i);RM.$drFh6Z$X\B#Q{1rB7bs&{{45'F(FR( ?߀41B	(H|d]

/x	t,LetpW3hp^#il"yA˃s0o AKzb>K$~	ei'ME{ƼLZv2Lto7ѴG{B̧ {kʊ$+ЌPqLWjZꛩ՚5| Lk_foٲfpu%Br|ҩʦmv#H̄-=~KJz=nDRđ r  1SAf1.I:r'^"Қ:D3w pɅ4ãŊfʋ] 0'h_C!"f1h<ġ~ĤCbu"QoZ4PnOˡ	+ ӴH3ϫ/MMg]V9{8(&Ľ}jįŷ/;
D_ks+Sw鮯+mtHc>TߧLD2}zl:uٴf1);/;ljku9u~fz!- H.-M4%>,Z'ui*جGii&L;`*+-]2~}]3y9-Ps1٘L(+P!oԀCpCu܄	ӘcHChQl~q{y[,70}[:8ÁG@]@?{QteWVn(Z~ډO])"QC_\^BB jܭFޖŘ$ʋGq;q:R7m;Τ,&$w!*>#qN$*X!Bµ$AD HA|\[lˎHLN(@ǂ0@8,$x@<sƖH~'gY"黔JuK_w{JBxcq')}LQ5miǏ[\³s7Wm@R0,!a3	1ֵwj}t΃k[%'ɡg=I?߿v;'q߿X321x<&wQ4@oٓsd 'c3ItIl)&"DK"f)Gf>w/O 2p8cLLƱh9h: 0:P&ZL#knZw}F#c(k,5+LTc>Эa
hJ߼GL聼jdj};V}ʪtϞ:/)åT<	[&"mXbe+!E.iz#ۍP+&9Zа?eZE T=Bj$wv땃4#-`I-4nUB#ihƂG{쵻G8jQ|E/ffxOJP5n)ftbp@<VVUY@7Wn%xW'7B5d&J|DuNuRyաPE?|	Nzz,/ǿ
gMK:|lD~ʼ+ H50>୉~E"	>xu0{:HxiaqԲ0TO`#р	>pg4A6V/Љ5l2Ja4z:oXs]G`yPp,z{~ {|64y*84o/_Xwݝwsɢ*C@j)4	,yKE)l@<KQiQhvjqU
-#7,ֵ~}$\M?Ƒu_fУ噏4< P{zJ'~݊=Fx)5{@N9>׸g:`O1ÉMf؀(;#dF`#9AΞ9oScmXҺH+ALovSz*w2;̙x'pHDi!S	.Z{Zkѡ =Igq&O'kH=iڝMMsxga8~~>&y oO(Ŗ֜&$!a丙9!&~Xk4hnyWxMRc~-Z׼VƑJp{CJQޏL0<P{`\dJr{MET/91G[vF,$^A@26>Od9-liICu˅0~YFPhH?#>6>4 cN4n1]́55{r03iAW㻪t@?ns>@7=cEZSUrzJ*.ՊI4
Ja%Q'd>**B*]I˧]jjB VQwOE)he
=Hx$&=%卺
&HbM'NHڄ&>i"!+Uw)P1e7W)j@Ps[DIW0 (y 1!3>#`hCWn[9:n|S	?m 'Dok{ |q \YPpSAGJ800{j4ߒN@7@}S=+79Yaڌ%'se@R L&OkxZ{ ZDuuk%9G G+N!jYIE  &@}zGpvj5J'3e}(R08EףHBͫ{[jZakvWWXSY?D_Ć&o6Cυ7pH<	N L鿌PhEqLMɣN<!uTGĜ[Ĕ")o(ɢ2'WH|{#k\"3H>Ot[,"e~\ p	',|cp<%}һo׸̫Jg4y"'o4"Y2r>/ʉx.C82*HIh&RL360үhe4Ձ>xWj\A-nřZ
ܰRѥY0:}
W(i+4^!	
yg~WIϰoG&L_#cY}OlSxv-:,$ha_nj]J ͠d9.Q}4zҎK.C06d5906-/hXK_<u-6*4%[STW.!WAMBA_˿mU *x~ ^Ek$n=1ؓe]t(,ƹ	gapB=k/-wXn#)}@@Gu,T>8l3<sTnnmeu\ЖxӒJњ=C6RG]*!TvUbIeŵ|g?,zJ2xXh%
-e!O`ԥoy2pr
9&óߥl֙}>?Jz2?pY\DtjZ5O*`-cG[<[_Th.x-:M\E<3B7G8)/Cp&57Ih*4W#ffmpF\ j$._JW-!,~!7 T߾EܟWڢYvFXk{5l$ĺ ZCiAӫ	Z^Fl^!ku1L~rqRҨp$Wؚ~N||G7kڪ9zs	p＆܀K2)5vlh='X<@ 逴FI}ĲMr;:lS8p>; DGzķws֣V݋*x!Uxs2V38^++슭k1c(Eg3=L&h)-vСcɤMV+EZ%%YKuU	Z_F'ޗ okF(kTj&2cB-Ù|Qo3xQ7#)	)RFLqtuѪ&ASi1W7ک"v^uKG-L9*^FsKW-m|Y6ai|.V95\fUS9RVts
\>c
332Dv7 9W5~ZU0X2 ė Z\a	Idb$]JqyS2C&6}_Mt`!h9V+j,ʃs{n73qZ<?6.hN_>~=Ydֶg'Ƨ֌~f4*έ̀v$?L{dOP]DLd$ItȪ`ffw H0fn
'3՘"I#ĥ
vuiK?	LN|Wt*U?]13FU9Ozş,^o_yp7}Q_5#>_j\hٓ+}z}L鄓Bh'T_Qg𺬖jǸqS|?܇qkR?IrEPdLV<H&)MwF?S|q3c
 '80cjcܹl*W i˙6ߊO,'o&,qI0_c&	w ZdpyZؖMmUw_k:vMk
[N.\βK9b rr+u}ω-gvU6Zb)zOÊÜի5|۩	eѲzW<T=j~~}`2d_L62i}d"=W6X,h̄cMa<f@茉٘bV(,rXD@a"=ut`Ѕus--{۬mޮPp`Wxt
 <34o;ڠgBG.h.n.siiO]{) ;p{boUUyeVv;O2G{1ƯfYCv!ƘJΙ*QOcn9OV`<\K(t]08{*{6;Zs'!lM&ۮ5ZeAee@Ya/ (;\pδ@-9n<e(jDz{XKpj$0Qexf|%X|Z1˞DZ|&#:Vp`F&t}7A$ ^I;C= LS_-$.I;a×ލPdKKَYOZCBh͜imuՎhuXakDeKeg痕MUʩa`)J5gGnΧ<ʈdrD*MV
=|*o$tqw^ڢ}xZ[WJ;JL?Uj|QQQ#,35bj-:MdAY=ӱeK=J׿l}u`a8vo.= (:\;x7#m+ u+YcdBY$TW"CLY/ZG|@GL#LqEUI0UI=&Glۓn{IZ(Bb6[BkseNOeruxJSbU˖Ok:BmдhWڥuOO-Q	I7N[(~Z,(N+Ua|yjpHww[s+g5wқ?mH$0DקM{}zzɧ;;d&FM:q::CDM)`Ch.{>Dd
:.Tf6e2 AH#ɨLpZ|YdW_Ri*!a⬰sOӕuzrhЕóU壼xlOF6lA02rً -/{M'y9'B!?8gSף$0Y1JjUoZOw}=>{eqj(	ϜKPc͛oHE=hk Nry=ΨtBN7{<c^}z_f,Hy>Ny$3}fkzϖ_%K};PfLhݏM
5Zt!H4e-ׁ %NXa%ZcWĿf-|`K(Lp_WV񗠐+R'Bp)v/rÞl8')= M>p.=06Li]Pzqp6r^z#HP~G`ҩGן8Ri/Xg~aObLl9
$عӓǗ8)KS]{VxΔ⇏'/|ൢ:Թsg'svγem{߼ Rms>xۇ!x=>|g^̌~(\i6P+I-r\0|l1|AcY6 g;,b*xԁ˃P9Y|"9$HVj#ֱB8f':K#eP$g&$h^hHp #tg0Db
B+*,[Y<f[3*K	޹2ѕ:M+nJmn>dزRϰx˷u&AdWЅsqp>(A=s܆.7l^VpI&xçWTrJ
r0o_nRAFo^q2o佢Y]`tՊpԩ|`Ix`JJNF:%lAB}p.R-ꑤ+Tǂ!4P LI^.)(-%_zW*`I:_UbuwwY:u*o8,0r_2^Q@?nu)hҰٸ[Rl\jtu:]2fYΖ듩ot
So渧١SmW<g^U`47md/Ջlx(HD<&D5H?ayxYyfnobd+>qN& kVsNte_jrO8N cmH擅abG	r$hw5	6zM	u\X[t}۾%v)+f?abW`lqb=bwξLa*lYTvc|kĻR]#W3{h1J%H!!WchY6A3V0{I`! =\L<QCŰYD,E(qc߱FKJ2ϔc1CM
ga\~TwhE@s߆3H"3$,4fX,I
\hf^\xjcggM5fzHZٳ4zm9qݰes1uOzshe@X?Yrxv|zW7,>FӻoN*	+{0 	o.Z[PTUOLfJԸ%XH؈d"7ֱkLǨ2fex~qC3?Q>aqáҒ0+?ޜ^2SkX=Ө9po()m`
-9WJĮ҆R!!+[gwz6_JJe&}Cz41͞4N(/A%$$>LTe9T('w H0nX)BXNbtXFMy4ѲY0jlP#E*)c? Y"(hAZ	b.ZɐhƗ2I%7;)&4^IL<~iBr<ΏldhIKH3UM2elx)Ӣez?*g A2$U~>"pGIӜ4g,
DJf2ךKhXTCR3Գ7++*[i1@ ( 1
zxT!&^Z0FUHW/̶@R#`37@QlQ)e3 ` аJY0Wa*T,Pev[M
z[!8e2̦32_Lnr3Pư?1z唗h!F#Q>2J+e&u~:/}') i~ `e֖
cJ5 2VC
@	FƍfY-{P\]`-Jl0X6)(;!$VV Jbj#^j^/YMҼQyr>,>4ktHP)w
-4yQP,/olNQZ]`PQVidbXV@sCު9J/WN9hlkgd\4u9fTvPU,2)h^f j]2U
P(jYE 
B+C9e.F`0: jS0
Ȳ怶V54gkV( \`W˥
]Wmr
Z¶VK!vM[E*X3Jq U9 2 ~erѰ2U`N<YfQ3,fԌG*p hРf6,KT)B(ycdiDfUU6A!en--+2W,ª7b6Y~~	:J޽mSK*gAJB6]gS鳡bTY3Ԯӡe̱HSUT{1W1<C[$a4a9</c܎v!w	T9KlW~^=F[x, o<C)7%[3ih}H
c=lTNy`~|4wUsUGuM8,[vkwV?yeˏf>k~}Z$z?~mĥ9>7apD8
y#U7a=8=E&(X??&|Kjz`[:YP)m++jiKnmZpx15YYRUX/6pt_š;2;;2qz0ZeaW߬5"rwC黮9A~Ӏ}n>iG;DU6ć4Sm$)kc*B̳2%v N `HS줭e5`9H7̎*B.v9]9;̼_Y^У=v]n_	[Rp|.k0FBt8y/oS2	ޏ
Ŷ^"/47 fbC	:$Qb#s,Eɲ}&L|ƐTǅΰxj$ghX(RoA{%<nIكoZ)}#Hnl^jJzo_[Z@:pҚB+Hn,&taW5@[3$[r8gTMGMeeCIn(*N[`偁~h>:/ioj,;D"W[o((Zh7Å=t )x<eGJQQ]=WM2Fvv7%gh@j4رP-6nXƌ-'%έ3Zq뛟y
i2z]N+ҭ|L|WӈVc
?:	)ǀI}Dul^u|-S*~ѣJ:VKgŗYoՙu/ً(P*5<+ᶌL1w9EndMn0Ugs,^qgUr~A[>`~_
nX^#ŮyIaTN\
$N	"<D
!3'Gb?Ų XYZEx8HQaE°d! dvzWa5SZ І$ȌcBZ8F9&Tcvqz:s9\^|`kB ϲb9B!} ,((=F#.ϱcddi.!~x2ig  Z豲 i4[L+}"4Hj$uU& 2n+hMc$*XC.K<-XY.CWVE$8BYFvVZqd*M{eft%WYV/7VҢ
%֠ϺFL/3h強)P ʌJUo\EFY]icXZmZ<BXoZ&c)j* +fV& yUK+X h^4*;jU/.d+zUh)$qzv=$^D]zdnMgdDPK;Uk h-;c<u/q*vЉu]NߌcP/n%:63ΝrF[Zٺ⵾*q@9'b  κbZH7],5iu2CVT׮l۹&K-(cƥ[%*f\R0E*8:vܪqJҲ=~SWt>st檶6~b$dVZ5XؼCUU	>塹Gn-f5{;vX۴(/sT픂0:Ekm'yBC̙<~Z5?}{ɷ\-(:3־?.?~k-8:n2ŞdXBcqUFq=Z uN8ͺ@,fʟѢenD'K{voG_v(ٽt]sm'e/\11ZQSFl2#/I[[6jhzR%ؽ*𓎝nZ){<嚲Y{T} 45vL/0͕:y2Yۮlw,_`zLcW9Ks-.jt]YAXD_RCH█$_x`_e7bVNٹPIoG'=sp,-hv/jG0\ںp<YӆLͤM1)hR"TTIA8U 8ױ̦ĦI?qGiM1+)3;"h,8rN%h6"h¹FzYRg±|8+}h|;L8{ɩ03Q}J(*$$"<R,ZhDK\qBԉ-QT=N|緉ڏS{u#F_dR,(.t&=mCG|+P8(i{gߞ|=VigpɤO#'
ql-5r"<aOS+β"s4q;orlqTQVtm=c羷er_BO~[eV?SQpqJ52R,lx]
ǚ	CʜdO1ߢeJIvkA[g3!Gay-\dJ}"*:WdxUلh aјj_ٔ	ߑ
rVg-J Y H=p=yҩ3r"-*-@ƾ먵xq]͂#h=2΋TT>'a=A;Ksusq&,fYEe畗LQ,lkZDΗqоgU	/7j;@"Qڠj6"̴.R/h37;\?ECdՊ-`=/fHd"~UdEBdУP=2G8TB<4~ٴ`Ճ5|\b.~s3^vۦ憮xQDbE]&sâ7mM3<cmFto?`?3{{.u*H ]4{lc#qƎ\;8NILvOpӶyqrArt<gn)Ȼ5!iJ\P1lO:"@q
_2nC߁38H5TJ$IblZ]ݴ*sa:.MdKh[!(|5뚜9	!CfIRB./ڭYl0۩~YDRK)+X
H 	j}=Iޠ/NޛEIL,BJ,/Րrq8nXoVjv}Zëy:	Qv+e炑/]sfQJ7 ٰi\)o=YEm`hjǎQ%!0tc<:'!}o? R>TRr'Py5'N<5{DBi?^+a=?eN=~ǠwD_OP'h`:P13諏5?շkgp(v?\lA떍ltY߯-pRRAX}.36;t/ݛv;S IS8B?ငB)Y,>a>wTL	'o:JgMDwUXѝĹd'>$3?C1zXm*113=I-ԔCLӫayyb,zdbq6G9joxo6$
yitzpM׋:-'B
>HA"l\M'H TչIU}hRy$f9]k
rG&U
|~xh߬_V_|gSN	("	٪i⺅l%E6'0kL{8A&u_L3ӄNd&k<?5!Czb>3Z>Bbz^2g[5$0[nr!ɮ	&Y֏㛷 ]X`Кw^"I+umv<3f,Kq5t]Tw&t[>b舫
:ٵ|ݝ7xNE\T )1EѠ4O"(sP¦	x3-b:p3>0ш?VTZ&IFj%zI5=:Q5ĚKpLGk^&}^2&_I1 ˋ/Y'RZH%> ,,nwI=?PkEY#z
45vW^ّeՔ=uq|+౉B;y3D)L&v 'J>h*Ѻ>s}*^*yLbl9d>q/1~/wPiSybW^ne{X z>|S|O$'G]P \97TۘoCYy9}'iͪqETV_gG\xLDll@]F
l,@St7uY-nʽU`ą|1{ucnXsyp_bs\ұlBn̝s)vҢIz9ӟcNYLrTeG΀8~`#myХN?9tnEE.\p7wE#gN=U蛜|ĕ"t;ۛNI[`/89iKr'aI(+8W$MJ1=ZNY<Vh'X_@wBc30=AnӄKec8o)iǀ:o<$&/ZDQv f9]r@!#? 0r펜>cן]z×6?y"Qu)m>O!եF@b|n+"Io~sqo_9}Vƽq=?O/(Qwј1!WsED5a &i/o$A8!26q愚6'
P!U05hƫFԥ"xA	g:TxhL>ScFKï>63rHJ{`0I87%  N}[BHÊ}U֙K#rC0v1K46vΪ<
\:/c0-*Vǩ%rNpPa6Pl*LJӏyVڧȕr0墨4OG:ٝf+\{IU*Z8Jʢglu!y?gk$Ѕ-r%j32pN0yl5-OȵfmIn00%&LSTr@t){iEٲZw'p*4dR3f@c+ @S!sobcx)e|Sl+.Boi QH9U\aezH "cߔӊ6٥!zD XW
(T8I8h#H$ED/Mu]4Cf~'tDoceyײMIVp@?-=6Ss,e:3eZ5R9+7.9Imۇ[X~g}cUlmM_a[Tsxg!nUyMeyG&B^mc r4sʭj\g1H9T1rFBCZ0JPhwa nĠmMP5zނ5oB͂w_:<K1~MAg]e2tՆ{X[.JvQk|jM1o$LNд
^Ms $
D <Mhl'̄ +n"q L0bСXM}LA>WK^3~VO\n}F_pw>WCkQҳ׌n^TbPƵs&-3[Ag42nbby5͞dkKcUW ԓ'6%O\jl(<gMȜ]G+3яg7Uo>k3%bdQ)lju%u;g

Bi(;PbL?Ș(@UKJS)tkf:]3`uG0~p-a%:A*	͛L f!/k`GX7-i1nRt46E/g$(/u
a mu֒RQIsʠe3@{E~^Ot3GgyV	T [ͻ=ڿʥiu5;Np*(jk
 ^9dcpvd 3uxBJt,1:Jh}-@i262!)Ԩ%m0dJ9H?Ip;/Z	NS7Ҫl+dx@0:$ߪ d2 !jEh`_܏@l'.QwRS;P`!	@7/Buy^@gM{q＾ɥavwY< .Mso\'¥a3ˀbA ; UAMt%TFTC9`1Q MCL";vq\
4gDsnC<w C*@OPA)aMh7<GQ >	ɳZ?Jv ;hGT{B)Aq㣏pE)HF`$@2'a|>/ bJ@$c*K ZWղ[/Djm(U	oM]n×5uǗZ5.XyI+93ZG5ni!&\9maxSDǪ;V/y*k1'Xum~eMq؁sVw4X&,oț2w˦CS{W;_*h/L}{ߞ鷅r:6T\acS,)Jtc=w:G:a){$!|:jAJW飩pPRYJ]'KE%-Yl@xdΡ8y/BczUd^0 [
/>@aPFA<1|5&TЃ֤%YL#kA/tCKК;В~:]ړjIY[=Ip>d-yR<HJ[=HPcC (x1C=LO$V<Oyī7}pkY{:4`߸0h8[{`mCαWoيR雙ףz>x2^?+>RZ6rg^'G	vf^;Q7tџk$`%䅝'@6h_S̉e<9$CDG><pΝ@=5j}S=MC\zUaKijгKξ//%dIY{=DdKd>|֕yk?cڇaܯ"T9F0P> !x\	*=\ʵ׾޾k>b4djCȆ<q#{ps[>i>Ye"X&_{晷vIrZZnGZ9p##G6>~@n:DpE{
Hy|קj [	
&qs`ULG NMj[ۄ0YֳtiҮ,l-)\cD:MNO2F9ĉ*W?/o>cv:gˋ|5!\3Ğ'ލzflYwR~yB0fLv-@x"͓ :≦$K$a8%ADcD7h Ǿȼ-5S4rR_5qe1o-	CA5t-ž"K^aRUFlФ}!:+!]gre{i"hġ;2L[N_sf8Xݯ5#5蚧`@)G/=6k2P/Fc8^]HR*y[	EHn e1ߨin?=Du䭛C,M,$Ww/YGCZeci456\Ǥ-`)43</M[(0"5Sr)\7NFR2F
÷1=Wfߖ{&˚墯RN;cPS[&J$'J`*(Kh&Yl(0rR'ՏG6QL#{2hC [Q/(b`ErLv`WWIP=h ν~y/<\A $|4<AYB*S^@iFpv=ݘc7Y[^^;}_ݰg\6շ y;ۭpn{ ȟm䝹_5ߘ/rN}yظ=G*/.w4P̞p j7	%L|q4%`Fl:
-pA>vI7B_@!lr.sᱧÿkdRxRitj)Fc~f^̏ H/[V2c(nFҶm0;
Ao!8NrP,(=m>!=	s29@6%.V&d	<䪉犅c> ,u$S*LVrJT+UB"S+d3Pu:gAlIժCfT*e7%2A&QMCQi!f|2+8R4fqD%)/i4fZ5iR	&zH$J()2J<pbe+*j<rU	جT+I?>rN!T`AjL!%k|U7ex`~
+پTTOʸ>Ȑ	.D[z}'U߁wxE|c4~NT~rZ%@
څ+ZsVTe+zZ#X>{P^ttoAҧUf hO੆Wc j1Z<8tF1ƌGgT=" gPçA{<e|d<vVR)
<'|<] Nķ@\	g9(#Vج+ W0e@bƓ\BGƂ!G!r	AYwВSnVFDU.MAV_Ҫ!]V7ר,3ɣ2Xh[T*J+^2::lҨJ=ĶD.ڲH0[~尣]T2i=CKasq&]{,4/@8z:o5B	Y%C!8z]N# kp,_8fq `p?ш_mx#/ƭuh]N·[~6:hЀS5wc%eA0fwSVj2d{Gfɠ'-1m䯫?1KN"n#qZlN9@/٬_,Go'ͳ%;#QkA4<ܯhOͻ㥌ḓ͟GyWA/m`NR)|:2b/94M%]7הKݿwj̩k(nCE~匣f*R_zɦGGL\ZB.!ڿC7A5H1# : X,q>%a|)H~tXT
Qp|vJS&q~ƩFۭ#.i׀TʆlAߪj4~`9!'`ڐf
0Y HAHΉ)TB-ਛߴI7Y݌:֨n;VBLRS$qyW|&d94Jt%ƘV0o1C2CLHqzje4+i	Gzid_|ѩk>B\^R rEN~Uͪ%+ U08ZM=1-&x,Q-}1)6Ըj.LGTx4j2_"A|ow;|%4cE1Y$9vL6B3%^  jHwgNmڹ3wmuwq[G<SY+jH,۪/@j/Ŗ]WEoC_}CAX'zn25{خSFω󚄒c.J9R+*.&B2h<`Dg8#:N@GУ>KGq[thՠ-}QJAG}}{tpX7m{:e=ؤl}	@Qݐ ۜ@^s6f0Y.O
u>O.$"@34~LpÌ+Β.;}	@MTZ9u8=rXn_k5Dkk,oDmKky%NS򺖒ںak
~'@;=.㷢oXWvL7Sc99׮^c֟LEˆiϷ@OBy!?34$B-ϊ~dY39ss؋\=ϝ9.X֋	d3z!.%"Kgx{ۉ6H)9&?P7!l07Y)za;W`y壞l}n(	5nH1L"bO66Ĭ$.hd
`/0󉚊]R8/@NzaC#sZڐCcW9j՜P!OfLNw{#La&+8[Rsp~{qCnhcgw:<ZY9	i:mt˲.cHmY-XtNgMǒnG_~U:vz"ͳlnBi4"$7%uT5Z@n 5~)ǌAm,5bD(0iIwD0DI$7fX((^PPth<5xz[yμjiMV;}|Z{k}V]dbIQWٱzO<u*-+WqԖA_<hM#NUf*CJk@uGt*A葋Yu7G:Ge(񨧴1cB/}oJrL]e8#gLN__ok($MjA\19wz{3}/uSR阽pGi'wQ@h7|j18K-'ڍG#tlJ$~{#A'}BXp#8Vuؘ1Ec>F8j"_)l4,sk?x,R9fUE^0{i%dwKh+ipڅ|O6Z994D/-4b$ѣKec"s4!f}I5I5-jO-fsZ5v4X܅+i +"#/Px:.U
r%h: t55j=^A59FXFo ѪE}( ntјW@'p8'j$t淸wr߾ʊW?Wk}84fLS>3dݢkNyiNj]qJ!gݒKՔGJVV^Qn1g&=sW썏;lt,CoY7Qd^`,wXa3^τM~!W0PLKܗ]Q;bPˀƓ=|CMk 7<tw8}fRo7r
8F"pLU1%I
\pk<L+f(W`n^^F1j.>%Yo4-z$Ғ:>Ulyrҁ?CR_};ڎ,&6|G7Wvt,-j6̨2esad?x zF3	yB,%nN10f(,YDʸmqoɐ=u+FiZjRإW۶2u ֱ!̨3* [#RȰǖHj4N_êQ!,Zb~X6`{ZSj[Y0w#%J`.n9E2UoY 5x rBҊiCv=#^՘|N/`zym{,O8Ȑ zG4X" VZM![WM[a{~=XLHJݍ>؊흲PŇ@	ʕm no{yg$EG^ݑ0Ft@[3MWn}'隕oۿY -70@P	GYu
FVx3}ZW{K4Jc]3y`~:;ӽ2?\iyOO<Mwe	4퓤|O=?cF/<^i5pcϛwJ9ˉ|mԔQX;L$=߁+ ֽ>:pze!W5Zn;<}ՈW==g+i! p>ݯwRPBes*JSwi
]B{؏	oZ6>YY
g.|?9mh	$AN J4pxKpDd	0#ZF<d.KB%Jv=P+z Pғ* d$l+Ƚ'lug5J2Meb)8Vsw-6_ӏZZrV-)˶]\n\.7FnDwt8.rryMO#ސE"gB^ejkTдW9t VnojN-Ou,gSmO)hBD^_gD[XllmKv1~~3	$VEL[T3JYXvkVeA5G	 oO,3MaO7bL_w.GRnwZ̹'%T:D:u.'OA wAJ9/Qcb;㋞hTh%Y	 : 3ىŜgz=)O܀6Ls #AB0g"H)MGǐ1GMJ2jQ_cR4I?3cKǍ¯F҇6G_KJ6Ѫk7<p5e>ti-7R`u[WS-8j(@t#	F@f8E	{xa#9X"DLx}W?CA.bΔm8Pd]p8On9zQVx>9`X[|o8#Wd2M%OaQt2l,K YzRT2ƈAwxHΆGm*6&o}g p	)O	<J|FҶe _X/qb̛!3HHO	LD{f}Us/c诱/^^լ=.x?\q5hozI]=33^F׷DOOyukqH(4)W]tM0	a:B'CM>JXF f
bt8
WH5 L^49#a7WThs*PGwDu(e<77QbMq	J%LJW2<(oRƞ+1
B\S'xD~	X!bs@mA)Ew(p}&ECLo秅R\s:	{R((E2sN*;;G4TP_̀%9r<@܎*yoK>;Lw ZJ/";񥟂\'3R傧kb1e)f׋w	:F$̙ߨKM܍G6]7nߵ3wȝ4!:16%-fk谪֞5n圶1z8mv3k9!ZKOg>lЎWjըo;abzk+CB[m?-Qhn˞G
KA#RX)/;
JPNǆΚ54ݬp^dK*F> Gİ<	;wόb=hB#䗖"~ӧ@m|w}&*XmL2KA%rhH`qQ _(HBp'_P('l+b4Xe(~֧b Tbž.^x%+TO72[2hP|E`իmRG(/EI٠<,&کA/[@rK#2Ghݍ=UT69GcT͏4
<QBHˣթrj[c	eЍc|IO~AޢBL{$~`/sR>)Y
O'@OU ypC!"O,0t	`IP:M)W1=Tc	Eg1eGSuԀ\^%^I_L2/͡T7F`,3j3*+QL.#k!gΥ3K;/[6n8}
?ލ3ʡn|+XR`V^P<6RBOd2O7deG^J:n\\ҹvm+qFv7H'_{IRh	v3`T5IMSy:<JiO76O;H{0}RÉ~xU8!Dh"=eN7cQHz Ag16O
'E)pNϊY\k;4:MrrWHaz|@FPdS>y	([nf i Roy $ 1ZhO-f?dV̢ 4ôPҫfH@|'X4)nqKO.4 ͡S5Hh@W<2'a@4cbCsng(*pOT.^pEW>#K`+x'X0%aosO/gCU_Vq0!:6Wf	Wh\;ƛ]8%tV~4Ė9saqѐ>*O*3ͯgww֜;}CGc͚mn]$ٷeO9Ե6|VW{ϓ[[ZU {7$۽hKFJY0ER-8\&,GI|Q
V*T('s0HGQ9zJ]B3JZyzs" 4l^ `t\r ]EИFy5yqM՚~x1RЕ2y<y|j'pSzܬ<koteyy^қݦf3Xa\hچST;LnQ>N@2x 0>//6kڗ|!G2x|\BYDn f7TBoAQGd z._I"- ygq{kĹ$ɂQ`CQpB:qhP8f5o,o%C,)T ;]\|@j2]x9MY2](2JF>JiSEn1m2}J"Ǘ}JRLFi5ۭFaʏ5^dTL0̎h!-äAjάӕҼјo.͍f;M<7E-Ç?N!mM~`޼HQ'd\40ߌÑ;'|?:߽2^*TlYP.YL)uR)gX(9ʔ
]r<ÆfɤK$rB,<cԉ\WU!*iToifIӖ Qϙ4|:͛±6+&yъΞDTEojʔnXh<dDYQci<j)u)uu 
B%~glFKY_
'$t*A֛銱:5PBsnMDh?b?2Rr%_%yCͩ3ڧLiίtւdviovY^  "sN^S4	L⚚`8<{VscAxl7o/5uo/_cnKuZ&~&Z[OVcc{V\<	=
zh$¾lJ4ydUvk6RTl5538ԄtMQ@:O
Ɯ<v6GѶGAei[[)>@? ՘Wt`99vj7`AFQ|4!昹$x≍u<}!x]Ԝ 5pqs_fȍoJs4f&0i'|O%ĸ>T?n;!|-iFr΅gr5ȫDV{!Lvm&AX;0A+ѨwQҟ'<új"!Nl|XxjQ#'sD.Lu&o^nm\ѽhV_sXBlنg)ttwfbk~:r`6'Gˬֿ{;j=f>5$|8}MnKn&z8aF/K67|D	c2]|ɪxXT>mZK1yC1}w/6lz#ޒ~_qKKK=@noZ/o=qVeᛶp9R'. }Y{{q"޶Jϐ
|.(D_*+'\.?hu?N'᪪@=ƬTXUU^?:5/p9)2eeU3ұsX&:tq,8qd>IMLO-Ow&bLU+PNU+zܪRVpD#uW_vU\?I?NƧb`|*0gr$F22{9K8BT(GK&7X,YX3.A	5 $@k3W ^J G ~F#|8}#@0C
fS~@*i1@=P&z4&)j0trGQsRUcuYi(tp:6V47T2?m	^MW5+u<<53	Ta?e}U8z|c;*b<#rN`%rOxFA)\&?W+cᲭJf.Q%@Z!+3Ǚ-dd`-Pj(^'`uu5u5F}qa̲e& ihQTbO(}\Del!C>$UBџafJǬw:c$Y:}}gkAQm}]tv(b{@WUWjTYrRm޽pQ~)nByuuCE݋kfVh˚rf'x>7vH';3퓊ZʤydCYfoegߥXE^^MgJQ6уO++)-L_bݧ(/'ϖ$.KU&³<_hJ}⾑P8'Gz3i gb#%X&0('~/^f/1U}R{ VΚD@Crt<G:U>}FZQ*]L܆s}%-`
vlIRnG
ݸYޜD7MqѶ\=Lh#;7/[G-]zcĪKH/ytۤZ\GbET|fڂ(JXMOTtV| MȡD=PKqC#~ H{-n!RQNE=/zuAX-6M#=PKCJ=82rʑc4 DI('o`m~O:"̆aז W#gwjWiw4\#~I0Җ͛̞=4Vۘ[}/4r2KZ&jUay(xř-= kD/f^1IYܩ+ԕ̑B;TuE6rͺiUv%͗\3\sS
lɷ>o^
 cWRaYquEz_Y6i@3o?0O-XW%ViQbHݸ<p3ԔK%JHhl@ZՆMt*Jld%(7֡qq"Y4ۉ'6:!!`49r6ثgd* '|8EMJIeSI@
is:tR(ۛ׃9avƷGq=&G4ap7GGM]щpCEߓG}KY^5VkYs$Ԥƚq/plcjeII~y\l¨Q!"a
!ؕ0.!lQQՉ<QÕۘww]Fsu9]B+D}Bd
"?Bŗ,HO
dǒ3pu.#)"rq-vn9V+UpܑI!261r6۱do	m9<̳d˃[cD,%HF`vO u*zaO/qKR?-^)L^l=owyhv͂Cim<,X?m4'nd #0Y*娐vmr<@>Aݽp	juFZ/$j5R2!}?G1nBA<aF啄G@vYPTS&NSDl J$>4s@@JU!'TmkYtv?07?<>J[뿿b{9+G,t\\6(M.fan.n3ۮOz׳9F^|)5^? 澲obzڌ˖<#2mίۨ-:=^lƺր<J|&LBDH< h`I✟8~O}I!gHc=NG`dFsYhH{j̤>9ɠY6~Cs(LDiKs/urUU
/hMqӰvsJ5l[x]Y/ybXEv{)B"[(zjQO^ A{3L*_*hA[mX}ի9O_6YTFԅCF\.dG	(O̀=fy3k̑P^F>I4
-ђbx8M?Yx
">!|~S&ʄZ4O>ڡ[ߺ۟ԗ eMkd[+MO@
*)joE}wC wl+G@TXbc ՘u}t|痣kv{^ g.Q+yq i5P{ x<XL-l	='`Qz~(Z"iy}bOJTq~-#UCYoe.&
aH>R8MC:[01l(fN\pQ;wbÇRNXԶrU*%W^
?%yaYĘzBI=&(ʍไ}<O#?|răf$o87#--7͟4݊h1:f̨;g?5ꋌ}'z-@n/@[F,|vW
XߴYOdN=s92;	-8&{d]mX
F"T8'FI|Wm3ea1͛լMm(Cزw5.:UnME}Vڜ
9[nMw*E[P*sƎtj9V84sL#w{JJѓ몜ٷwmyN%큦΃UA{/^/e	#xoI4
96`{-mYӒqtsvC`nQ8`]0RprR	o@Nv`דT)O\okvUӀ7vL?h7.9saPz^̢2:6*.S :x1eV?cN<@6`("$~7L'WMݛo;5RVEjxh
_c#$=*N|ǤoN_;$.WDoe-:<쁞dڕECW_؛/WIzXShT߾m(羏dL̄c23	d $@ 9n!(`VDw]/z +.B2SgI`LwWWWwWUWz{\V{VžAVb\pd0DM8p'$C$'`m([ѷ4'mb#lb3*$HK|Iy<nwլ8ygZf6Kͨ5LoU^Đ@8.qFg@AdJIOǻ4d
lIOi	TBun
Sb>dCJ3+li|i˖&ibC@|]:.
[L_T}woIuL4iAeBBXZ/?th9۶xz`}cHsta%eF33yL3~f3<<i!i95sV!f&_tH&5²"BD$ax
AHaqNbxc1 @0>. B^[L2x,`5@ԃXRj<æOT-j֕"NSٳ4ysZzp6X+ԨlDEl}NtA^'`R\Xg3GG`
CfA[9WvѻNxҧl>}Ɲ9.aWhc>@_5;j3#^A0v q-ٿSp)CdF|xF*8Fё"U\Q&3L#Ndi<4aJq3`گe9GB&.ImMf Ggh{:'9NTՠO^=*e (P);@߯>+Cށsћk/>[:!
1p~]މ9r#YQ^B	.CAW<IYhza}/p=t_*8zkm%x#oHw~w#<cX`/>Mg	OLLH"Яshzo$1iZ{sᤊfD@FQx,7'l޻ 9mjކ2ЉǾj	jxv3qY+QX\uiAs	E7^x
I.01ۉMĳdy@7YakN}j~o; ۺV?fo>zmώ?uw϶.^}nٹOq+;eoBweܹUa۶yVQ["?}!&rλAPPQ(8h;8]qcY}fgnr^?KAf3\$!4}kO=Esix7?W_=bw]KgF#sB"ڶ~LԓRg SƔ3UL-SLof&1S~Y¬z-` DD,EHވˠu)OZ>INpZfu	Ԇ<gG7[!%LJL?qtNUjh2fٚs4sV1Z `\Lp%vؒc[ֽ⺖^@k{ZS2BPPlN,Mm5+3B؎U41;%KK,p>'TsL9}dTqz×Y2<3B[pGV"eܜ+hJ-}U('| ,oc5\,a8<Ҿ;?H;h̿Q~ee>x&/g+rm?Iؼh?Wq,2!h6_`	`"{}R	7$5"GB\!}Ϟx僣Gf|4Kզ3k7~]7uSltL;X1{vqĕ/~ss+7nX91C^/2&uJ`n:c>ֱfNmF0#&!m@]kM%~ˉ.3z32PU~<??BU82c_"i vIսߵv~>}$2V'T wa{>blbRBF\[HjǆpP4O7<)3?Jlm;Pfo3.]4 W3]u;\@iOyمk0(Oe*-d![\27<\΃`RlQjgc8i\ƣvn5FhX wpfQ>1 ܂}.+CYB
_㱨yi4^
ӻhOwD:,u?
;z%0 fȑFQpH>#?)U}v4".EڌOׁ0 f8Ց#a} o˭-{=8'YExDV0a5i wj,`,Z*.w=6B+[jhPLAT ]5~pSH` 8UH#'~RX%RU W)
RY:W

<v2|#?4flϷٳju.}8-hS89(5@hBN/csHRT35J8`đNXYmwu[;oj+٥e9s9e#Xz/7;d2L0L,RԐXx	.m8D"kǅU5'ku*vdҘY?Z>|PӭkLm8!ed+2l,s8p!m&%{%Z[.^ oñc|Hg (h]y_y[1K+0Gm[ZpeBsL{&b">·cw8	F5wa&J6jNq!M53dEUI^^|#:~8zA<ϴm* pZ[@]ךsyA+V͐p@$PDQU,,YY4<RGR,ZNL%Npv8""	s+FbOě:OG@d%dUs
P96C_m`|M4z蝅](uސRt,^nacVVu2ŞxO3Ljlv;~3B	i&Tw+uᬬp]Q5H4#V% a9}Y3A.w_Tl|!s$ʈ-mp[JJ*q#@wӥNgCJ^%z=}6Rot!@5~1oozP˚	{?{'òwkP'ZJd]Fڒ{ebjr>#].]rѾMoUh*xq)QٱA) IdqW@_+/Gwt&i^WmyҌrARyw!7<NjyCҭ4!q`tTf2ט=y1H=бB֞
bpQ>D!nҿbӞknTޢ/cmRcn,&wn\@܈t{O\z ҫ;G=o
]R`B{V+5%3eVy,W0玉___i,i4Mym|͛0t͚jr)e*zf$]1CɍHBif hbʐxtD&8L,["AuߝD1Ӌ٧:{x0Ҷd֞=Б^sŊ;a%R{7G=H,7,1ocփףЏexX!4ÇkPiC8XkWeL#36g	#H>6$.=̞P2*
6-֘Yt!|ۀGKk4g^x]R]ؼ7W;i$bG?ƿhӃ,Pd3HW @)M&+f||\2+6~ɩL-qIxZ2lJʝjT\N\ou8u̿EK*iۣ^ȣ%iqB;󟽼lu}v;,@r;L,ge/eb㣧=)_hs0Up>
d8WOOfW8h{,P:D({)t)K
=GP?G?[&a"tb~z\n'ms|vX?k?q\43&#>
tdA](gw=><
BY"hD1\XⅫݥaW>yyAҦ@D+~{14 ٣4Fpw%B\'K	CDnlXT,M/>GyI.ǉ;Ep⅗D*ǡ# ~ȗķDn\߆ȇD!3v]9/TA=Lug*Jbz'&O83t5gŠ]|֊ īx|`pҲa!QB u=*.v޶%[<s8>R8*Fֺ/cOc\L]<od%83uxb_uE]p
M)zc7~k~=M,͜SV4qáɕEi?{}j3Cx}j{flDM/Z74\ݕ;=wd]1/ߗ9`j#*;**GlN'Pf	6DAaD>T+Q, &
!>FT	=m}:emoA)JkygM\Ӽ3f<qdXN\y
]~ׇД-WdܑTl7V:aU[S\օ>}塳[CYtɛ!d%&b؋kXBC.SQe&66v$2Dl
 !(ى2uG=K,gGKp@M&I	u@nJxbC4S)	>&BUʀZ	h'1{C	`jfѐ`,7?Í?+i8?zJ)e3֕?]SCIB7Z-T>5@D%4T*!{^y	jbR櫻_ɶTjի2
IWL=dQ=`!=#*o{]oI|;I?VD` eDU'L4=GF`$x|t`BN@01?STS,2d&Ww#]`j.&u#gjmmC3^?ԅ7mm` b$aP-mcpp5.B9B1OC?U:˯OxZsgY/:\OƴHˋ)MvbJG#L=}B7~?Lz?/ѯh8"hX0[;V:V,'m$ԯsETX9~kYLl&	ztsR)/T[?|2O;-N;wΫgEe{^]oL9wHrKaqC.`jLH7 0L
8>_TCv<<i6HB4LAN$b`4Sx˕%<* 397uM!/篖@|X#kM#CY oI6B@<9q,uW0L`"ڦ8$B2
A&3h	#ٓIO^=R?V\1EnE@bd#ِ/! 1oހ%qKi^"p`VyRīfĉbϛ E:T/܇y 3E|r,Y8%^BqݤTB0 "/Q|Pf5J= #pJ!5 4L5֙?dsavAb1>4gS7olnniX>~'5`B$X8{2h+ $U&6%eB`B&NO:Y(#h,5bQ$eY	|ZQaqӘSPQ 0,kq!}aA)j"G8mO8pL-j5M!,HnsT<[s&v5HÐQJu5'{Yϐﳦ:U@
jǾ|,8w2e<9D܄)YV׾κ7 cieuk?9T+5ps8M!~yJN7`u5>]-ANX`L'7 FC#44JUkRj49jY&*O-ď[ձ1`V[<7%ǥUT.oϏv&j4?Uk139/пN"Ӣ+]4>;ʬTe\mTgHi꠼6ɭpT=g9$pБ\&d 6Eͪ/TRJfנtS4juzdMYr؇W?1E+`Qt,]W6}&#>ý*-WeW39XT4Þfn̑h3tUr.oz=zAj\.;xpR-1m9U
vqpok~+RbQm{+TC* (9CJUET@f,JԧRed:mPk-W(F_,]T^e*',
b iW̲P8xRz礯Mwwp^@X1P.yo _\w?O:8L$BÇ,ߴe-%S45m/_^P>054ЗffL4У}]j˒GA.i*u*_zE-#fί7޿t-#3,JCDKʤ,I% *H6x st"(t
bs=$Ӊ ӘOyX\tlÆ@		JH(zZ]ֻ2=5BZNAO׿Ϣg&5Im>C{`2ǆiyW6\p-&ź [}#&_?I<{6z&7a3&1-g#, ]4V*6ϳ+T]Wڪ'OՓCXhފ"V[^yJS\+Tp]V13 %WqvV蕅XS<E~X<m)?sg]^'9t.G"3~:	ԛ'z-7ZޑS*RT6o62x_u9|{7, vAxoJὮ-A|Hams36H᣶h|5Eb푝;#4(Vgv!i!"ZRQBtc3.2̆h\Rq{tr&)( d63`qo(NFnpzWc@Om	ڂ""rC)K۳T=˦s%JK2ݎ/vpEfv2ZVRf¥1_E}B-,%GwKti#&^'yKDbqV+pLR*ܡ)~x$&14;T:x$04ߘ!*AНlMZy%C}인a/7eGīsEScq R_kHSJ`coZ̠]`o橣'M:W$<Z9DkTޜIx$"?\jQ,rVV,sh0>9`0<5}o?sz/L˛ڙlݘjVϣ2!Szyx7)vr`A	:ݷ_FcQ 4oVj d76-mj̖pkyV:fulUO
ԘuG]g9@åYFaa\0aMڇqP/}=3G@qɥ^|W*Ρw	V<?<(|+VaޒEۯo6w*bPu%V";)pNZkk"$GsCO+x\ߪn`ʙ"!8vItܻ$p	yBa\%ϫ+!:+DGfKIڰIϘv27A,F#;~4T6hPhSV;Kw˂!sw+n,gVYPgvՇ<P@O/
6}b#VujMIuBu΋6wݾd`dPb g\⌏Np\u&!/`; ?csmsk3GCy,7ͧV\0Z<z]|XQF~#Ytwå%(ףk33kKO/{.,n.fǌ.0Ҭ~>\T흜wlOwI"8<]cs<6]CPw0eěߋ*!PKbuo4[Xrs^nn%E}V(vZ]aZ]84{̸p}~-=V_7fvFqD&qS\]Jnܵ+p-dx!zbꑛKXbhɑ=\諦;z=Vr[U𡪘TUVo3>nIsc,r|tat/:7"
T(arl/pdڛ'2Ϗ$~GvV" R	_R
niLi1v4o\-R-.#$ \-+UA2EX%ENcOWO	ꉚm>
|o%ms6k E+6b#վX3طט3@1<'ߞ6&sۦ$wA\4PdjMƕwu\E0ӈa̯D1K!wHqU$!2m2OwIT`	i	G^rfDsEGTZ*x9wL=ח{{eUF0I}j+zd2<wCuHou`TnOAOo"^VRSmE޶#}~.}}ݺ1ni=h:U18A%ⰬUbuWjpoUey@GW1{#9uۺfQ;ܒ@rbVGa+M\? qd$jLg[vk	r\,ys#46?>ml~ryNl]ҪFIۤدhjur&tp>L.LT[="
dqGEIx\9zos}œӇϲ76_meU%3fzk:oiFӖ\mz*_ڛT%ޮYJi.&0V\ wYHIXWRHITF,GKX[BHf+֥roAcgnI})t_9J3.TȦ[7BOlڟؐ5/.='YhW	+'7<8keIj6>RSVǶ?x
k
z}%k]ɀ\vؖOj_ߍfCZ]P]=y
F`b}
M+@ƕ2.%F揖odKC.s>$tI)tucjW.:v1{<?뉟!lD~@!"<kvSJKabHC7˧)(Y4(-crKDXH3?ہx<& ENJ(!L3i/.'cAx|hx}	w֚
'_X mI\5wwGLܒֽԋTNKr:6	D,UkTqJq(`""6kqxŹuN4LximѦb3n:LL^vC1}~6Yjn;Wnɭ|SIuuvKϫU6l	|=
ȱ>f<ptD10$o!ƨe,#V_f6W>%,h+,sJlyBeh!7jw~}_`T	W[RFF-tExcTCnSlfzˉԹ0(m_n6ЇzfNeЫTS2jR|JM+c@ܬˆ=FEUqȌTz}J=OoӫyR따5S:\͞P+)iK]TW˘hg4-xYWOHQYL0^%L"	Y47zzpLjx(}}^-9{"7-{hA7X`9OC.:VGsMJ÷Lܕ%gDz J.w>5(.Ls./uUk	NzhZ/k1܆iMCܵZBTVJT/|{}e~~(׏TqPrJF)0=]V f4pT;Tj_nPtoHQZ۩N	#,WB2Ȁa;!t&D`d'gƚ9hGф":DgDdϛ@!;"$8MA,!yC2z7]xhqmM2d]y-Xp,cنWdqTÏ;oޠQyEg|ZfnU>>N|/Px/ѫZM%0kp9<=0@f8xC!'ĵBâE[qEK\ˁKgo8z;O!>:h;B\&5XW!uw㗍#퍗7EW*ׇ y{p2yE桍 ۥ(t|S,u˖{prL 3rFWj^|{3563=L颁SPF3s%܎gq:ô( mA?9X	h׿8Uvw:ٔc2D?dLbo~6N"*;xc	=pa\O+`Iׯ8)xZ~VGji0}f9<S]OV~Ѧ[9jZj[N
XNO#2bGT|HxW%Z:#6LY2-2eF뿧l{|dM5'C<iRGc
*MSc~4|D@y'(x[O0DAyx\;]$j?<N\21O}"<f|dBU골͗@Y('v~ @Et
E~'Z>i,x@Li<C0K<I-fB!nm$jpQ`Ip.B*
FcL8;Dkwg~l6|9 A&|)5S@]ŎTKA4 [+b9fb6 NSKi1L>/@o_k>?T,	 EtĐ)RLUm$l9,\$GfjN (k\tVI\	E*D>!=O
;yuFtJ1E-h>Hze6m¢wOwfS9U!b@4H1p'g|ztqTqhTtA*e\z$eчk~@g7`zd1
Jn n]~BwAF%w6́nf?ߠa䵃}JAlcjՂR*\i"|mrGꈚ'Adu+%f.zHuS7Bo~2fmEWpk0b00t=䍾쌳^B߃)fҎG;Jxow'y͏͹T
^nt}Q%GM8S׮w节z
">RO(X1!Xj^ f?>sՀc7?}P,V|4^Hje|fo\./铹w9z\34;ppe=	ԂIOjV7b1M)f ?%X
Z&^͂^%ePfgԠC`¡hzs5qʋ]QDfH]˒6oEY|A/ѐpx8"W3f
x_~N\skz ],AWϢODA5h=3_B3"fDHc.<TRp}΃CC	p@yrKV;~=|wHo7k'8BMֶԮX8a؅:>M@?jp}wYr?c#G_'2_cVk3:?$XؙoorM_~BO3n%&{~ao]Bagn}$YL|lD!ĦόAuHJʘЅ(]h M1;Y';KFz%{&*$"qq>kcޟq,de'ke3ObΞ.qq{zs`iOͦʦokj/A	>>w^r1ghhU=2]:pG.8oߔo&<5O!7v|YX>>3":N	
KA}3Iz[\]vDlzh*˕Pw	PH/>K'؀QMV 2"[\., B񎙙_8ЮVw
m[aʐ|w;뫖5C|x$\6tcx/;O[x4 Mͥz&]c)Eo~l O2x1y`{
s&S0[8m0h j\2v`!+I`iQffaUEU&4gӈE@qZ#lʹۯOŉmMT>v\
f)6f@uTO<&*[\j6`.A3dp&3g5KPuv6T1?XԬD1kTlo~ypSI*m>TNN/3xÚgTKX bj!Q'{P{Vlپ~vE;V=+1/G_sNJ5ɦ7{AU$àPT1a٤>2ܲgdW4Zn,XHBOfV(FolpԽn{R]t\[e@{d(#&w)3N/}0ɲPDci^cI+7x|sQ',IetQ5&kΆ\#2ׁLCI>G!WMhw-j%;{?{ԏ"F)ٿƽD4&Q?HxDEg}1EnXk8&csLuen\Q=ۄ	ms]~v6cD{W_-ǎɢjQxfJ	.LR2xbV9j~elGLbWq:s4SmVLY{*0kt#xZ")(c󕸶vKflNXA$
jX<y4)γtM[D^pa:O4gwt+v{:FN
t?A%JdA
e˷gwPJ-01 c-;}M	qr_}[:?Wk8"ym"NNҴ9SH-ˌQ^7 Lwysf},{0\mSOl8ޙÝMε.\cFON=U_~Tu/p?vĸ/tʓ:@bDԝq &0L6dTR| e'x7vRxxl7J	a1rCfjY<qk^E$q^BCBG(:<|f|̧QGSidޭvhjoK0O~.<TBcjpw|#SLo|(zi/[đ#I˂1Z0vlQCqF7*e4;woش߃rjO΁BEU&cy J(/wdWw6;itW@zWj)3`Pg$[><swq%Q*?
n;;>bWĎln?	2$zJ$q9YҊ":
H=o<-G_iy/SZ̡*Re`T'F Or%Ld%ۊ>sg?
TH6,SmxXt0\'6}	(]N_&0sS~K!/q*aNnD b$ #giDr9:y99d[Y:o^jfrJ@zpMF/! =HYe\x(I6ǨũeeG9Lzz#RԢVa5 'mLKPD=FXV)ҙfQˠlO  xc`d```ad+`I ={&r00DC  xc`d``c@d yy   xڍTjAݝEW%EQ"sQr	^^骙8Q=]Oxh=0&t: %P hiѲ/mWx0swcņ>x,!U&M{4ҩ"/Tr'}Wr;w^lhόrscƇ)ѽ^őrDȷAOפ[S-U1>{qC˼ty8TllW3=͝;fy^Ul|8qtg_ծ91\5w-j<-_ިx^l޿-{5"kxf_$pJNyD8/i&	cеzs^.o|?~E}|mL>N9"z;V0ocP=l8vgSYFnARџ!
ՁYf5>ٟ&}j?[)kmzRuwcĦfmf|-?)kvh娀SD?|]PɯC{"8[Sn՝ÁJ2l~Za=׹.|({>gSʓv]
?ɺ~4dsG6s=Q_h;"  xڝS  `22*3rJHTqĈ)PX"23GD#2S\9"cDD52FY)GhdfdD:m`K"j9QIY@QK׀s3H33YS❕38+29~{n6&;:17k.wn[lvq0/oZ@c0q/(f] [ ψw8^XІ"8	J ':F ,A^G-^ZLIIJOI'M2QbO&%&ےY1oqqdjIRє[jJ*#UP0	Mhi45 8222g:.]^^X>A[_!Gx3޿Rs+Yٷ*kvU0u5{u\Z#^c%FYkk;P2$O~)@)dJ:.*Q}#ٍ_i `r鹢\Un[-7Litk#x#{c(O׷IIollf1Ζ-^&Yja3ւBI!PTY*EƢ ̑qɭ̭n"Up#(Ly*7!>?ډY'	>jo"YUL-)K2K8%ҘRqiGi_v,P*kb'֋{(8$0I$jooEF|z_>Gefe~~Sx 倹:[ K]12@Fir\+iŇ5###JR<ZytLETU,jzqLụk䚮qqG-psUsğ,;W7 #&?rOOn;HUkgxg[\gIggZZu?yussMz^wg(D`md_h2LKKKfYupYzgIT^A_Q+W㮚z;4_Dκkk_sn6y3XW~V-M]wމtuڄ6,;s/^뽾==:CÚjzC7>D4橮79u<G<o~z\&cLU?ei_"^^*pppkןGoooo}8]؍aC] <15AR_PTH;g׍aMxtB<<ᚘoKKH  xc`d```dPg & fB0 ? xڍQ=KA}w(	buXXK	6JT,Kr Ebkiim/BXvn%'Ȳowf޼wD`D θl WM$8n5bOOaO3[<ǰd<kǢxkƗ	l1_4"cjG̼}?#X6.qMѠrEظCKJ2bY(eErx;Ut%p-.:$M <?<_Ǣ§:maZΌδOjeѳ+gC,a}S1Aoo,39l:F,.oʠL*ZC84 =LLCW*NgytU(5{2-e#ujyPAWzJCC\IHV׍; x}Wݪ^Nff[,Yff\vvf4p0Iv;̉3U̞N/E]ӿf?\2;3enܑ;sBP"B`]̽`=v`w`o`8 `8p8h8x8hB$]ppLgpp\p	\
p\	Wp\p}	0(`VSpe2dj@İK+cqxx<Ox
<mp;w]p7>x<φx<y|x^/Kerx^kuzxo[mvx{}~ |>Gcq|>gsy<_/+U|߄o;]|~ ?'S~_7~?Og?_ofQ`se`k8p=wpw#s0{޸x xxGxx.`Jlc$<OS4<7	7㙸³<//
«xhfFp#[qNE}܆a˸Qh|>'IdoSix+ކx'ޅw=x/>g3YlsA|Eb|	_/W+Uj|_7Mf|߆ow;]n|߇Ca~?O'Si~?/E~_ůM~C?şKow{ƿ_ow
YyQEQeQUQsbX/U&v{=^boW'A`q8T&G#Qhq8V''Q-!E[tDWĉ$q8E*NIlg-,q8G+ą"qD\*.+ĕ*qF\+׋č/n0%BaBn,,zZ7Һ֭iNNZwӺ%eR-r#4m+*#E.*UnL(FFP梯~Cd3-Fc#ѸFMz}-ڋ##,o#gTi67(S<cPxKCwg|s][ҷr+#*jp\	Ϛd1*asUX^xJjԎ`10kzޤ&9?(oS١Fpl?VhdqܾQ51-F*${kFp%g%c熆kE{o[Q\vS^U7<!yvFrXZ)odA.3#NpU5Li#*+:6k#|',vSHoڶXKǭZRn8Z
KTQ"`bMÝFxKzԻ(&vߵ"XGޮqNY-ǘʎ!NC#*QbrPU+UEp;0|`oZ8O_G=ZR*}VB$Uoa]ED68^`o'N߷<IdG,2nUi-hO͐ʎ[x.@26aEG$x^
5v'$ĕ?tPgBl7OȦDIter逜%,47I$.ΚOf.ǐ
I.;x 0]
R9͚q*uHTyL4&Oz!";a=bgOC13U~);?EF8	Q0%32BUf&$7
ϲ/sx7ABXqDTlh,2oP'8/ =aP쉊4h\).4=ʑxm|lMJD#퇮ܪݾ~y#:jjL>W>i11&ĉ}EBfC/ Qme6TfZҾ=̈?dzq%3Τ3
)Ev@)Dda).#5]ܟejLZTڟ*^HW0#fȢ%*(x9StG0cۡ9)nO`bG!oV٪h8	SÅxRrZ;$۩SUށg򎡅
'6sUҷ[뭼-tLxӺ.&ﬔP@Y60&r}	D˅SHnHWS5.(ƠHaNo	9ZH̓"dPaκx 
&I7kQ+1儃2otz5t#>:6uU?޾}g+KQ	ٍs;̾~xmf&<>4<PSx4ۄGˆz ڶPhȬ<iBf9)2Qv܅nIH}7%Ir:	(,ЊMgJF9I:#еk͙-tytG8#q8bSL%aF?Uiήqdacäo6zV{#
fpcf:ұlʦ$md:YXQM!^zEo,jcқvc@ީϙvdNPI*ݵhYk֯i'W|RXkx G#^m&pSR c x!eGeپc.{Q	3$lӣ.рNcN?;<vK4˹NsS{nEk>p_HOqz=QOwd6E+hs˅ٶq|mԩǠ^1ǠzւFl5hrJf;΍6.\03Πz#ꌨ3mBZ3k0kJM^Ɉ&#hۜNzC钛eZӚ'o-^ūxՖV
=i%$$$$$$o͈6#ڌh3nuƠv=u^t<b0ˈ.#X-Eub]X-Eu2ǈ#X#z찡i$Q?0E!ITԹhpŅE.ܢI&KB\%!Y%!Y%!Y΋4x#X Y Y Y Y Y 9|&#h25 h1ň#zK^2Ll1B2y̻d%.wɼK]2y̻d%.wfDLl3"}  b.taDLd%.tɤK&]2ILd%.tɤK&]2I=Fp$	$GIe.5L}oѕi].h6k6߮UD U`                                                                                                                              assets/fonts/fontawesome-webfont.woff2                                                              0000705                 00000175720 15242037122 0014145 0                                                                                                    ustar 00                                                                                                                                                                                                                                                       wOF2           q                     ?FFTM` j
\X6$Dr  7?webf[f!84DإUa fGELn @UU_A{{))4c2i|IN/ljĨ:orAh$W<@3ƣc+VNtЇtz8h::W6¼e'[T,d47na6nlsmcбliKwcf3&ۖڰ&Æm^ރO{-r蛲]~CkSMUfH>FGܧZ1XaY[(Xe_oS8s@՗깩oy5#dx*LTUwdT.W	:9@(	EBL0TP@{f=usF/tsn.\v]W_]3Ojۭ"H&~?ݜABs0֓?5;8(w1 @X%A\8[R`ԈFFԎQ5hѣBJNP~D`$3Wg,Wg{*Ȫ!ӌSHߏtץ? +ɖKdSL7Ol#&>щ@K<6u'﯑ Wrq*TuF8	ǰ1f㘗T}UֶI<>"pxxy?`ByZm?*.XVnjS^ςjx39@7t	:gS[Y>&,8. 5)weeII
9^wjߌd;Ɍd')<$0[v	ڲ~fz;NvJ]F *S=bIڗΟ7ukϙ)L\wknvq=#S=Lkx#k䃪!d̪ /U+@6NDy֤t8ڜop_@ U H % %T AT3IQG'ݯ)ٻvO*P@(&ىR'iѽiz՛buͩ}qiv{=鸇cۚ6Gt'8[z;Xзtv']Ex1;sԥ&|,EYPo9ڗe7[veEh^YRu$cAC5dNV:ȹDmH+2"rlI?i_L5*$յmmb-ڨ((`"XD"@ {BW>J<@[@D#ػϔavpixd0ȕ<]mr+r{B0_;c%`uC]lc9<4ό̿Zs>݂r'YǓg~G} .r{ JC'ީk @@b줂#ĝ\a6'Db)-g_?[͓NID`&	bd*$
<[~k+xݴ$S*(?o]$iaRJO p~#|rKQ/ؿJńaIvۂ8?^meRӑW,9M)bP.${i.4Vƙ2P{{7ܐ$#➨D-yF<p-([ [T"n$Z(Td$JX9:%v쀬aȓg*~*R-rIRC_V+ ,Z]yrLB0]&9څbD-sdKjN!!Sde,~zybɐ
4BFJ 9]tf\مd}Opb"=\ 0IX@>Ѱ	i.Z-puLOǌWz=gSf!aoVEH쪞3"Yu:)?q!7;~OWkG7_}V9f(oujg;\ՂFj((
/T-AvwH!#L&v5{G<-w>̐e4c}>?_xwۖyxLa&&ZszG{||̖U%+i^jpśZq0CP1Npm9%*V#[5fc挧Ӷ4?0a8ݤ!,fߐoѓgx}IPRmL: L+ۢݜ:Bt~]7]_1'm,uaU3+_s~<<< c@d)doe*27,!I8": v#>QkaS~#b=B=|9ee!d႖p פ4hhP<b/of罈WőBaǰZw(_|$W!l$8nr-(cy^>P(1$[^d9;zY)Jn}!ܲ;qi+헄H"1$),&0,7z(٘5^7Vk2)AHDk?(Zqhю~f#Md0*
ߢ)Α*UV(_jMKe͛s=i劈bp\Dk_VE,fNbSY1!Xvy	Y57I,4zcY=X0\K,M6GmiE6LH!HK]ZD˂kJ&G]]1`,#4Ǭ5iXi1+ID*-*^qgRr	X߆o}[But_~D"2C2}7sS PxΩt8 D,hcbP#w:7Q}sü~D`kn|/|&*y0I(rlUaRWuTLi)$aCE.Nt_%tĥҀlE@pT0u0Ln\U:56q{cHj2~pImjh`pGbx0r,6juZ/ٱAxOahkhd&ܠ 7`NҵftS#vLU	ͣѭkbn
751cZ2%HJGY!JR@0t_|fcjMkhc}++w&Ƕs8J{oAK&Qm~+LYjao2ܩz
U'*"Mqs^ٙEZiȓʹhSiΖ3VVYkR <NF:(yPuue*Y:YcL579X{kTx1 .^&WeU+^JcʚwQM)?)/)qHQT̑Ո5>%ͥF]Ϳ5n99/8REGkw ͦ<ԎK p֫g2Es%f%<bFYʐG3_%[9mݷ"|&-Ja-ռ'ku^Vł4Uf[I>U>1^鲊O[MEO_C9ѝƓv,P/t]*>F7U<*n&WM*'<%PXUl&Vq 6EDʌWjWApD4jjg>}k8\)-yO},%n?)/C}*PC%T.A"]{9\3Byfbd>Tm}ɴ}T+񊷶0TSYԽm |]DGF_$rňIW\q{IdzW`w4Ug<d"UPIIUIԭC_GC+}%R!yC9Ηհ 냥},US馠mB~cH'SKYSy 0ZƨYʛ~V+F<7<z)=#[WM>Kh&mV=)kxqӇc4p_sfM8l.0qW	k,幹l	?1#14N/?E.;Үt^oH 8X^6uCLdY;̀HCY`x8xca`0t@@|}RoVm%Yw?ėw:	.^eZ̖-GeûϪ,7aý幩bU@ѪQӚ۹gm~bNkc,z/\M5,.&Z|pU=<5uL_[p&4vL9%Dr9Ζ'o`ҋKFXcm抜:SsnݏOj{4	D
-VB/&8~w\޳FGL1墒;5uf(loN8hKbZByCN@@~06.;TSNg-vWy 	AއU8F;kȇ;?uW[}u,:r4QHE`SpAiǡGeͬÕ[d}6ZZj1qtfiPm!,k6rGԹsm${,C])4`jKT/-Y&C{	['ٲ6LG1Ly[hr؛:)hXT:æ"PPR<śazoTQ+a-o 9+f֞PćցMlͣS,}F D$sKm6tG$~?W
p6<3#.NS\5И#  |T\o0Cq$7EP"vI@֐RNiȯ=7ܤpMkpFQ5--s@WC~Y	Kk<7IF/{",D|,KsX2Z>
0F1g "'T 6*V<r̈́vyDN ) W	sRȲBs+ate}_;/YPGфЪ#a|b-Ud TXCNUTtq/W[5ia2U&SC:VI?uD/y*G_%IBo}ZY$$[rQKM	vo{>GV{ ٹd2Ry<H dS1)x¤2av0Ğ+B	"
~VQJCLJNVR,Kc$ֳȄY8RpMG=|S
'Q`~	y4<JNܴi#f~#*
uͥ򶆯
;cL]tAGy|󡣃:W?7*D3ߔ*\)J)J[	@xӵtv u18+
x9{,	"t۷ܩ*\R	ĈP:4̛2׉ۜBd{cՆZquEKD<PE?dݏTfJ&n~A_4@\`%?0C(S+yЯb5:ǖpC()chٵ?$֟m0:r_,`~AӎhPI8jQbg3BL{P	nqLڋB1Z>\Ru<:>[7ղԺڠjM\Ri<P6vefcb@?WKuÚ.}z9 h)<xYaQ-ΘXvϘYCcgJls$cbbu;pe.O߯Gv*{kMԞd-e]c"!E:~K<\=NDy.w{A=	_xXDP&"TpMG6a%qC!*4?/*YbUƕRL ;sX݋9*V,BQ`Ԫ4z`{EzO0mp&{Nj'd
Z#{|A3<C'@"Jڅл(>{K!d3_ǳ#(J𱔒@ g odեw܆ķow.Fсp5	&cC#JX29[*]k_@\]C%A:dJ/CeG߮w[ZI4R]_IggæceM,y8<lml2G6CW!dn~G(OK	śYT`ᱽp#Qe9Cb`ӜtB9BAmZ3!x,K"u
*cc//O#`5Oe(G$c4iM 4Hbd@uu۔2)W2r%aW%1]OƃsӛTW6*$ê
25pw)-)/}:nFde#]OHרieCT*w|dH ;sqE6%.B^s|o=eiPOgFG:2.n W#C(eWG9ljwMǖdWE|8\fAo XrФG~[Nl?R2qmH|Z\[+>(	yйd;V(y\RB¢,z!+\FeSBU^8O\Lm{Zd4zZL%[+m8ќ.c8-8M[=M`±佯l8 ,K8LpPDd ^Ps.`KTq'dQ(Y=LhNӴ-lEh1Ц!Sn`[@wZ-VehpO#%$8a'>d<=N-I
ϼ
,$
#D]J	ħ0`wXk?;Hܻy  #nxw#RZ.
TS+XzϨHw,ӏtWj]ep)"7Dk(6hh{+akUMeC:8S8ad8jsOzn)ś	_ڂ1PlYղO6^j=
~տ`iETgb+Ƅ
s/knbe#-~r?	(+ko99B\ut!VIҦrtV7ڢxAHp6C iֱ[l6|kϧsz [:hz{p/Je;P/p޳1}ﮇ],r'^k~U6-mpK"W\L	)b+Lȥ_;/Mq rf'[wwѬ<t8OMl
ttn
8H1@6k]޳.WDOz=P?pUJTRN4`f(L
"vbj!<#<,U`ocZP_X&3*1L~z. sxN;zO)άN,W.d5ӭ5^kU	5Q0'=x_ݱ	].w=&oXnw|sid |lU֧>
"V"D~L$C!jB	K(*MDp<Es)RKn	[@,؇VYy*A1e:a%rB~JHnbG\Ͻ*J]>! P¶'ԅqz*DJxPwnC<5yF%X4R1
)-ڧAzSO60U_lr&MJ
.((\v# d@Tdw2~}^
m(Q@لR`iP
f}j4z"	kLBZKoDEvH<$GL3%FS>)B
N EAbSŴma?	:bz]IT3eϪ p	HR9K,>#g	uL2ÐiZF%U#WYa@1nil-(	5nmH''MPj9V Cڀ4rl+Z#4E\־Yl8	btdXa?\u8g@<V Fqp@GpܵzQ#fei1⑻"[l8Ɔ<dNuj24&ub(ԓ5Ҿ_DpbSzwȮ`}L&s0;Ȯvy9<6B$iTY7O)RjTQtPE~>d_WNCɀ>+xH*/Ll<$ǔF0CK	@0p6"mokw88JZadnUnrmY9T]&U4Q	8JKd:1LN`@,%78r,*gm>i]ZN;ٛ\X%ɪvEc	xP_.OG\QyI)3]0e]UطxweӢgKzpG`ӫjid,ߛTU[ni8o@-_Mgg'?/m,mz;:ޝJgؘ-TydITV,C	askam'VG%̰HbIDDj8CYZU>8#COR<A c8WKΰWw8ZI )FJIhOIW8,~zaB+{AT!7lM<]\M7(Um{pka `"ޗYR(giĽ	fq_:dGVzuh>(0ZZ3 XC?<$z&
>^Bl;MR!y2cnD'gǭoGY$di0EK'{_MaTTq_uW}` 'Eg"z^;ṙX2F5zEоizzãK4I+(/woɥ})B"	VO\(R_rQTIS ̄"D*孅b,`nlOOi#v<yWc>vǵ.Ża:@K(SX3U)s)1;Q{@ӛdVbv?%6-{,܇B,Ϙߚ@Q::?b|m
uςyK3>Z"|-4V¬i!<@l񉆔Sny\Lֻΐ!/HKZc
$(Kږaf,O>K%.҄`)\	suBcSk*\k kmxfMq3]-:Ď{[iaY XpTerv9+-sr#Rˏz^HI?J76 I	^1P..>`FغPqq X.}b?Ec#(UmqW_/E&xdsIS Oĺؽw0U YLKa@ēp4ۢ˖ۜ*{johM wkٖ2QWQ:51|^T0z/;3y%Fҩ䭫tm!^Tn+6bUup &턆AAV=]]0zfQ[M,⧞ܴYu:S+3ձ#1bQdC$SL baaZ5#MU\c9gH+@-hN~rwVמ)Cn[ZFpq(_oD	_ ,J
9	7>	%X!*RW>'XJb@Ͱ{haۋI,a\4<QL3
q)6 ]@,<"A_42CJ};"
B>K|/L20Kck^W/A±qklGXsJe4UHKS!at)CX̆!=VU{B}{Ċ\jf®oD3_-9<QN'UH[eaʌ=&޹8Pd1h
SmoّSN@/v5\Gaan{S}7N} $n5i<I}#|8|o>]zcs!3$2;[>bb])QE>>`Hq]esE]Y0Xq.Bt@y#-77~Rq}}EYk	O"o?-gQtۿ1us(O(TljOe֬N<Qɐ!l5߽km[mT	옶4#Ie-ٮ	Ql% 䌎z1 NӦytR:٢ڲ~3ڎhQcbJ
ՍfnTy!ICqȖX>+~eK؏mФӋ](:tǟ[MzxWob%tzKiMt?1w>(]1 4S&@Rڧat,yٹ"7Զ0;]FsfB)Ym	sĳ_t@>ec.q]ϝ7`R
!Ǝ8A%q Nu δ2@\pՎ&?я*;أ$н!̀ҳUg*B7!.;kA?DDJwF:5eȁg<̰!K&bX'%B',:sߘ3,vkEm̪VwK)&:RogˡZڽ*Zs,RFy*&om4|6>>\N:X4=3'ᣓ|5TbXγ>pULRU+;GDyk5/*{1,Jmͤu?:$́;&CΌjRY>=%	`Tۋ|kMNt@n`1D{wGrSZ#/25H9+}>ac5֑玙d-Q/']f׹?z?}!A>z34idq}O7x,/.Yd3pP"ktvkJ8=F Mߵ>&ji7+9\p&qGrGOnב,l{`>؎fo8kff7(V6kf+TvbD-ySMW~q,-;oCj=յ[<B㬡AdR7r$5W<⛅>f)̎Ǉɉ9cI$UPRY+E8;+,T=2&z~;	4Q_V|>~j:=&6쁌ӼIQ
jA?ns(NP3'(]SIsK88-y+.+l`0*!j%[M8w06;Q#cˢlurf)\΁ҊN`ŁթAwP XݝWtH֜
R	H,Oђ0t@û-,7+8%NT|!Z<to_/)Dbb*KZ*{gE*TpZc X {<[Qi b^O~t?c'{8<0.a2^pr{
)TSE@b&]%B%t>efaUp¾y`nQYhh}qI5$(oZU]kB?~ߜ/D/5AzvN P,Cky"\=Y>4T,mp/C>w2M,=ddV?ALZftgXϘqM3]Ċ;g7^qDX
eHC:U &	@~;Qcpk+ضbQk,0mJ @@`9dn~ncb([[`uz|3ٓ2>C=n\AlZ6LWu҇G#ܮ$a)h
3LoT9&yܗ}(2>k!AHC|
n&hd 5F?G{bs9-_WK˝hii<>B/7R|Apۄp5k-29>4j*۳aeiv=JK|mkgC.CFh%|_#P,w}]2ްA&=67)V&gE t2o[
wXzQr;<I, diY\7:Zɏo'+WdFFA5h`^`"C"z_Q pI.&ofbNwh)tųt`0	MK=Cʔ:7<wf#:%J'N;$Y)N
7GVC-Nz(hVTGR0}ƻ21՟?_*}i87`SgXf##[z`2CF{0y^rl/l#{c/Gnƕt115 hv)PLL\HXGʩXLމ4}c&LH7e[׎dur;*K50MM<6Y[$GϵxLlfآ*z:
!p
=i8A"Jޡ槤OSp8al2I(ca^!J.qmJCWlz谧mvRAn2Lh#6](F%[nhvi()ϲ2)`<F|F'(%4MM.m6` Fgw؜."(2CNI,ŻRe}$Jt'~FQ(iXmI'xd+a4ĎTSP;LIrQMb:?&g̬\l:dIqzzz\za.MBi1l֫}G9Z;vML<,ra!-J $ x`䖰PJd8A~|
*!9WkNQ̥ޜ%u)=x/ޙ]Bc	lt#(?~D:r&Fc0x_,^`gOMO#^$=S*ƒ"`RgƜ1 ޠ.rrh΄vjd/wb\B/eR\_Zdo]L^Z;k=.(ڌz\e[FNw{,zH%3[4jËiv>3ߛb!vLL3>8C+E1ن(;tҌW>Au.%nRR@.Է/jy31zb^5BRa8|;ONsWKKBS|<a/wYѡ+DsyY[Et&	^Ic{ˤ6f!jJ^VwY+NM#OפjMƱH1n)j
X+>ӻV~Ëg*KGcB)wsYn_w ww)Y0jv~vNln5Q5Gҧ¡
uTɐ(bL	q:CPWdIa"fT1A3<pJn&=Dz4=`&<Ņ>ë-,b3$✓];-I+5QF$dc٣ޓ+vs *Z^AX0g"YJz:V<U#<t|lQC3ZS=jI3^'H{4F^4"5G&NXĕ:e81҄$K|Ӂ.P=&E941KZ:i2J vu&e?8 k<IbJ_=)yab>xNOFuAy1^&y݅
g0S\6*Lh63S/Ym5aѡ,[^-Zv,ϔ~嵾DqHGJZ9v΍{FB5->g^ٹ-߲̑$oPׁ#Z֨Mstb[@j_1ˑ˥>fyIۚrbVeݳ!z:SD_C%f^kvOtnyCjP?* t.{o88|p)깣EOPUs>1U0%X{5f#cmM&:%8?`v8q*+.g6+O[=6!7_ɋFIWY˜/hLVLKDv
=L2a"&c6+.JZk"]SnhFd=jfx&a"H8L1t.-y8GeYQẇ`40g`K%Oۀ|f40%*ꥼ-6]ӑ
VsH۟2T	rfȝ0g=0un~ӯrG#JIjSL|;)Hevqt1Q'[]zObȁC=^U@mg*nqCwX`z85RF#Dͫ*,z*$fZ,{4+ʄq8etp>K:rHR|*NRA5w#ZxR zrNeF"b;<LĩWYDċgz *{ڧ|,T@lQ&rF#fVݦ`E9OՍ>ScN	c%S:tI,TnZ,A]2qJ?B)	74uaLzEߏ5UB>ffҹ"*xR|w蠗L_$#2)I~ٯsJ&n~ꨐ=OcڇGtMPN;aWpW@!c	{Zx?CT,>sEO^)O[?37R`ZSY˯
_8J,~'@vJ^'ʱf+QiWJjAt%jLb?"u:u-\?QQ5@C#n{'ZQp<{>tΉ[ym^zѾh+ɚ>j3ɜM,ۯ<(74Fk;FWY+10.39<J	B\Ζ<n*ThKS]/=3ryM2y?Xd\VDѽ	R4OE:"A.μpT}lgZr;,k9)aP3$~W$MͳW/?xMn+radv{v+Zo<\?uBq6=5?}_L1^剽TwuT>tzhLxe[g#
rO%=U¨ytg<7(^BlR2!&\õ72O΅I%)KJ\6U\k%=[z]kvt|Ԍ/?l?:_|tT@'ǱDv'
PHbj7=aԬUUGsnʱ65cmҲUf6PC8U"	e.o MÌ]9Ⱥz:D^}<xqAFAK)*LkǥD,0WJ༳G}g$j]k^ևj S?2bPR{)U$;CoQk/i
Qzk{3zkQ(gopQ0J5`BlR)W%$$q':CT/ښuI[t|2Z<8*a /(vc<R+ K  ?T4K|q
V6,}It~bbւO=]\먤ĩ~wb.V~r߹g+=pYWaa%?z+8 BuLc*ڌs9R)v)(Ž\dUGc3c32iq2Diiq	4#q&DY1SyVY_-ȼ$Pip܀JkbbIY	M^z~61ubE}a.+'Ш9xV{ԇs##*&݉4]wNVeLyFknr=/{@ӫ#+:ԫKXErស'iM4bu|YtFHf#O4#\`ήE7X1=e7e;t
~y^rɟ?rE0.P
^nܚkh"H|rv0Xi^>d]qm$"*!:&4#HHs^.%"S-YXnw	&=ˊ5uDw,7PbE{[@l~=)pk떔f5Qqa$Ī[YE!Zx\ãrx^ }jGJ2em#x<0BdC}0545S@	-p <3-~B\׶#7\ܖlgP.uL;_uOǗM]F\+#Soֵ*W~09Y4v߬u/?T:}Nc/?zo}H491l/ %gs'oa Cdؓbl2ЇAip_Db6,qY̶Nh, A|`rۺBq%(@%-<\q
@Tǽ)_9F95H>А2fz![5-J'
QLJ^v8Wp%Ϻ"kcq_WIHJ"j<3tK8^lC	]߬U FX&xl|Z"qR|7p
@̣Bx|6Kh5?@P>4</\쓎<F}ĵwrc)uf҅6 Oh)NBO@V
1&W}B/oO:k:o{FQLteL*xJ٣K(hJՇd\E$6wru hT
?V&JT)A]zD_6_Y;zL';Xpe}{OzoGUzL0Ѣ
|eh&yȚGŵ~=rBP!8,lv0Kf_ N;L쐫Pƅ0YM>󭯾,#@!gAM_#{y_]Ĕ*Hˢ^R50^)qw<rDj
?q&qk˂@G;t%N'm\G{(P1[WI/۶u^'K%qv=(gЈt	'xiAeh%N	<HmV'e"ޣ4q^eW&0=;'οTxД1v'ŐD\p'."N#iMEem
De2	װw/oPahnYpoAwnW*eշ/"n&uyE-[1u#zSeٻ]lmfD!(lmxWݪ*^MdSh\q2ԏMK
_VXGUY}f< 7zu&V|.RoRu$p?BvKjoP-..T"[ǧ0ajcv30@F!hU҆YGC gѧQtL	gPd!Fݤ=TX>f9??7)	.:'on0Ga\/c>ʂ 
 U}CAq@rMdZQӐ~"Qb<8q''';Q-FdENrgSS;[XbC*_lsSuJ!ܭZ4hKUDlLuCLZ
!lÜ"laj̏ʇڟ
SD,L-,QpJ7`__-ݟWf0J(j>yi+SM
i{IqƻG|J׫ <HZR/'xހgq
*LSB7dRJ|cCu/QBr*2ڰ|Yt}sMt]ƜuE7"<lWOcPʙ\R\lȘg{ˍ,Kw|yWĐ*jn 'Yi;&Q.a^nIѸn75IN͔<W=fuM.n$]=]GM4Mb8ݳ|
rF`uƳ"OcG3ML+J.BɂaG{N,񹑸]Q	ifKs~GDPElXi򋃔\uDfquꐉ%K5&PHŤ1SfwH
$qIU](KaNIZ%vܑg?}m7T&;eJ0PdoiX_zER@XI[&pHdu+ZUO&adgR͂Pk#.:}i0Cϸm'+JG"4*&ǆۤ1!ɉ*q~Nb3kydʇA`Z1E:bG&';Ůˉ@ba+|aN?Qu1J',.m:-e_՞8G&ڂp'%gkohf(e$ySG+G7IjjJ6@˟WFk|޼VzrMja?V2lb=X<qA໸ˮo-m[>#r'gZYjLfhM9d#]ELKI-fzS	5,9

2aV0nD;}'QUu=lx`2xm
;pvM CMl?&c;5<n51uܤӻw4V&XQ!PT-OZe{oX~Q?j7AץDGbP?.{:W7v)v"'jͦ,F>9`%Zy;b2>/y:J AE_w >;(XquXKwcٛ/?tcnUlAUJ(vdmOXf˕B]3B=B-9, |!ߙ,ݹ;¼i-uubYŨ-S(G͆Qz]6&~9
<ŏ)WU;~uX}FFEc>G
PBPal4!r,clH,BNQ-po`V^CI6/B8!\EpM>;{b:E	w|*݌PTp^qЉN.+*=PETb:Ut}O3U( Wpd^PPSvUi2,0՜2ٻ8pT/4g]S;**6O6:h#ZGhB~iY:,lbܑp^u1 फHp>h$fSR|<8?M:+2Q@"RNr~D7ivG;m,O*э5!M(_)6Hs)Y; F8u=:`'ʙrý]JI!t/&GiWoԂꗿt<%j3\_kziⰞM!$%Ks(UC~]1g}g "'E}(ޘFJ<?l#Wx.^S2je(oѵhdꝻ5*_fdhuu?scEcI8cՋzExLG$'RE8SS	:nFg!
8Wef?|x F
"-lOdau`WIa|sQxgkwFc@ͽ6G.4=*fj]dߤͷӚ%6UB=
6v
 4RTӛwDARi8=%pUf-!C{Rݖhkp0/%Q@Z	s*k,Xj5ıiӫMꢝPPcX9WwKNQ2<lW{i%\e*Oֲ1f)g#E&(SWf$|-nEhs@_أNd㊹Ӝv!:%Z]ᑮZ=鍙S\W9c%-O@&;qaywU5.0)j́x"3&}N&A4JbY)BW.l3jr1W=A͝x Ug&&g=)Q8](lvK[ $"EwPS B_`Tوde
Er%-$vs5ʯ"	)&H(bO!|')9,h/12ʁcA-n>Sdf γpKD㾀Oqf&A
gfÌ+ S8w3003R[TW/{/]#c.K?tmt3ɒT8-%dLNJځ腥Sd|DUO\sNv&I°4hJ%$PhMQjݸ{Ŝk0rNm6g(ӫ &/:s9ԱtJWhL9kNGKr:4|?#\ҫXB	4H=nAQ~d[}Ϡ1
M\#G,Bl,ܻ͞Npa~`GNk{ƸiN!N#2
*,<l8ڤx2n{S Vw<։WKi)ml@.C)ŝcwP(c҆ƫ/ܚ=[e[ٵ;N׻XV{ߞ^9Ûxf`ĵMca2DAռ쨯	]fc`(y܅,1SMnOe8Hi!1
d=qрو0PA_Wz֕%=.k\G5X;Mu`&:JNh1O;bn:\qX9?pdv $2kL{nSn%&[,~:mSjo V>u7aKPVNBHX= b^U,UiITc9֜Q9\FѯgGXsCʟF[JqG1Jʼ7墊&7ձdYX0D}O]f:F{y:9.@T1pPxn u.O9>	8x*8P七R`bؗ$poOf%eݦ'<1%-ȓ=;-x6G==gI򘧄R%v9`;P
h'KGCݮ>Ի_'[skCZqxhqopVp2nտI>7]y!%+4TI(?4q܅H3AE¢JT^1v<F苙4!ydD-7Q65?-jU;W#DcoMhbO/ԒxS{َ3'>EhXElzNP2XTu}5ۅDc5`ߤ2)=!%.h[C;ifi}N2k3gzꬡ+s#l'%0rI.qs*z{@hhE1S_/4QcH4?@y $0uV`AL=ֽϓTX*?z4&}W7k=5%H{$%n\4󌌃߿|WC9"g<AxֳVAoE'_pmt,ʍ#cFIVN|^?[o>]XсOpL~EqZJЕͭ0NXa菺-VTbȖ`DS.ɀWWHth7yL,֋S}C	l4]lOݯC?c=5\JK)UpW»Dàbf~~Bkw'<	jc64] F<'Cj0>i=MټDM>Ͷ/dU#yضD@7:_Ema#]=gON޷H1Wǘ-*HŴKQdR8Ims-"
	n?:\m߼[o|b1zCon~bU082,;w|CX~BQ`)a͹V	UP+9!hDf́E29pp	9<b.,GpxϸIO-%_h<0&.R\5%g
᮳W	1
I=,hnX3Sd#;k}t衿ܝ|r2UHThC:T%_WvJ>'b̨b_L&QKI&a2bx a'a6]Qe8AP	U[DwYx `P!.QvyT $YޝܸׂPURGu:U`0)҉RYA.5뭢II@Di]b*vr"[e+Q_ GO`(d+GAUxߵ-	F9Sl=cԙluRX.&BjJ}َCٕƈ\]ucv~s>{Vd^03֍ߚ{N֡G5MRJϪ[<߇`Ձ3D	Cԟ;oR ]lZV{uBj-j	٭X4ͱ	3jK?r4i* L|ܬ0yrB$CF el/F@~X D*8KV:j#d?yG)KAd|zu<{

 a+Nc4: X0GW*S/cDax7[C7rŸރ VWo<pDU_F!+Y/L\9!8Ʉ2Cٯ7b?	퉕OC
͊~6 (vyڵ#G3\q^[:V,:AT#f|T{Y{:mƮƊ:YH#S_.8fpuXӹF~ieB6}qgmxx @$uZ:(ݴ(6?$I;r8>Z%s4EFN˽ mϢ\0ϲ)
)9)	]%<}N5}tT]=[=jү__9Zwp,|nٸk	 (w*Ɨڌ{x?) gc=HJ|NeR_MW&pU	@DsjVoqMW2!;mٕic΢oD$E0]O$l$}VV;\~]S+ZZ[k&'ut<靺OWwm"*}YQf<gY1p}뮈㡘N߇hKxIX:Iį:_~\+V	W4enF}relOV;QCUEعg{.:УSZ! 㠒iEt3K
s1'`q'/B2W\Tͮ4B:ra(]2ZwSzB}pB{e8]ãR'Gb"D
Й.!)@C_E{jp~u&'z5vh̳+ŭ65ΖI2]ͻ'/LN-PȢ` -hpfUpt_'E^wrַ܀D=Z$QoRi*qZY1ØEb7dMa0Fq#Ӏ{%D7|Y=gDWi RC2\z"/\aҳ3g<f)P1ɦS߻jeXbf˨;}X D" f|3P oZC|!8HA`ur氄5(9f'kn9h*K[{ÙW8Tz;_L5mDR`H/_J4pKl~̮`e(vWY`7Ne+L&M`}aqYJ7'[Y	'qcVpM+wbꡋ0 8_Xd1VrvvힰԬ%%ڜyk,vڋHEj儚猶r 3XflAܨΟɡSp\9SKVYRɧ(FGύ"$ԏ#9KF+ %V'%SpP܆WxvzDggt"ѢOϱmtRg&??eRȢְG;PNR2xJs
|
4iCn
!ژߠB pFD
<%)*s;3BPKik	i!r4 7#NȊb^by&L(EmHN]8˂݊uCi6 .PΡD_
x&]=6S"kx.c7#41ugVZvب
J4kzgBWzQvBeOq@Fi(\ -7Y] 1
XTL@ƀ@TPO˩<vC<轀)>7PV8cje%btLb	߈Be}32#2d.ش3)B>6U	0c;΍Rm=HU[ 5Xe$eZp	hLR@~@t([SY9xW'bif
8snߌ`uKG˷#4 .<n3:v((8YVs
܎̉}˖(nO2QެM<Vt/PZJAH}.!a !i?0$]#jr.Wn"0v^G	3t҃Hᳪ*`;$,:jwKm1E TC0 .z7G;,7W@Ѫ7o%0&[gjU^`"RuNܺto^'5i5U	es4n½I#y?2jDyG$o˔W5ʠ.ҔM)Jf	$Ь#iK@դ
."q:`p^Qʋ8x'i1HoUPenmGtdB.w[0N<	HQ?j>Hj9xKhOe>nk+*k1օdX<[)ÙϖbRϕ֣z
|ͫ<	BG_OO'ž[OƹvyX+ݻW\RKXar]/T<A"ğ|WXws! (<6VPB1s}rýs_Z+ׂ3OITl[~p0Y8(!jVg;Wm+Ȅc4 8ciY35'6zZGd֭˟?G;AȞ~IMD* Dv{+!QF0<1o12WV53y&<ǏUpװLY.~Iff?{D7t/̖\Mf p
w5nVV`B!~t~0C}ZVוx#z fj.7b%]-R( -r*}:,o(,;
KEA K]]~]bn&ZYɛss=;2E/֡Ֆ?Se+"uʟMqѳ?Ԓ^Ӂ?AۣqS
\Nf>L鋜aam53¬qrn
C`K'a<HH6o巄ArDH	`DŜ"rrZ|X|GWXܜߍ@^kY037N5Ic&mˇ/)ۛs8UaGT"yu)__3$[iw(*٘ǹ1DEǱl9m$7%$C҆tB.1,c1a|7i-gZIm6o?DqƵT|Kon>θ"Ht)~=`w82[ADp&)$ 	&Ey>\x`ik=a8J"X>DCEnyǫ
!9gg{r.!	Vr Lv E;DI!!Nu˫`n~PE Sj}X}
}.w(܃?n<x=7T_v;qG_jO˜,bpmy:V|P7)pJҡ05rHuoi2Ȑe~m㳥&[˂$kw:(e%{_7^yp[_Yh 3|8ZmBoZ.`^%r #N16C Ӣѧ P!CɈb記JsidI0Qp
"ǫ&ƥm"ryJ@$ݞ݅x)`h8 `BD'{8ǅ6)Ɏx7;iF#'4҆!74^9v%n⠌ˆ*KL"E¡PA7y@OQネ+6/$%B놔Ǵv}W;"jҠ	VFӐ)W;"إu
9Uq8Vonwv<{8`QP0--[xBByWG 	W.2lB"Y1`檡Bt-wr.r(3I4*#'.D;<nGB?õ~`k_JcOR|>(𴖖4	!p`ѡPM0/̸$Oq%'DDPWM@ȝʽR)E%2(d ul#a@ZrCC>FNyT(Cա PSٓLp[Mz	:l	EN0ӓ`yzpU|P.ƳxЄDK__g|6VmC Pg}+/OD8m͕>"toH#=$vf;r`ef4X{yR|(;/_ެ8|B2=Ѽ?+K*c}7nĘؔC6*qz/yiP(	Mr0*oEU8aE#cleߚ6;
ݴLͭ+[P;ueUVtx(
98g.RYD]$3	j*B ^rDc2KR\A9
zpG߉WwAۃ(Vh)-<+U8ɫY}^6*;'WDh'q^<ܥ>&:bF򨆄O*\Q:|Xު
xK7UJVj`e^zhRm%;WѬjMCRx孵3D3<,>'FIHe@jzR:rcw/% Zqjݖֵ%]I^󹣣 l]5v	9&"41r眏;2+V&R.TJOhWzRMDuLKVOl)џPp.qF^ɪ9ѝ*[p(J 3˪%и)	ֹլLLXjVx
#G^rGMiv'sa|mo-TB_^^D˅>$rG^~IT\=	!=^YߵNZM}I^.|2Pqgp؄ġX{]8<Y)F0}q
,yV<oH`vFy-%>Wrԛ:6<RMlt
vvwavͪ%a^R+%c}E /^@F*׮Sp&$:Tsr6G0=iŐ3}`h!z;S?][{	|IK$6_2b!ԧxT.?µE_{,$/2_#K=.2JZkshd*7޶LOwa&̌94JDe;\t8e@)$0mb} b{Wm?hks6Ua^{8mJ.;Ec+~рçb	KwA}g\xnO'(2xl+~ʭသ
:z7h:[Lv?u@
=+Kb%9-ԒFSz"JENKd%ebv,,MIKOP3gHOmj|ĕu5'w	MH) |aCy' 9:@( ?o8/[T5!"uW
YHSt^ts	p9b-԰~x[rW4/iinU0 R.Rn`0-Yo	O|wĳpR#\ЖT=c70_	9juT,#f(~9JzǱcR
1)ܐDs۟fy2q'ga_ȍ{3?}{isb?_ftk%[S܀%$ Mplӫ"K5Ӄ2 ` "^)?hMAWel6m5r2{Lo)ɨp(C4+,hW]X]ցfhFKgD)GƎ9|)҄?}LrzR?{T'۴ D=>$hA٤/B0bk򾘊 0Uҥ>sćFe^K)N3҃#]:7  S<ي./0g`^qic!G 2(A͏6'hb9{=nWỴbT/Ab4	$x4P{ԋsx={L܎.kxÜq]d8nzG,|%Tjoy!i ^] SK2gC5ǉ$(f䍌m6si?&HXsOm
.ҧ_7׉r0^#vOMHL$b~Ê1~}^sCs`:o(lEbC	n""P 'SYg¦,ׂA|6Evм~ٻ?䴰/; RiI-An!?j_Ppz]|,pUW@8DUӕ[3[K䍎mcⲔn@1ЅbͲ[ݨUH-'>%4ŊZhuJoH0_&ߥAPd[Nܭtoi\
>Ї#P
NYc	9_<yH긬hӛGys`nwwJyҩYKj"qOofeQtn+piXd$6Q_V,?Cb]L:2PuSHn[N2h%TT	vN@?ۜ>7uf)uߛAX7kr9ؕQ'5:x0
yv%8-IxscHRYlF:[e}_TGƮ{;9
<2?4dX>39zO(j'
=,rc_u+MP}F\t&ґhuѦ2.!-` fC95ǄZ*jx=a<0QP{60̘)E|apNS-ґNku^롖Mh4*NmR9jEcJ6 m~ќ_hbC|<(?LRB^l&
!uNy2ۺZ\;r++}\(BqOjCC=(
0F]2(^8]alo(:&v  E1jl@P`
LPb$h{, NFd,qbq辶S<zyh94y+$љKᶵvm9!*FN\fLqޔ	3~dFIV5%m޵v%hx A`k|Ys2%2?v+WwǺOܸko7k.g{t#uw%\''&]2 5)C^^X;I :1[3~HqO	l*
]*X
xC7@{EϪ^Yإ{-~>d!EE癬Kq.ybԂxjDX4;>b}/o6+\MmK^{#EםJ4f1ϣYšpXsЧUJp=ϪY32KdJ%vsLb?BwNtDgq_l5ﲙ
FO%ELqWE.AvyL7eR*jGp4HG+ׯ4+)[7ІĤq+U$?)9B?jQˏk?ţ4D cbqF`{~8?vBO'հ>fjG+ߺ!Tr*#qL+9`FY/N5l;Xȋ]hW&h {~hП
bS&1x
Pd~%`.nd@EVi5b_34(ych~
Qɪ2"3
܀V!ixgSP(+(""b Xmн^	mMPVq"^d7
vgH_W&
*B7btZٻbBg/Sz\ּFp
#x)s=;}wFTԩ f.(,[Mhp9-8?Z܄
ma=T1̸hҩ?u&i>*Lenj+n~%UnH4Nc
0|r!e`³
VYGW3kg5Wr`yhZζ\:}@c-7򸧎Z aGv2AͲsXi$#>m]9gٴx CT#0_ykΊ9<S!,`\d!UփF^}]j[E.I~*'&H=}k4RVuycoށvQnz%w`t
яX2+`K
cF-G[B#%:/:ɺ)qum숵JYEZ~4;rg;)+d'XW%/I[o? {*DY!׸EȜ"HM"#AW*A7RG+ꃸ8Zq޵P֘$c]2NxQRzfGU$sPC^ GhxsฃaSy7~=ߐDe8^jjemjSe.g7tyW+-Ӫ	{@`Hʄ<;Ґừe1AX6$;/0M
!<{Q؋́9j<$$w_=ۈG}X ,Xqlp2rb\~mQ5" @>ݳu<iFU;9'is	vq {!Q?/(RT8-&eyb~K\NqqI[N
$UyuwIluwm=pG	#|3[@sf9op@h6G2 gaϒ} y^HSenH诰SWEl7vX8tR:wCios;n_akYʮ1/y;9v{O'VvՉLAP44|cۗUO\D%^i;$Pq=r3aBhqY2g|)`4bwjfcy?IwD(ML\NzzCaO<c UM)bu!A\? >kKneIfE16S=RW]l|5ءJΛQ<4L{DCkdۓMKEP^?<DGߩ6ܨf2MR$_FP϶_$A"xLo32R=2~'JF-2]w~l03"ڊ"?v&\Re[p\k(V剸S()(oJKlPשZ!Yyp
L]UV6B-O{PM϶%^`/o׾sQHa+?&.H;p\al(ã @ʳD=1_4V)0d.Yuv\=o|E``k=|xe%k3b 䯒 ggJ8BKZ N{Ȍ_MLΦȒ|^<%e䵆;WlyTKuk)w+W7;l-SPlRajcm+q-e9"Dʠ$#CO,hۚ#]p'Qv6Z 0=^&Bч-1;7FSoKh4gdlF?	p&]}xfxNGMh@?6{e~e|2l/iP ߬(q [֡P͆QQ'"3NnL"\nI~Cd̕4COvi鎺Z*{+I(~v ŲвexM$0f?UEs\IsxLJ	f%A$ ':YHD6m X ,I*@{.8%nl0c-S5-EFEA~!8Ӯ9ңg^cZ;d'Dy\_8.
Vv()m&
qR)DCB19p'0ƫc>"C"ARxeM"ĦuB	8褐[Es'U0MD|GdM	')`9J]{8~N\`ؘJ@.MM(`P@4~F@4ro?JP!k%&шRd+[LW^u$	J+b!XCiC*}P0	Dګ@q MS!utk]j=:vI \PGA#ES1eK @ZELpe ѠPQ=(@{V:L~?L1D[,Sg̍!'b:檖NoiNMOknIG-)Ocb[13S!̄r:ZY6;E>U.wt0'  ׭^cܣ}l_"jrXN`37nVbe8ozZ4J٦[߷rbS]r7Gw6pemu2G:fL8'R7ܰlQZ>U-ל^d(߉U^Zn
3c!w[HbYwЫkk}Yo"k mv_@}k׻\2<s=ť_5qd<𲵯Oyt5a8wGq86tib.
{?l#L#UNѬda"  h8?vx?%d `$L_[َԕqe}ޔ|adY
Oscm-ncbU})ALˌ43<_ܖie]fSenqe}|p9cۭ6ĭRT:(|s78oH7oԳPNt:S<{SsS׮;
 xKsD-CϜYͫ/ }>X !A?Cj3:i8P1:	k6JFLY}_z;p/-0ApfW/R'ڛQUp-B3eY]ȃd/wt〘iW ?tp|>}ml<xNZmLZS'@Vè#ue ma;$;vInpKX (>/2Rpx2I-V;B:*?rgVL(ԗTEQHv]NoA}##IY|Uz:\U#U*-F~L!)_;E@5!?[=T/`WYT9 Em>oe3[2wGwݲy@5ׯ'J ̿ke'#n7-Xwb_%_=Z8xۭ<>;O%QyS?0:2c(oԬ[= }F$D(Mf(D|0F ~\:s(X82OO؂H79TB5O4!s̙Q 'hMYUkH#:eضY|
 'Vn4*) MzE)jqOjh$$mPN`큭IO0\p#5P> #"3-N͕8iSRRYMLĨjǏqF#Th{ma!b7Wb"^Q(4fj/m~
8xGnF
PjEfSMʧ
Q]c5424)wvw	TdGi]N3waY`Jq*'VsZ W၃
n.:Aۡ⟠kh Qrq~AWZ#?p%-GkY&"fup$8h~ϚWyrH{Giʩ$ݑ8O3u\/K7Y`b3/
pvcyPP^uۈlP1x# r+%(v7-S/Dڅ N' 8R(|]bbUo֫2a%ZᇋΏ+/!aݙ[f`_R!j[46sg0>#$Pȟ/o'>l`ӰASfht(皓Բ ny?Fz)Ɇcp>nv?a͛qͮqCj͛MX~^,kweF~=6ģ})?$'ܑ<M߷J\ nld}݊Aʖ
[`hNTYRNjν/ڼͯ.C0AH18"l?Fx]CWZw{"c n+f=\=cjO;!"Rjc|ǐ&fDҎCO/H `kSe&7uH*%GHu.5r|o{A[-.>fzc®|Ʊ}Rw4L2s!XT#)]T4i'3-!1~_	ls3Irf"CPm Pś&E/̡3_LVsD&*װ/xnjH?9TNCy%BO,eevnSO3޿[6=G4]0E-UؽXa,[*.4ذ^-8{ :BL|WgR6~gs?<yx_Խxjxm>'Iynhlع~b6O?xBZ߼:F)`7dN:}-AA7R} ie+iϧ
)z>uK8jhWXf8' bn͝}[8f=/ŞAn`iR6j(Udɝ~0FZ'H3wb8E&VZoäitONQטeؓ%@-CP<=4;xu5bs}>_4E]w,d*|×$e$km| a 
Us4lc3ܨy.LoN'9[rnmIpɜػbQn-(I&|NZΊv]D|L[wհ71Wؕ[uHY*I9	,&~YG/:,f d e; \߰bAM|6u	JNO?cEE`(ljA6L!C;CH Iz2:^29mγCByB!}Al]J[VGJ e'tkCV !T7o+/AY9c6ok^ŕboj[wlΧ3OΗt^X?pQ8m| _gN~Ei)[މ %̳@,1gv~g1y<NL.fIioʯ0RS-	yVs.yYYa<{>Fb+750EɅ^ 2L͗Ǌˎ&ϻn;	cb;n2}"P)Pa 1UYq84DWkJB;OGl&pKsJE jC[WQ6Ȕc>^6`lDi)$mowa,*/wآxxkG9IewE$fԹ+	ĵB
g2}  o׳Hev!-dgf""B'jO3Mv2>hyRAKÙ_HN{fsaf^-vYY῎g1h
7w"0Q}??p-:z<:jۼ|D]:9QENȦeoFn	TaoQHna1CIB_Z9@#r{m]4"f<S:R쟜IWΆ
:}3w$St<>kJ'	T$f_Nt8}ȳ9w-->CW:x862yփ藠GLDvMu5<E϶ʗJDZD?BG<[N(l~n>g$P.hcT6Pdt'
2ݻp6u%AgVn@&;5 #e4vsgjB(ÚA^ 6#|pgGGl8l`d[o6D{ʾ- p Eo mV} ބDc˛ĭ7Q 8TL)kYؓ|E\(쿺Z^	,F Pq-l8dJ"I`wt W`9žTcT-<497[uH"L׏7t'RE{a&LZ|s[*#S5v2	/<WxVC	񦵣/jeS{/G	܃/ٽm$,c-"JȐ^יgR'B>:lP2~UZoӘbXvSG3]%5yUGwBzƓ;Ȇ Sy	`!7ġWs #$d@ϢDݢB~M_Lm;NT#7݆Guom-ApZ-^KQ(Ƚh/^6>;7"ߧr;TՔ@}4ZUVBΪJt8YB@<o1^i@:afsr2"Myt"ҽ寪o7pDFY&km*#JKKnH~[qc %pnj01ēdAǆ-/^CK!<ӨYTYu!JΡ#}k0poX"+x>vwXW۹.a}EĞ=FSd=Vp?꾋1}H=\8j_tkn;1;}g+W~Yk]\p`p.Z wlZ|+l!@]SNo?>$ɶ	u4N*V8#7Rg^{;N]OQ\1痝MQh' =ÇLb7E5Z-f6D@[
2VgC7lW?OEz}^ܡu`[t?G{f뢶%Ov=AgEԠj!v	,>Ǒn`tM7E~7b@t;m,k LOؑȧd.(69*&,pl4c(Ml;Q.I4lmܸe!,$N XrܨB0\V2 9XϋeUiʵɊ#Y&|0|4:=/u_}w;W6B=ÇJi9ͪpȓ.d><}˜#Ws ũY?/YZ=K$bcY9cEg
y]P4VE-I͏.Im7oܜD<PQ%6|?id/swWH>B> ti nPݹomA&%1K>]Iu$7&^]_#OS?,
  Dt.LaӲ쎘P+r!u_ ۵a;%D*l_{aSﯱY"(UCd[sӯ8v3Ulp(
)<=xc6WH&[I,g-""MHޱGfZӂ{!"觤{mcTzZJS'cmUK3IOr'H6ėreK^Mkd!K	Z5)y<8`e0yW+PL6hpT$Fy5Մ%jW_<^kc]D2"n^Qy̦J%s"9R)RbveHuS]g:?9Iޤ3~Ox/>V>22þakz&uf72gPG﫣ԅyMC?׷HBn{6=gl8@WS<\_sNٚ;VnS6w/Ýj1#Uˇwj|@LZx7@]7vnw&Q-	nڜ;F6+eg[8rc!~,Z
#uyGϡK	u#G,Yw42N~joe59/C*F|f5eq96r)dص(w)X3
[sqGĊ_+|_L۟EƠsr[aB),8\qSOSgKSPA)00kNYH-q6}GK$AEd5|ݿOMzROU/07E-xfA GGNŊ:|/GK<SHq*ؑ<,9t.zփ&Qz-] ʈO7lٚ,}Wz"!:IsY7A_gq,
qQ?@K N۞tH>umͬ~+*v'.
^  C)O
!4_ cL`*4*Wh)RtTi!Lj 8*<`]2FzDZ+*b?^ⴊ%H8hL^S)y	ɞf!@e`ϊ Dn֤py5VUN AcqbeM'FgŮDqTfj6[	N$5>0bǮ[Uj,<|Zo5)t;ܭƃ$yB}@vHlsR??P_^}u۝zaף台4ȳBg1m$-nD?7{!(	ZB۱>m<P?۬q{党v:QSvz9EӉZdiۋ]Z_x{p>W4|r" `bRxoCT嗘AtD]~pMճs.}<8	{橔I
IU|>I+xL87n֍1bEԲЯxXF웨D&d5a{y-k<䙚x~3RܔTf8~d(/DS
$U%RfyQzw37w3+|8`/k9k :m:gCmP;;8S}% ]ϓ'?˛pssUC>!a6da'>]77k[`~X|C?V3¯dG4kk|8JT]7b+FuFh#Z#1j!Z`]O{4dRM0;xiQ_VPKe\Ѹg!rlQd'|"88#FR}Z=kI%9=~ys#ѧUo~{;F{Xv<m
(Siq5A
=lJTĭqH`a* 7& C#@p(fM
ܽH&NtS16(x4'ZF2cTo+k&`/yDu)9,Q,F)sb蠢pNlq"vIb!E/z}o2#n\ϡrLLwDR'FmŭqRSeŲ+cioHZ=T'/5ZLׁ	?yrsm5<DN΢qN"NNG"d7퇅/x8Ķ:'to1aI$>^KΏK}ud'Tx`bBJƯ?$	rUC?_WtXplfUcnPge?H̃q:mݧ۶[GYzq 78bHdyTyQvLhT)+Qsf}W>il7^8zuy馲R:
܏ꎺgcޯZMGtGs?eSr|o?Z">HSK23;
5>{٫ه14pUkcI]iV.ƙc002L\ 㸌]yw_Eu14*/:p:Mظ5jH0Ӄ}Jď GfW2%UTwi|AqЏߵ!yk;z*8+u߇\u0@Τb(.\rl!ԍ3Ll,x^LFV"7^4v(7MR7Y(kʓ.[LП#E6s
b:#}}h(ޥ;T?DDp9X[z^;>yÛr1s]s،RjGނs+:15_or)/&Hͱۥ;_a7?RV]Bn%dX XB{԰fo |4Mk4e{QF+3U{rNI}ֿnP-;$qLܺ+T9>%w	(vI-'@p!R0̯Tֆ~S`o՜k7N`
	ewϣvSq[5%aantjD9vN,i+}7&GFCwx0Aq
}u^[,=wGGFs%?<z#SP䉯d\W	h	"TYfBogVK&z#hn2C~罶܁х[dtUVyAyP(<J4e$,˲"?՗~vd8>lJ#3.Z/ɢGP7
4A&?e]tKtV;x/^u,<a i qo9@'k6ڙmvPr69q#M8d4pyB̧5'	Ρ{B&	/k0w'ͩ95z$AaJ
lM@`b(. Tдh#nB)L)]-
&/I)xMQ!Stb梗g>`yXXyT]>E9}urʏQ+xk?-N=Q*eKdm:{7bVN3,qaooyRv;8Fƛ+S
UT:LH	k%Ɓl%qZh$	gxF|쿡TAItR<Jo>JvHn4zt,*.BM^:6J(,ӵ'gWëןh'Y*?0֩MNH֝#UU-QN-Qc*Z$>v	d.<\2.Tlx(:54$}+.Y:*!	4-uڨ Aq!zT9YV-]pB*S#?<PkN%k1mC鹖ׂOtox(O"3Uȗ{{Gp7s)#PLCV)Cfm2H[pq!ة=mG/vJkF@G,LǏYXnS%S%%;J'eZ5;YY4Fzz|62>'F'Tg~}{mrݺI\w]Rf^uqը}ufV'	 /FcYܞPRp*KFYjWCs<.УfRAELvl~maURFH]y)[_#w1Q3s&U*6GX͸8'ğt_1m,x+KgTj JK}S`1I Ap,X1mOnYO/*]6=e0eHre/O'R@?ӯvk##XrX~6Cuib99Y |0rǩcG+#)\W}gh۵fۛWU\6ulykC&^oty-vۉ'^Li6[Ըpes↥yYq	,੓ԍwB݈G"<"YBNpW5ԍ}zg<׾V:oKC?*M:\̷*_?֗3QmKm*|pfchVɨٲ}vfʏ1s=C:	2,-,ZOOw_ peEUXC:,r酕[6WڜB[l먩gH&̓-[ kUQ%*SlG$sa7n;I=	v`qQ@gRA/
-u:6j&N͐ ^,
L15X}]"Zř 9G vz_!"R-
zUv',C4H&f6`׬orzHZQ~@D@-RJ~G8P6A~  z^ó2$DKs^S|y *-cw\e@|1BfVwmIA"jPmUy^{OU(a,͡8mw'2)b~3?W(B]D25G82?̉u5fg~8Jѐ[Y-q|14.D*t86hǎN>fh0Cw]|VEN]QCS`PԺ6{q6YA`}ޮN41j|-|F IFzhҌ޲v15s)W6^uR[Es|gC&& MO8rM!0EjcHn}sw'~+o0GClofєJe&hJz<_ݛ%aݫE+'p2ʧ7V(Ɲj;	=mb/@ͬnN#D~\W)\vF-*qnY]&-ًkJN0"hFTZm۪3	owTvhvcvZ76%<A~ꎀhQ]?S3gy5/.,2`/ק@jF@ ՖfUQFC-2)*Yirqq:se*IuQdp.C3j>F:^dFK)z*H=-[`ɩHʲ˱ik_.6ހ]ϛ_y@$.aژo7xEcG(Ynͥ]A-G7qH*6P^,/\(T:$v2ob(-O*|Pg~q.Ƽ>荝N9f(eh\F8#7ބ\ZN]{»# @{pZ(y*L*g;Tx]ި,f最NH	=E([3RBUi$"nE$~\u9{dgVי}177_u\G
dHD]'	e3!o9̉2k^Y;F!y^CgC۾㪳\8=FOzxh$-xP~;6yVs|aUn!|;!+.q9'$>4U`'Rs'[1T(Zȋn\:?-a¯8˳;`zDт<^æ0hx#w8i5j.|Ei{=	$zїVz :ڵ6X˨0^p{/4{GE8#C}"ڊ`EF_,d8ͣ!' (p\.fk+j~ԏ2w>7v\"p%":߸څ|>vM-˅ 幃.@Тeog]"w@){]x;_ld.Q? 7R/_{Ƒ΍xxU/T'/^kӸ}g39<T@ou;I
fi={쳵>b鍫:2&l٦t	m<omA,uMo2y+H/HUImCV@KO~˃&M<c2iZk~i9([#/d؃Z0a2v>Ž515Yo1ydb=>~Bс-Y&%mtL!b̙0cqs7Az HAĳcݹFP(]kNDG4fc&wkLuLekR=Q)8~l\

!B`0% T#I2v+lξ})A4keGq?Fcu>W\oi *@zn(Gt:2~珮Ɩ-Ю(1kE"85LYsp*vv"WƸ?>5F{q~VuuY&أH5;IЈ8>-ĸL9, tXCArc?=[_w 0vvX?=ˍ|Ljt+& '[BW;v5?j]pdi,Kxd* +K}yFap6.hbiM!pNlEȇ?l8f-U8b&㺁T"_ҷfxxrrӦ̅F\Mg5}|@|sj˻tM{X>S+LƄ#cESxs,`  sz֘Ij$Uhar
s5C_	J*h9dSςBi*!FD0s}Z욡|,[F{RZ?N3n'ݻk:
)p<ueT O1(beΈZg 0GwQJ(jn7_5{Q5p+Y_UY}~1-Tgzՠ;>cЃn5l
hEl1Cy.@So+qD-R pSiiiU| :#6~]̫DVc팦`UkkuQTڱwqE g-QL\!
̕ <.UF}4=\̶ؙ+>Ya%_\E9ȿz_PQO=j7AJmwҞv[@ٸ]ŹYɜ[.͛8IlK7dRlZ6E'shZ|גijN|:a4=+=bsVvvq֍a5Tؒ(%=iUӹ=u(AxwKj	{F{~6x+-:L>%Ɨ%t`u&QinM\*c*ѱJZ]j׀ncj}#	 c	*}ǏP#yk?FDuJ 	du:tPqkf`#2ۃ  	@W.Z]	B1a9]UIKp 6ý(8*!խhE>nj=3^3HmbZXz<mo]J"餇ЂxRZHm2k5)sGE8
Tn:"9@3H^6hV~gsm	ۥJwhֹf1r7
}qᰑ1qHĳ%6~V>LIu9$:XB{'s,cÄl9ҕr"']rwЁMc4|3M+}>cٕ@wx1bZ})|$s,LhͲUJعXJڵ' ܌%ٵxtud0Gp'eXW'2zUkXv@Vf{d!m|JGD.H^膀L;gd7ê:ܞp;i*A9O`ܣ߸iytGV!RxxGuI(.$wmY\vcLyY&	z:{ (_wHyh	9V7'4Ei khL&
7||^/ q[3ӳ4ċgH-fԁW$sأ?I%nҧ=Nw#ajo5{=~Y K[,oq;qX]fffɨ٠_mcWHOjM!^w 3:m#M[GYk=MM4]\[+ gxsXµ9NFW	onnv-2:I	w
A8zxUDq"y;8}5=>#:Y:N
ů_o)9!Sh(DA0=l@R9]̈
Xh3gЧ0u0e^Zp$*V֥MяK'1$U$
+~<B-ID)(E]u]}g^ƍZF/]3	8/i<_qPPBVuoi /]
I&iQ%2T͟4N#UzH/IAo+;ֹ_OG[6#'ue|YS[0~4ĿsFdBHrrjQk]v~֌uvJdӲveP1醆>dUDZJэQ)z򢁴zq#'qc>l{_IZ]#A֥AlHc=BL7=4ȇm\U^fqE,qy@"GRF|уg{=^Rӕ&&cgUNW_ZV%7д6y6X1W
@_l'vo5>)M`ubbuEqyUF-:cXk\{.;3G/=M(?dHL(n?*Y?RE񁄃A`CrD$i-oohZG(fFiÞ8Liia^PV/ԣ/}3㎸b뽣xjq="܂=qD=/I(GS]0,lҐQ!q~L0?=ikmG',Y] d$a/ås^P-77/(n*OWQ XsVNVCTu"\C^k]SQKed`݃ 8ŵ\Dn#scb];NqKmQπQ;K}#b8eGd\Ҕ>iq1@\htD1eH@_wU􀃈`K/(2)Zanӈ$kU2wTցC(ΒGW
"Keq;+grK=*hqp{hwίEfov2	pǅܖnKAH-֭7<BHh/4Е&1
;B\iMt%dRzkn6fH>kta'`oXG$&Pw-+qE쐄Rpe<{,hܧ3<?[m:-CR[Ҫ^3~emN0=`cB	(jȋ&=*_Hm'6Jib4.':Q;}UL=v1`,klsWVGϴx?z2wy$mwe9]Q*l>-w"]=#hv{hMr#o42{KkQU7"$t71mt c}J|9NG;ЦEv61_GEs픐eXnnvCr_Z]­hR,]}NR[LYGZzJƦx6׿ɒ94iG;%#Imǿ?u7glZx}ofvZM^Bj*C({g(jhJox&ۃ҇dBDV1WHo]Wx5B7AFGEp#9+?(B\LO%%4"
ӹA^Vyѹ&	0i,/$p[f폯\>.޷O~8+!1
E4/ f8?r+sdqz;uީ\-3'#) obնmU`c܌je/]@/}BEͼ#ؽsN}>!X:03D1tCV8xco ]O\{`=DC}#,"O8r癓m/]/{	!#mXs Vɽp,>||fޏLfy~c\{E_]koѹzz燯t@	]/+倾?DpDݲ\Řؖ'Z_dmZUm*6fQzA5O~	Aܼ\ѕȗƵ%ʂ㊛ػg+3JxcSUlxg̢N~G"
hd+PPcߖF~ܿڂ&n	v<yF|̏sKkW59:5ݴsrݾP!U=!#O';Y7}*omΚ˿-OO0Ik-,蝦vikܺݻmV4w)*V	==>{Z{A ĻY&nQ!9s]/7ڭܩ>lH\҇|d{e;R.:רwU'2xޢ1r:V0FˈuNH?EFgqմC[jn9x:7sDtOI -W 3"M"|6Kc_ARBZ~VcEʓZ+6lXZ?_
]Tްt Lѳaw{aű,qwJu{ÛqڄꜶVզ:a7j7Of5C"3c,
K:܍^ݷm{st|v[]VѐMGa>`l*O7W0fځ@nyO8r>pu\Pܭ--~I%@".
NPy]V5'hSa07eZu_gC֛&T.*6*]vꔢ\>KWl
Ucb+q"T85ZJtzk\ Ve5sw pc%Ɣ#&Y9xEE(&hUiMH߳.Z8r9,;<#h]-iZ'>ӳsm˶muխWD>D-K
tOxxN;<zk@OzzUT4iS_N.m=GUh{=U}>:8PS8,EFp4ӣ19<yIDo'--eUVc_\Kb/҃ӰR@2#Ui]SB2`B W#(VӤC'SU њI'w۔?#8>NpbHjYM+
"jRY411=e&o>"4rΟ~	(Kկy?{q#q癝QnDqCI%BG?BiDYh~Նfֿl%"L?\jcS+UjtW^YQyL-7U{]3>攐w[; "`UY:cxFF/D	o_U	b$MF*.5du~-+*pm`y^>9..s} GUքjoɂübpY
{W	6s6zUy[(=0,gDۀA{%"{Il=^5;L'12I+>YM׽)Z\ut}ہ,]*llFfԆ'6<nC.9Տ;%@~)%Ǭdo}fQS
U7b֚@@mB?#џtBP6Wf:	bGa`Yo3z+$RE_*X{Pp%-ً.ֿͦҢ}qSlIH.]qhNW-38ՍY?:wwvg6D[U(ߵ׶UJWx%d\Y
3<;8 (G L#^g}\a؉s99۶P:l4)sF4>r.:rqq+ܨ~uH"/$4NK	{+rv8r|mnOÁ0#4[Oq6F0汦?XDSJ{JSrNSXnaBB+ZXdd @3\r})tR@MlKj*sg|@@19Ó(OoDsm"luϬ	CCs~"O4u}9H	N!VeAϟh00.Nlj{}8tMhRTKPr:^WJD \''q\7ãxNtq x{pz|9!̥C?Tњc8E
*u&SDO9PT-e_ts[8SAzGt*ti!;8;>6K]W*4A_CQ(>XRjkz?r45fvY..y	An{;G3V!ĳY{Ju2M-1H4_bq<|n(|d0VQr3OL/Ci*
 ߽C2_6!MPN.nTpG<@dv嵨r9}V~L6r2x]:sHρMQOQXHA5w-p,2fDoc-x`oݵcvݤ2)C;CUo$zv-/[E=Vk-"gR|HJwX}]os$|3 |a>>143R\E7-gX[l\Q	>*+@ &u5#"
14
i6;r.|uZK2QApycNMY]Af,j^I
01{KPf{}	%D8ľ>~uH]i"K͑gut٠4Ԩ\0u BXH]Ec21?vz"ee|̷/ +o}}9tޤs)=jxqRȴHM|dBN mV"\r沾5݃|ƈ>½jc,)Y\	Yp:*-C$v7z`}tuKeXW@<Qķq-Ȝ<ϼ8P)Q[LVvnD"mS$H;}%H6EZ< ѷ+vNAʻYT!NOWwA6&T@BoCl\0`!o<RkJNr5]N0g[u >4c `һ)ae]F+!{+ ##jq	P@Dq?`xftQj#S 
h( YfTN/dZ9Ȉe=ʊeϟƏ@o-į5iQ6qh	êA
~͊>lֶ d+^+"4Ϋ<UUdP3Y.4QdK?nkɤV=ߟHbR.6<#TDppe⍲r{O7@IHS;8ƇJ:'m7b=;[5ҷz-`t=|2Du2 F'LqexF@:eZBLoo}oC3pZHCaiUed0هܘL7 IM*HqestRtm4h<yX`DX#|wT('>5E :v_O8DRϜ<ħ}]
;'^R.d=c}Rw? |bµ=[ju o-3$;8۹=d|&OogdStC&5)\H6&KB6(mMw׋Ň9%U'D)۳`JƪRLH |UP냘Օhr<[BUqoafDoSx蔼2ud
=%@3TbXvED\{@4Yʅ=WHմ
5eX__ɺ؂n=FKnR<. ͸yH$+tY1?XX|_DZ"!P/MПLPn;W챎~Ng+S(0oRnJ{j* ;[x^bFܡ=^R2Lov30MGP0&Mwz@4ȠSWgg,ӘГ0C}}7\;`l
"F.&?o*tZ^09GT~ok?a VSv[(托*vg~oA_7<GH[2LJ0'E5gsڄ	** K4Lr/,d_	I\)qR8s'ۦ?tWWRw_-杻S)P04QXc)Fo%%7w$?+L(^ΗoK꼡<&mc7bHZ2'b붠hr+nSXj6c%þԌ'M	?VdH߸f
:pWZi'S1ÿd=6~W5.8s6rm*.,ӝ/HL 1Xt4vrVUܞJ8nׁ©7.BFp:}=BZ?6[DZǻЧ>L#	M[0H@`!	2T䛄t:~k}CD݀1|újk]h!D[=4/;sq}~ndfvT4+*<P՝{>uSGIvy.d_eYT}ۥҐه4(|ON<J{FIIMs.N{ˋ&NZF}<kac	yhΌ
EVɡL'hR47XiS~5&)RQZy	lS_+Ad~E+*ďߩ,94z-IoAbaopSˊ#MM׭m]ZSEWڀ7%kMMY1ܴwPڒ_Vӕ5TcG&@Z[Ĉtf1L~#YX<~rCMُ!˘Ryb͙˃?h2B16 aKkG0ѵ`m~3SRq~uBw\Z_)qDi2q*xGȨN}ŭzM .^`:K~^)?!q
Y>bE5U>C HBr- x"vFI_VQCXij'lxd>ދVM  xz(dъ{!CU"d	| tof/JH{g

"Z0#|,K&;+
뻛E+ZzZxrQBtaEu-dk9
!.Uxڨi96%a7UmH~(Fm[I1NI"VWwc5Z1EacOޫ2+i˽{6MR2g0G؁w]KI3m~aÊA;8n4ǖ|a0?v{e%("$);QO@*J"uN,/ߗ[tY8 %Z[q^cB"FIpMbɝgZAη;xɳEмÐ<?k{esNZ/neij-?Mhhf@\2_p?-[V@Cs/AL
{iGw3jӆ*MVAT5K4BI{T)۴ɣY$0*ٴ}B'xD1E1Hf'pS@q.e/nϯQt+3<κy!XEc8s*2(:촐C[-V[sA"yˈeYHۓs"7 ëp4wni,8u$J:B૛(8um悹
=vEiXOgvI; <[-q'b {s=3/ T1ekd1VdBräX"N
TxKffdwHV'arUEuNI4=dIw'nB9&R֧oOT.++ddY<O/gȧz/7na1S7Wd$kBbE'+
v돻ڍj]F-JL*N7K0"H?[ϒAϗVWEwxh{t~=1jמgBcTX}+E#Ny9H(fL
rՋ74|i8_ fJ%)EJ b@%z'rQk%W=_tOBa4>}PD|rC^o8|Iբ'/6C7вaTEjR\uh{TM\[G\+{@p{HqAeKn/& k_{;\dzocKQUCC7;a/CWszFc뿋;ߣ)$U fUnLNRov/::Ε졸{-
2]MD_Rns @u"*dP$So#=_IJ$GDfVo	jU*{3D<EB-W<N) (أ8A~3Z,>gV!/0}#R|`v[НT6"X$[It	KҠLZ/$.lߤDL2+Ǧ<2ī؝ߓ&Ak-}_1o6cBF2%)S+d10H)f'E]t|YB+(wt$_@:X݈? ,n,=>ݒ2*OӘf	9\K:G;{EltHP`PqlV2IR~g҈
*_\pd<z Ԍ嘢9'04آ{]hת{L0Q<Ku@eyQ(΅Qe,|Sa)K KueKq۸8_hCs30B]Zi3J>u1DY%,P/=p=b-tBhI )>Nxi<k5-3/{f8S
ccAKjiev>B knKkKZЉ~}s@Z[CyZJ`pנ nC9hS&2=+ b-fʾ99}m8a}@)9Kҳ´sv %uq-
%`B]:h_ [<,,`}LHhcR10fkrEbHkRZyM|}dCe}uY68jB)a 9'(c~l*ۭ;O@S,Ng5vlNk<ظE
*'ZN{PT3` `/m/fR6P.f`-omжʶŶ*5n{:kU^!ꕯzTo|nblq~xH_0cΚh)=Lu7ፗx.}?đ_z d Xb8 rW㤡l:t%C]Hw
g44tw@5OH N)99܏n3=^r	%]|qs?(K,ɼ,ߐYZcdFfԩ?՘_Ep BoO>I\dM2=i8 B*m $ae08Bc8<H"S4:%./LPNo0kfނN? B0b8AR4r JjaZz~FqfyQVuv0N/v<_A(B*mAIEYM8˺y4CL -Vt=^ !AIH,
Jl08Bc8<H"S4:bs<@(KBRk:h2[6rsDz? B0b8AR4r JjaZz~FqfyQVuv0N/v<_o &q!6 $,ϋquۏi·r).! 2.:(N,/ʪnڮi^m?~
#(4$2J3,6"D*+punڿ.6Oi+[mٶֵ͇`_IeAvEM ry"傶j@y~̮(JȎ__gW~bg|!17;uݺC=LPcԸ^ho/s8P=_B<󂠽a0<ٚ&i`Oˑڅ0x[w{{\v96xT.0 Rt0;L^JQ)>lgOfp@VMƯV5mcJDi;$`1mDӒiFQ\&kȸ% h58z2B8_ qT9k|9{IhrAq2n6à7dΥ׌ϊi)·z[xDGQ =1:]?7n}a3年Po[#u}s7E75h>q
+޺0'^BępW.duKvFjkEBDmޠ/D]s)-@RD90YD~G+-"91AįIua-3%J>FavշCsE-;P!M|bL˸zK)
c0sETe@l=lKo$:䦣ԉ_9vYc}jj	#ѬM[
8Uhlnگb?fG?<q;K+@S\[,^GuguPRQ<dZDxnؘU-:(e#:'itJgoikic%Sb.+]`[8KYQ}>;/v3*K~k%2Ր#ſ\lհCa*.1ۉhLR5Yp;uN#$a K49_CxuzN))]y+̆zramhNmqؕ >4K1#tL:Q/T#@qD?Ok,{9
?ES⹑s`.	\ܔBMLwd:`9&fǖl>8H?L H C%h9_-}a#war%(\2nD[G(jz.c߲&,t{ΌR#c:+\7/	NK;Cװ~S9!Ż&_{K@qpwO,)!ðZY&JU?FT'8q=+8D4`WM{L4I?Uh~	V
TF	G(u8	rHW5vHOgv_`T5+mU([XQMXYVJZbs)wO
ۥPX!H~lֳO4_}>wثѕL<56V.K.vl0מյ]wk%7$juIk"ejk*7D)ک<կ67tHYMc	KHO$/ҚO&,o./2qXodIe濜ʣf?z(6ǷW?rՊjH[~BS .{>t"p0=gg90uymΦzo P	TD2G}y(J#v:&/f:C qsTzk9n4kǾ\%Zkޣ1葤b!f)"  *)QgTiH"RJ)Zkc1  @5  g@LOQ"AŁ33Zkmw~Dq.G`чStpӻW                                                assets/fonts/fontawesome-webfont.ttf                                                                0000705                 00000415734 15242037122 0013721 0                                                                                                    ustar 00                                                                                                                                                                                                                                                              `FFTMn2      GDEF '~     OS/26y  (   `cmapb    gasp   t   glyfɁ  | head `   6hhea
j    $hmtxF_   	locav|   maxp  t    name3<    postv   webfaU           mQ    Q     N            w          C  3   3  s                              pyrs                                                  n @  .         
 / _!"""`%>N^n~.>N^n~>N^n~              / _!"""`% !@P`p  0@P`p !@P`p d]YTC2߸ݺ w                                                                                                                                                                                                                                                                                     	
                                                                                      p       7!!!@pp p                  1   ]    !2#!"&463!&54>3!2+@&&&&@+$(($F#+ &4&&4& x+#       +  ".4>32".4>32467632 DhgZghDDhg-iW DhgZghDDhg-iW&@(8 2N++NdN+';2N++NdN+'3
 8      !        #"'#"$&6$ rL46$܏ooo|W%r4L&V|oooܳ%        = M  %+".'&%&'3!26<.#!";2>767>7#!"&5463!2 %3@m00m@3% @:"7..7":6]^B@B^^BB^  $΄+0110+$ (	
t1%%1+`B^^B@B^^        "'.54632>324
#L</>oP$$Po>Z$_dC+I@$$@I+     "  #"'%#"&547&547%62V??V8<8yb%	I))9I	       	 +  	%%#"'%#"&547&547%62q2ZZ2IzyV)??V8<8)>~>[
2b%	I))9I	      '  %#!"&54>322>32  &6 yy 6Fe=	BSSB	=eF6 >xx5eud_C(+5++5+(C_due>        / ? O _ o      54&+";2654&+";2654&+";264&#!"3!2654&+";2654&+";264&#!"3!2654&+";2654&+";2654&+";267#!"&5463!2&&&&&&&&&&&& & && & &&&&&&&&& && &&&&&&&&&&&&&^BB^^B@B^@&&&&&&&&&&&& && &&&&&&&&&& && &&&&&&&&&&&&&&B^^B@B^^        / ?  #!"&5463!2#!"&5463!2#!"&5463!2#!"&5463!2 L4 4LL4 4LL4 4LL4 4LL4 4LL4 4LL4 4LL4 4L 4LL44LL4LL44LL4LL44LL4LL44LL 	        / ? O _ o    #!"&=463!2#!"&=463!2#!"&=463!2#!"&=463!2#!"&=463!2#!"&=463!2#!"&=463!2#!"&=463!2#!"&=463!2 8((88(@(88((88(@(88((88(@(88((88(@(88((88(@(88((88(@(88((88(@(88((88(@(88((88(@(8 (88((88(88((88(88((88(88((88(88((88(88((88(88((88(88((88(88((88          / ? O _  #!"&=463!2#!"&=463!2#!"&=463!2#!"&=463!2#!"&=463!2#!"&=463!2 8((88(@(88((88(@(8 8(@(88((8 8((88(@(8 8(@(88((88(@(88((8 (88((88(88((88(88((88(88((88(88((88(88((88    y     "/&4?62	62,PP&PP,jP  n #  $"'	"/&47	&4?62	62	PP&P&&P&P&P&&P&P      # + D  ++"&=#"&=46;546;232      #"'#"$&6$  @@rK56$܏ooo|W@@rjK&V|oooܳ        0  #!"&=463!2      #"'#"$&6$  @rK56$܏ooo|W@@rjK&V|oooܳ         ) 5   $&54762>54&'.7>"&5462 zz+i *bkQнQkb* j*LhLLhLzzBm +*i JyhQQhyJ i*+ mJ4LL44LL          / ? O  %+"&=46;2%+"&546;2%+"&546;2+"&546;2+"&546;2 `r@@r@@        n   4&"2#"/+"&/&'#"'&'&547>7&/.=46?67&'&547>3267676;27632 Ԗ#H
	,/1)
~'H(C
	,/1)	$HԖԖm6%2X
%	l2k	r6
[21..9Q
$
k2k	
w3[20       / ; C g  +"&546;2+"&546;2+"&546;2!3!2>!'&'!+#!"&5#"&=463!7>3!2!2 @@ @@ @@@`0

o`^BB^`5FN(@(NF5 @@@L%%Ju		@LSyuS@%44%       g  5  #!!!"&5465	7#"'	'&/&6762546;2& &??>LL>
 X 
  &&&AJ	A	J
Wh          #  #!"&5463!2!&'&!"&5!(8((88((`x
c`(8 `((88(@(8(D9 8(           ,  #!"&=46;46;2 .  6  $$ @(r^aa@@`(_^aa    2  N   C  5.+";26#!26'.#!"3!"547>3!";26/.#!2W.@@.$SS$@9I  I6>>         % =  $4&"2$4&"2#!"&5463!2?!2"'&763!463!2!2 &4&&4&&4&&48(@(88(ч::(8@6@* & & *4&&4&&4&&4& (88(@(8888)@)'&&@      $ 0  "'&76;46;232  >& $$ `
(r^aa`		@`2(^aa         $ 0  ++"&5#"&54762  >& $$ ^
?@(r^aa`?		(^aa         #  !.'!!!%#!"&547>3!2<<<_@`&&
5@5
@
&&>=(""=       '   #"'&5476.  6  $$    ! (r^aaJ	%%(_^aa     3  #!"'&?&#"3267672#"$&6$3276 &@*hQQhwI	mʬzzk)' @&('QнQh_
	
z8zoe      $ G   !"$'"&5463!23267676;2#!"&4?&#"+"&= !2762@hk4&&&GaF*&@&ɆF*Ak4&nf&&&4BHrd@&&4rdMoe&            / ? O _ o   +"&=46;25+"&=46;25+"&=46;2#!"&=463!25#!"&=463!25#!"&=463!24&#!"3!26#!"&5463!2@@@@@@@@@@^B@B^^BB^`@@@@@@@@@@@@3@MB^^B@B^^         !54&"#!"&546;54   32@ Ԗ@8(@(88( p (8 jj(88(@(88   @   7  +"&5&5462#".#"#"&5476763232>32@@@@KjKך=}\I&:k~&26]S& H&&H5KKut,4,	& x:;*4*&        K  #+"&546;227654$ >3546;2+"&="&/&546$ <X@@Gv"DװD"vG@@X<4L41!Sk @ G<_bb_<G  kS!1zz          "'!"&5463!62 &4&&M4&&M&&M&          -  "'!"&5463!62 #"&54>4.54632 &4&&M4&UF
&""""&
F&M&&M&%.D.%      G  - I k  "'!"&5463!62 #"&54>4.54632#"&54767>4&'&'&54632#"&547>7676'&'.'&54632 &4&&M4&UF
&""""&
FU&'8JSSJ8'&&'.${{$.'&&M&&M&%.D.%7;&'66'&;4[&$[2[$&[              # / 3 7  #5#5!#5!!!!!!!#5!#5!5##!35!!!                        # ' + / 3 7 ; ?  3#3#3#3#3#3#3#3#3#3#3#3#3#3#3#3#3????  ^>>~??????~??~??^??^^?  ^??          4&"2#"'.5463!2KjKKjv%'45%5&5L45&%jKKjK@5%%%%54L5&6'      k   5   4&"2#"'.5463!2#"&'654'.#32KjKKjv%'45%5&5L45&%%'4$.%%5&55&%jKKjK@5%%%%54L5&6'45%%%54'&55&6'  T d t  #!"&'&74676&7>7>76&7>7>76&7>7>76&7>7>63!2#!"3!2676'3!26?6&#!"3!26?6&#!"g(sAeM,*$/!'&JP$G]
x6,&`h`"9Hv@WkNC<.
&k&
("$p"	.#u&#	%!'	pJvwEF#@@        2#"'	#"'.546763!''!0#GG$/!''!	8""8 X!	8"	"8	          <  )!!#"&=! 4&"27+#!"&=#"&546;463!232(8&4&&48(@(8qO@8((`(@Oq 8(&4&&4&@`(88(Oq (8(`( q      ! )   2"&42#!"&546;7>3!2      Ijjjj3e5 5e3gr`Ijjjj1GG1r        P  2327&7>7;"&#"4?2>54.'%3"&#"#ժ!9&WB03&K5!)V?@L'	>R>e;&L::%P>vO
'h N_":-&+#
:	'	      + a  %3 4'.#"32>54.#"7>7><5'./6$3232#"&#"+JBx)EB_I:I*CRzb3:dtB2P$$5.3b[F|\8!-T>5Fu\,,jn OrB,<!
54wJ]?tTFi;23j.p^%/2+	S:T}K4W9: #ƕdfE     9  7>7676'5.'732>7"#"&#&#"$zj=N!}:0e%	y+tD3~U'#B4#g		'2
%/!:T	bRU,7    ~  }  %2"/&6;#"&?62+326323!2>?23&'.'.#"&"$#"#&=>764=464.'&#"&'!~:~!PP!~:~!P6,,$$%*'c2N 	
($"LA23Yl!x!*%% %% pP,T	NE	Q7^oH!+(
3	 *Ueeuwg      a   32632$?23&'.5&'&#"&"5$#"#&=>7>4&54&54>.'&#"&'2#".465!#".'&47>32!4&4>Q6,,Fa w!*'
=~Pl*	
($"LA23Yl	)!*<7@@7< <7@@7<  pP,T	MFQ747ƢHoH!+(
3	 tJHQ6wh',686,'$##$',686,'$##$          / ?  %#!"&=463!2#!"&=463!2#!"&=463!2#!"&=463!2 &&&&& && & & && &&&&&&&&&f&&&&f&&&&f&&&&          / ?  %#!"&=463!2#!"&=463!2#!"&=463!2#!"&=463!2 &&&&&&&& &&&&&&&&&&&&f&&&&f&&&&f&&&&          / ?  %#!"&=463!2#!"&=463!2#!"&=463!2#!"&=463!2 &&&&& && && && &&&&&&&&&f&&&&f&&&&f&&&&            / ?  %#!"&=463!2#!"&=463!2#!"&=463!2#!"&=463!2 &&&&&&&&&&&&&&&&&&&&f&&&&f&&&&f&&&&            / ? O _ o   %+"&=46;2+"&=46;2+"&=46;2#!"&=463!2+"&=46;2#!"&=463!2#!"&=463!2#!"&=463!2  @  @@@sssss          / ? O  #"'&47632#!"&=463!2#!"&=463!2#!"&=463!2#!"&=463!2			 	@@@@	 		 	sss         / ? O   #"&54632	#!"&=463!2#!"&=463!2#!"&=463!2#!"&=463!2`			 @@@@		@		sss           #"'#!"&5463!2632 'mw@www'*wwww          .   "&462!5	!"3!2654&#!"&5463!2pppp@  @^BB^^B@B^ppp@@  @ @B^^BB^^   k    %  !7'34#"3276'	!7632k[[v

6`%`$65&%[[k
`5%&&'          4&"2"&'&54    Ԗ!?H?!,,ԖԖ mF!&&!Fm,        %"  $$  ^aa`@^aa           -  4'.'&"26%   547>7>2 "KjK XQqYn	243nYqQ$!+!77!+!$5KK,ԑ	]""]ً	        9 > H  7'3 &7#!"&5463!2'&#!"3!26=4?6	!762xtt`   ^Qwww@?61B^^B@B^	@(` `\\\P`tt8`  ^Ͼww@w1^BB^^B~	@` \ \P          + Z  #!"&5463!12+"3!26=47676#"'&=# #"'.54>;547632www M8
pB^^B@B^'sw-

9*##;Noj'#ww@w"^BB^^B
	*"g`81T`PSA:'*4       / D  #!"&5463!2#"'&#!"3!26=4?632"'&4?62	62www@?61
B^^B@B^	@
BRnBBn^ww@w1
^BB^^B	@
BnnB          C   "&=!32"'&46;!"'&4762!#"&4762+!5462  4&& 4 &&4  4&& 4 &&4 4 &&4  4&& 4 &&4  4&&    z    6'&'+"&546;267:	&&&&	s@	
Z&&&&Z   z  +  6'&''&'+"&546;267667:	:	&&&&		s@	
:	
Z&&&&Z:  zz   6'&''&47667S::s@	
:4:    r   	&546h!!0a$           #!"&5463!2#!"&5463!2 & && && && &@&&&&&&&&          #!"&5463!2 &&&&@&&&&      z   &54646&5-:s::4:
	      z  +  &5464646;2+"&5&5-&&&&:s::&&&&
	:
	     z    &54646;2+"&5-&&&&s:&&&&
	         62#!"&!"&5463!24@&&&&-:& && &        	"'&476244444     Zf   	"/&47	&4?62S44444       # /  54&#!4&+"!"3!;265!26  $$ & && && && &@^aa@& && && && &+^aa        54&#!"3!26  $$ & && &@^aa@&&&&+^aa       + 7  4/7654/&#"'&#"32?32?6  $$ }ZZZZ^aaZZZZ^aa      #  4/&"'&"327> $$ [4h4[j^aa"ZiZJ^aa      : F  %54&+";264.#"32767632;265467>$ $$  oW	5!"40K(0?i+! ":^aaXRdD4!&.uC$=1/J=^aa       . :  %54&+4&#!";#"3!2654&+";26 $$  ```^aa ^aa      / _  #"&=46;.'+"&=32+546;2>++"&=.'#"&=46;>7546;232m&&m l&&l m&&m l&&ls&%&&%&&%&&%& &&l m&&m l&&l m&&m ,&%&&%&&%&&%&        # / ;  "/"/&4?'&4?627626.  6  $$ I














͒(r^aaɒ














(_^aa           ,  	"'&4?6262.  6  $$ Z4f44fz(r^aaZ&4ff4(_^aa        	  "  4'32>&#"  $&6$  WoɒV󇥔 zzz8YW˼[?zz:zz   @5 K    #!#"'&547632!2 A4@%&&K%54'u%%&54&K&&4A5K$l$L%%%54'&&J&j&K    5K    #"/&47!"&=463!&4?632%u'43'K&&%@4AA4&&K&45&%@6%u%%K&j&%K55K&$l$K&&u#   5K@ !  #"'+"&5"/&547632K%K&56$K55K$l$K&&#76%%53'K&&%@4AA4&&K&45&%%u'     5K "  #"'&54?63246;2632K%u'45%u&&J'45%&L44L&%54'K%5%t%%$65&K%%4LL4@&%%K'      ,   "&5#"#"'.'547!3462  4&bqb>#5&4 4 & 6Uue7D#		"ǆ &        /   #!"&546262"/"/&47'&463!2
&@&&4L

r&4

r

L&&
4&&&L

rI@&

r

L4&&     s  /  "/"/&47'&463!2 #!"&546262 &4

r

L&&
&@&&4L

r@@&

r

L4&&
4&&&L

r         #  #!+"&5!"&=463!46;2!28(`8((8`(88(8((8(8 (8`(88(8((8(88(`8          #!"&=463!28(@(88((8 (88((88   m 5  '%+"&5&/&67-.?>46;2%6.@g.L44L.g@.
.@g.
L44L
.g@.g.n.4LL43.n.gg.n.34LL4͙.n.g        -     $54&+";264'&+";26/a^



^aafm
        @    J  %55!;263'&#"$4&#"32+#!"&5#"&5463!"&46327632#!2$$8~+(888(+}(`8((8`]]k==k]]8,8e8P88P8`(88(@MM        O   4&#"327>76$32 #"'.#"#".'.54>54&'&54>7>7>32 &z&^&./+>*>J>	Wm7'
'"''? &4&c&^|h_bml/J@L@#M6:D
35sҟw$	'%
'	\t       3  #!"&=463!2'.54>54''@ 1O``O1CZZ71O``O1BZZ7@@N]SHH[3`)TtbN]SHH[3^)Tt           ! 1  &'   547 $ 4&#"2654632    '&476   ==嘅}(zVl''ٌ@uhyyhu9(}VzD##D#     	  = C U  %7.547 4&#"2654632% #"'&547.'&476 !27632#76$7&'7+NWb=嘧}(zVi\j1
z,XY[6
$!%'FuJiys?_9ɍ?kyhun(}VzYF
KA؉La
02-F"@Qsp@_       ! 3  %54&+";264'&+";26#!"&'&7>2 

 #%;" ";%# <F<7
??""??$$    2  #"'&'	+&/&'&?632	&'&?67>`,@L5`		
`	L`4LH``	a	5L@              # 3 7 ; ? O s  !!!!%!!!!%!!!!!!!!%!!4&+";26!!%!!!!74&+";26%#!"&546;546;2!546;232 `@ `@ @@  @@@ @  @@L44LL4^B@B^^B@B^4L  @@@@      @@  @@   M 4LL4 4L`B^^B``B^^B`L        7 q  .+"&=46;2 #"&=".'673!54632#"&=!"+"&=46;2>767>3!54632<M33K,		 j8Z4L2B4:;M33K, ?			 0N<* .)C=W]xD0N<* .)C=W]xD ?\-7H)		".=']-7H)
w		<?.>mBZxPV3!<?.>mBZxPV3!
        &   #"'&'5&6&>7>7&54>$32 dFK1A
0)L.٫C58.H(Ye      # 3 C   $=463!22>=463!2#!"&5463!2#!"&5463!2 H&&/<R.*.R</&& &&&& &&&&Bɀ&&4L&&L4&&f&&&&&&&&     Z     %"'	"/&4762444ͥ55     Z   	"'&4?62	6244455        % K  %#!".<=#"&54762+!2"'&546;!"/&5463!232 @&@<@&@	:&	& 
&&&	
`&          :  $"&462"&462!2#!"&54>7#"&463!2!2LhLLhLhLLh!&& &&& &4hLLhLLhLLhL %z<
0&4&&)17&4&&&           #!"&5463!2!2\@\\@\\@\\\\         W  *  #!"&547>3!2!"4&5463!2!2W+B"5P+B@"5^=\@\ \H#t3G#3G:_Ht\\     @      +32"'&46;#"&4762&& 4 && 4 4& &4  4& &4       @     "&=!"'&4762!5462  4& &4  4& &4 4 && 4 &&              !!!3!!                    0 @  67&#".'&'#"'#"'32>54'6#!"&5463!2 8ADAE=\W{O[/5dIkDtpČe1?*w@www	(M&B{Wta28r=Ku?RZ^GwT	-@www       $  2+37#546375&#"#3!"&5463ww/Dz?swww@wS88	ww           # ' . >   4&#"26546326"&462!5! &  !5!!=!!%#!"&5463!2B^8(Ԗ  > @|K5 5KK5 5K^B(8ԖԖ>v 5KK5 5KK   H  G   4&"&#"2654'32#".'#"'#"&54$327.54632@pp)*Pppp)*Pb	'"+`N*(a;2̓c`." b
PTY9ppP*)pppP*) b ".`(*Nͣ2ͣ`+"'	b
MRZB               4&"24&"264&"26#"/+"&/&'#"'&547>7&/.=46?67&'&547>3267676;27632#"&'"'#"'&547&'&=4767&547>32626?2#"&'"'#"'&547&'&=4767&547>32626?2ԖLhLKjKLhLKjK	"8w
s%(")v

>
	"8x
s"+")v
<
3zLLz33>8L3)x33zLLz33>8L3)x3ԖԖ 4LL45KK54LL45KK
#)0C

wZl/

Y	
N,&
#)0C	vZl.

Y	
L0"qG^^Gqq$ ]G)FqqG^^Gqq$ ]G)Fq         % O   #"'#"&'&4>7>7.546$ '&'&'# '32$7>54'VZ|$2$
|E~E<|
$2$|ZV:(t}X(	&%(Hw쉉xH(%&	(XZT\MKG        < m  $4&"24&#!4654&#+32;254'>4'654&'>7+"&'&#!"&5463!6767>763232 &4&&4N2`@`%)7&,$)'  %/0Ӄy#5 +1	&<$]`{t5KK5$e:1&+'3TF0h4&&4&3M:;b^v+D2 5#$IIJ 2E=\$YJ!$MCeM-+(K55KK5y*%Au]c         = p   4&"24&'>54'64&'654&+"+322654&5!267+#"'.'&'&'!"&5463!27>;2 &4&&4+ 5#bW0/%  ')$,&7)%`@``2Nh0##T3'"(0;e$5KK5 tip<&	1&4&&4& #\=E2 JIURI$#5 2D+v^b;:M2gc]vDEA%!bSV2MK55K(,,MeCM$!J   @   #"&547&547%6@?V8b%	I)         9  4.""'."	67"'.54632>32+C`\hxeH>Hexh\`C+ED4
#L</>oP$$Po>Q|I.3MCCM3.I|Q/Z$_dC+I@$$@I+           ( @  %#!"&5463!2#!"3!: "&5!"&5463!462ww@B^^B 
4&@&&&4 ` ww ^B@B^24& && &        % 5  73#7.";2634&#"35#347>32#!"&5463!2FtIG9;HIxI<,tԩw@wwwz4DD43EEueB&#1s@www      .  4&"26#!+"'!"&5463"&463!2#2&S3Ll&c4LL44LL4c@&&{ LhLLhL           ' ?  #!"&5463!2#!"3!26546;2"/"/&47'&463!2www@B^^B@B^@&4t

r

& &`ww@w@^BB^^B@R &t

r

4&&         @   "&5!"&5463!462	#!"&54&>3!2654&#!*.54&>3!24&@&&&4 sw@B^^B
@w4& && &3@w ^BB^       I  &5!%5!>732#!"&=4632654&'&'.=463!5463!2!2J  JSq*5&=CKuuKC=&5*q͍S8( ^B@B^ (8`N`Ѣ΀GtO6)"M36J[E@@E[J63M")6OtG(8`B^^B`8           % - 3   %'&76'&76''&76'&76'&6#5436&76+".=4'>54'6'&&"."&'./"?+"&5463!2	2				5



	
	z<: Ʃw
49[aA)O%-j'&]]5r,%O)@a[9(	0BA;+

>HCwww		5/)
	u
@wa-6OUyU[q	( -	q[UyUP6$C

+) (	
8&/&ww       ' ?  $4&"2$4&"2#!"&5463!3!267!2#!#!"&5!"'&762 &4&&4&&4&&48(@(88(c= =c(8* & & *6&4&&4&&4&&4& (88(@(88HH88`(@&&('@       1 d  4&'.54654'&#"#"&#"32632327>7#"&#"#"&54654&54>76763232632


	N<;+gC8A`1a99gw|98aIe$IVNz<:LQJ
	,-[%	061I()W,$-7,oIX()oζA;=N0
eTZ

(         O  #".'&'& '&'.54767>3232>32e^\3@P	bMO0#382W#& 9C9
Lĉ"	82<*9FF(W283#0OMb	P@3\^eFF9*<28	"L
9C9 &#           !"3!2654&#!"&5463!2`B^^B@B^^ީwww@w ^BB^^B@B^ww@w      #  !72#"'	#"'.546763 YY!''!0#GG$/!''! &UUjZ	8""8 X!	8"	"8	        E U  4'./.#"#".'.'.54>54.'.#" 32676#!"&5463!2 G55
:8c7)1)

05.D<90)$9 w@wwwW+
AB7c)$+
-.1 9$)0<D.59@www    ,  T  1  # '327.'327.=.547&54632676TC_LҬ#+i!+*pDNBN,y[`m`%i]hbEm}au&,SXK
&$f9s?
    _    #"!#!#!54632V<%' ЭHH	(ں       R   &=4'>54'6'&&"."&'./"?'& 54$  49[aA)O%-j'&]]5r,%O)@a[9(	0BA;+

>HCaaoMa-6OUyU[q	( -	q[UyUP6$C

+) (	
8&/&fMa         %  +"&54&"32#!"&5463!54   &@&Ԗ`(88(@(88(r && jj8((88(@(8        # ' +  2#!"&5463"!54&#265!375!35!B^^BB^^B` ^B@B^^BB^ `       ! =   "&462+"&'& '.=476;+"&'& $'.=476;pppp$!$qr%}#ߺppp!E$rqܢ#%ֻ!           ) ?   "&462"&4624&#!"3!26!.#!"#!"&547>3!2/B//B//B//B@2^B@B^\77\aB//B//B//B/@~B^^B@2^5BB52   v  . 4  2## %&'.67#"&=463! 2 5KK5L4_u:B&1/&.-
zB^^B4LvyKjK4L[!^k'!A3;):2*<vTq6^BB^L4$)*    @     A  4#"&54"3! 4."#!"&5!"&5>547&5462;U gIv0ZZ0L4@Ԗ@4L2RX='8P8'=XR U;Ig0,3lb??bl34LjjL4*\(88(\   x I  /#"/'&/'&?'&'&?'&76?'&7676767676`
(5)0
)*)
0)5(

(5)0
))))
0)5(
*)
0)5(
)5)0
)**)
0)5)

)5)0
)*      5 h  $4&"24&#!4>54&#"+323254'>4'654&'!267+#"'&#!"&5463!2>767>32!2 &4&&4N2$YGB(HGEG  HQ#5K4Li!<;5KK5 
A#("/?&}vh4&&4&3M95S+C=,@QQ9@@IJ 2E=L5i>9eME;K55K	J7R>@#zD<      7 ? s  %3#".'.'&'&'.#"!"3!32>$4&"2#!"#"&?&547&'#"&5463!&546323!2`  #A<(H(GY$2NL4K5#aWTƾh&4&&4K5;=!ihv}&?/"(#A
 5K2*!Q@.'!&=C+S59M34L=E2 JI UR@@&4&&4&5K;ELf9>ig<Dz#@>R7J	K         5 h  4&"24#"."&#"4&#"".#"!54>7#!"&54.'&'.5463246326326 &4&&4IJ 2E=L43M95S+C=,@QQ9@@E;K55K	J7R>@#zD<gi>9eMZ4&&4&<#5K4LN2$YGB(HGEG  HV;5KK5 
A#("/?&}vhi!<         4 < p  4.=!32>332653272673264&"2/#"'#"&5#"&54>767>5463!2@@2*!	Q@.'!&=C+S59M34L.9E2 JI UR&4&&4&Lf6Aig6Jy#@>R7J	K55K;E@TƾH  #A<(H(GY$2NL4K#5#a=4&&4&D=ihv}&?/"(#A
 5KK5;         +  54&#!764/&"2?64/!26  $$  &
[6[[j6[& ^aa@&4[[6[[6&+^aa        +   4/&"!"3!277$ $$ [6[
&&[6j[^aae6[j[6&&4[j[^aa      +   4''&"2?;2652?$ $$ [6[[6&&4[^aaf6j[[6[
&&[^aa      +   4/&"4&+"'&"2?  $$ [6&&4[j[6[j^aad6[&&
[6[[j ^aa             $2>767676&67>?&'4&'.'.'."#&6'&6&'3.'.&'&'&&'&6'&>567>#7>7636''&'&&'.'"6&'6'..'/"&'&76.'7>767&.'"76.7"7"#76'&'.'2#22676767765'4.6326&'.'&'"'>7>&&'.54>'>7>67&'&#674&7767>&/45'.67>76'27".#6'>776'>7647>?6#76'6&'676'&67.'&'6.'.#&'.&6'&.5/a^D&"	


	4	$!	#	
		
	


 
.0"Y
	+!	
	
$		"+


		
	Α	
		^aa
	

					

		
			P '-(	#	*
$
"!				*
!	
(				
	
$
		
2   ~   /  $4&"2	#"/&547#"  32>32&4&&4V%54'j&&'/덹:,{	&4&&4&V%%l$65&b'Cr!"k[G             + ;  %!5!!5!!5!#!"&5463!2#!"&5463!2#!"&5463!2    &&&&&&&&&&&&@ && && && && && &&      #"'&5&763!2{' * *)* )'             /  !5!#!"&5!3!26=#!5!463!5463!2!2  ^B@B^&@&`   ^B`8(@(8`B^   B^^B&&B^(88(^      G  	76#!"'&?	#!"&5476	#"'&5463!2	'&763!2#"'c)'&@**@&('c(&*cc*&'*@&('c'(&*cc*&('c'(&@*        1 9 A S [  #"&532327#!"&54>322>32 "&462  &6 +&'654'32>32"&462QgRp|Kx;CByy 6Fe=
BPPB
=eF6  ԖV>!pRgQBC;xK|Ԗ{QNa*+%xx5eud_C(+5++5+(C_due2ԖԖ>NQ{u%+*jԖԖ     p ! C i  4/&#"#".'32?64/&#"327.546326 #"/&547'#"/&4?632632(* 8(!)(A(')* 8(!USxySSXXVzxTTUSxySSXXVzxT@( (8 *(('((8 SSUSx{VXXTTSSUSx{VXXT        #!" 5467&54 32632t,Ԟ;F`j)6,>jK?  Q/  !  %#!"&7#"&463!2+!'5#8EjjE8@&& &&@XYY&4&&4&qDS%q%       N \ j x     2"&4#"'#"'&7>76326?'&'#"'.'&676326326&'&#"32>'&#"3254?''74&&4&lNnbSVZbRSD	zz	DSRb)+USbn\.2Q\dJ'.2Q\dJ.Q2.'Jd\Q2.'Jd`!O` 	`&4&&4r$#@B10M5TNT{L5T	II	T5L;l'OT4M01B@#$*3;$*3;;3*$;3*$:$/ @@Qq`@         " % 3 <  2#!"&5!"&5467>3!263!	!!#!!46!#!(88(@(8(8(`((8D<++<8(` (8(`8(@(88( 8((`(8((<`(8 (``(8    || ?  %#"'&54632#"'&#"32654'&#"#"'&54632|udqܟs]
=
OfjL?R@T?"&
>
f?rRX=Edudsq
=
_MjiL?T@R?E& f
>
=XRr?b      ! 1 E  )!34&'.##!"&5#3463!24&+";26#!"&5463!2  

08((88(@(88((88((`(1

`(88( (88( @`(88(@(8(`         #!"&5463!2 w@www`@www             /  %#!"&=463!2#!"&=463!2#!"&=463!2 &&&&&&&&&&&&&&&&&&&&&&&&    @    ' 7 G  $"&462"&462#!"&=463!2 "&462#!"&=463!2#!"&=463!2ppppppp@ppp@@Рppppppppp         < L \ l |  #"'732654'>75"##5!!&54>54&#"'>3235#!"&=463!2!5346=#'73#!"&=463!2#!"&=463!2}mQjB919+i1$AjM_3</BB/.#U_:IdDRE@k*Gj@@TP\BX-@8
C)5XsJ@$3T4+,:;39SG2S.7<vcc)(%Ll}         5 e  2#!"&=463%&'&5476!2/&'&#"!#"/&'&=4'&?5732767654'&@02uBo
T25XzrDCBBEh:%)0%HPIP{rQ9f#-+>;I@KM-/Q"@@@#-a[$&P{<8[;:XICC>. '5oe71#.0(l0&%,"J&9%$<=DTI     c s  &/6323276727#"327676767654./&'&'737#"'&'&'&54'&54&#!"3!260%<4"VRt8<@<-#=XYhW8+0$"+dTLx-'I&JKkmuw<=V@!X@		v'|N;!/!$8:IObV;C#V
&(mL.A:9 !./KLwPM$@@  
       / ? O _ o     %54&#!"3!2654&#!"3!2654&#!"3!2654&#!"3!2654&#!"3!2654&#!"3!2654&#!"3!2654&#!"3!2654&#!"3!26#!"&5463!2 @@ @ @ @ @ @ @@^BB^^B@B^NB^^B@B^^         # + 3  	'$"/&4762%/?/?/?/?%k*66bbbb|<<<bbbbbbbb%k66Ƒbbb<<<<^bbbbbb    @      M  $4&"2!#" 4&"2&#"&5!"&5#".54634&>?>;5463!2LhLLh		 LhLLhL!'ԖԖ@'!&	?& &LhLLhL 		hLLhL 	jjjj	&@6/"&&       J   #"'676732>54.#"7>76'&54632#"&7>54&#"&54$  ok;	-j=yhwi[+PM3ѩk=J%62>VcaaQ^ ]G"'9r~:`}Ch  0=Z٤W=#uY2BrUI1^Fk[|a      L  2#!67673254.#"67676'&54632#"&7>54&#"#"&5463ww+U	,i<F{jh}Z+OM
2ϧj<J%51=Ubwww@wzX"'8'TyI9`{Bf 
,>XբW<"uW1AqSH1bdww        % S _ o  #".54>32#".54632?!"32732>54.4>54&'35#5##33#!"&5463!2=uQ)OH,2QS+*
$		JB;5P#@<5Q#jXUg^(R/9%<NM&<yjB(::(,,-2v@@w@www>LI&D,.D#<OUl4=VZp@@W]{,23X3+E,=hA1Q4+-,)&.I.<O3@@@`@www     N  0 E ` l  #"&'&54676%.547#"&5467>3!#'267654.#"2>54.'&#"3##5#5353@[Z@0HꟄ9%YJ .H?MpJL1EF1&P5"?j@*Q/+=Y6:k[7'9C 5hoS6Fq}kii$ECPNZSzsS`<GQ.R*@)$1R6B@X?ZHsG;@>!9f:}R'!;e.ggR44^>0$/.0$8];Fk;lll         , <  !5##673#$".4>2"&5!#2!46#!"&5463!2 rM* *M~~M**M~~M*jjj& && &`P%挐|NN||NN|* jj jj@&&&&    @     "'&463!2 @4@&Z4@4&        @    #!"&4762 &&4Z4&&4@     @    "'&4762&4@4&@&4&      @    "&5462@@4&&44@&&@           3!!%!!26#!"&5463!2`m`^BB^^B@B^ `@B^^BB^^    @     "'&463!2#!"&4762 @4@&&&&44@4&Z4&&4@            "'&463!2 @4@&4@4&        @    #!"&4762 &&4Z4&&4@          :  #!"&5;2>76%6 +".'&$'.5463!2 ^B@B^,9j9Gv33vG9H9+bI\
A+=66=+A
[">nSMA_:B^^B1&c*/11/*{'VO3@/$$/@*?Nh^    l   +  !+"&5462!4&#"!/!#>32]_gTRdgdQV?UI*Gg?!2IbbIJaaiwE3300 08        4   #"$'&6?6332>4.#"#!"&54766$32 z䜬m
IwhQQhbF*@&('kz
	
_hQнQGB'(&*eoz  ( q  !#"'&547"'#"'&54>7632&4762.547>32#".'632%k'45%&+ ~((h		&

\((		&

~ +54'k%5%l%%l$65+ ~

&		((\

&		h((~ +%'         ! ) 1 9 K   4&"2 4&"26.676&$4&"2 4&"24&"2#!"'&46$ KjKKjKjKKje2.e<^P,bKjKKjKjKKjKjKKj##LlLKjKKjKjKKjK~-M<M(PM<rjKKjKjKKjKujKKjKL           <    6?32$6&#"'#"&'5&6&>7>7&54$ LhяW.{+9E=cQdFK1A
0)pJ2`[Q?l&٫C58.H(Y'        : d    6?32$64&$ #"'#"&'&4>7>7.546'&'&'# '32$7>54'Yj`a#",5NK
~EVZ|$2$
|:
$2$|ZV:(t}hfR88T
h̲X(	&%(Hw(%&	(XZT\MKG{x   !  #"'.7#"'&7>3!2%632u
jH{(e9
1b      U  #!"&546;5!32#!"&546;5!32#!"&546;5463!5#"&5463!2+!232 8((88(` `(88((88(` `(88((88(`L4 `(88(@(88(` 4L`(8 (88(@(88((88(@(88((88(@(84L8(@(88((8L48      O Y  "&546226562#"'.#"#"'.'."#"'.'.#"#"&5476 $32&"5462И&4&NdN!>!1X:Dx++ww++xD:X1- U! *,*&4&hh&&2NN2D&
..J<
$$
<JJ<
$$
<J..
Pbb&&          7  !!"&5!54&#!"3!26!	#!"&=!"&5463!2 `(8 @ + 8(@(8(88(@(8(8( @@m+U`(88(8(@(88(h`         ( \  "&54&#"&46324."367>767#"&'"&547&547&547.'&54>2l42cKEooED
)

)
Dg-;</-?.P^P.?-/<;-gYY.2 L4H|O--O|HeO,,Oeq1Ls26%%4.2,44,2.4%%62sL1qcqAAq      4  #!#"'&547632!2#"&=!"&=463!54632 		@	`		`?`
@		@	!		
          5  4&+4&+"#"276#!" 5467&54 32632 	`		_
v,Ԝ;G_j)``			_ԟ7,>jL>       5  4'&";;265326#!" 5467&54 32632 			
v,Ԝ;G_j)	`		`7,>jL>        X `  $"&462#!"&54>72654&'547 7"2654'54622654'54&'46.'  &6 &4&&4&yy%:hD:FppG9Fj 8P8 LhL 8P8 E;
Dh:%>4&&4&}yyD~s[4Dd=PppP=d>hh>@jY*(88(*Y4LL4Y*(88(*YDw"
A4*[s~>       M   4&"27 $=.54632>32#"' 65#"&4632632 65.5462 &4&&4G9&
<#5KK5!!5KK5#<
&ܤ9Gpp&4&&4&@>buោؐ &$KjKnjjKjK$& jjb>Ppp        %  !5!#"&5463!!35463!2+32  @\\ 8(@(8 \@@\ \@\  (88(\   @    3  4#"&54"3#!"&5!"&5>547&5462;U gI@L4@Ԗ@4L2RX='8P8'=XR U;Ig04LjjL4*\(88(\    @    "   4&+32!#!"& +#!"&5463!2pP@@P j j@@\@\&0pj	 \\&       - B  +"&5.5462265462265462+"&5#"&5463!2G9L44L9G&4&&4&&4&&4&&4& L44L &=d4LL4d=&&`&&&&`&&&&4LL4  &         # 3 C S  #!"&5463!2!&'&!"&5!463!2#!"&52#!"&=4632#!"&=463(8((88((`x
c`(8  @@@`((88(@(8(D9 8( `@@@ @@        / ? O _ o         -=  %+"&=46;25+"&=46;2+"&=46;2%+"&=46;2+"&=46;2%+"&=46;2%+"&=46;2%+"&=46;2+"&=46;2%+"&=46;2%+"&=46;2%+"&=46;2+"&=46;2%+"&=46;2%+"&=46;2+"&=46;2%+"&=46;2+"&=46;2!!!5463!2#!"&5463!2@@@@ @@ @@ @@ @@ @@ @@ @@ @@ @@ @@ @@ @@ @@ @@ @@ @@ @ & && &@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@  `&&&&        / ? O _ o        %+"&=46;25+"&=46;2+"&=46;2%+"&=46;2+"&=46;2%+"&=46;2%+"&=46;2+"&=46;2%+"&=46;2+"&=46;2!!#!"&=!!5463!24&+"#54&+";26=3;26%#!"&5463!463!2!2@@@@ @@ @@ @@ @@ @@ @@ @@ @@  8(@(8 @@@@@ & &&@8((8@&@@@@@@@@@@@@@@@@@@@@ (88( @````- && & (88(&  @    < c  $4&"2!# 4&"254&+54&+"#";;26=326+"&5!"&5#"&46346?>;463!2KjKKj KjKKj &ԖԖ&&@&&KjKKjK 
jKKjK .&jjjj&4&@@&&      # ' 1 ? I  54&+54&+"#";;26=326!5!#"&5463!!35463!2+32    \\8(@(8 \  \ \@\  (88(\          :  #32+53##'53535'575#5#5733#5;2+3@E&&`@@`    `@@`&&E%@`@ @ @		      		@ :#   @      !3!57#"&5'7!7! K5@   @ 5K@@@      # 3  %4&+"!4&+";265!;26#!"&5463!2 && &&&& && w@www&&@&&&&@&&@www        # 3  54&#!4&+"!"3!;265!26#!"&5463!2 &&&&&@&&@& w@www@&@&&&&&&@&:@www    - M3  )  $"'&4762	"'&4762	s
2

.



2

w
2

.



2

w
2





2

ww

2





2

ww     M3  )   "/&47	&4?62"/&47	&4?62S
.

2

w

2


.

2

w

2

M
.

2



2

.

.

2



2

.   M 3S  )  $"'	"/&4762"'	"/&47623
2

ww

2





2

ww

2




2

w

2



.v
2

w

2



.    M 3s  )   "'&4?62	62"'&4?62	623
.

.

2



2

.

.

2



2
.



2

w

2v
.



2

w

2   - Ms3    	"'&4762s
w

2

.



2
ww

2





2     MS3    "/&47	&4?62S
.

2

w

2

M
.

2



2

.    M3S    "'	"/&47623
2

ww

2



m
2

w

2



.    M-3s    "'&4?62	623
.

.

2



2-
.



2

w

2        /  4&#!"3!26#!#!"&54>5!"&5463!2 @^B  & &  B^^B@B^ @MB^%Q=&&<P&^B@B^^            + 3  "&5463!2#3!2654&#!"3#!"&=324+"3B^^B@B^^B@`^BB^p ^BB^^B@B^`@S`(88(``             '  $4&"2%4&#!"3!26#!"&5463!2&4&&4@^BB^^B@B^f4&&4&@B^^B@B^^            /  $4&"2%4&#!"3!264+";%#!"&5463!2/B//B   0L4 4LL4 4L_B//B/@M    4LL4 4LL            >& $$ (r^aa(^aa        ! C  #!"&54>;2+";2#!"&54>;2+";2 pPPpQh@&&@j8(PppPPpQh@&&@j8(Pp@PppPhQ&&j (8pPPppPhQ&&j (8p         ! C  +"&=46;26=4&+"&5463!2+"&=46;26=4&+"&5463!2 Qh@&&@j8(PppPPpQh@&&@j8(PppPPp@hQ&&j (8pPPppP@hQ&&j (8pPPpp     @@  	   # + 3 ; G  $#"&5462 "&462 "&462#"&462 "&462 "&462 "&462#"&54632K54LKj=KjKKjKjKKjL45KKjK<^^^KjKKjppp\]]\jKL45KjKKjKujKKjK4LKjKK^^^jKKjKpppr]]\            $$  ^aaQ^aa      ,  #"&5465654.+"'&47623  #>bqb&4  4&ɢ5"		#D7euU6 & 4 & m       1 X   ".4>2".4>24&#""'&#";2>#".'&547&5472632>3=T==T==T==T=v)GG+v@bRRb@=&\Nj!>3lkik3hPTDDTPTDDTPTDDTPTDD|xxXK--K|Mp<#	)>dA{RXtfOT# RNftWQ          ,  %4&#!"&=4&#!"3!26#!"&5463!2!2 8(@(88((88((8\@\\@\\(88(@(88(@(88@\\\\       u  ' E  4#!"3!2676%!54&#!"&=4&#!">#!"&5463!2!2325([5@(\& 8((88((8 ,9.+C\\@\ \6Z]#+#,k(88(@(88(;5E>:5E\\\ \1.           $ 4 @  "&'&676267> "&462"&462 .  > $$ n%%/02
KjKKjKKjKKjKfff^aayy/PccP/jKKjKKjKKjKffff@^aa        $ 4 @  &'."'.7>2 "&462"&462 .  > $$ n20/%7KjKKjKKjKKjKfff^aa3/PccP/y	jKKjKKjKKjKffff@^aa         + 7   #!"&463!2 "&462"&462 .  > $$ &&&&KjKKjKKjKKjKfff^aa4&&4&jKKjKKjKKjKffff@^aa       # + 3 C  54&+54&+"#";;26=3264&"2 4&"2$ #"'##"  3!2@@KjKKjKKjKKjKܒ,gjKKjKKjKKjKXԀ,,          # / ; G S _ k w       +"=4;27+"=4;2'+"=4;2#!"=43!2%+"=4;2'+"=4;2+"=4;2'+"=4;2+"=4;2+"=4;2+"=4;2+"=4;2+"=4;54;2!#!"&5463!2```` ````````````` `` `` p` K55KK55Kp````````````````````````` 5KK55KK     @   * V  #"'.#"63232+"&5.5462#"/.#"#"'&547>32327676R?d^7ac77,9xm#@#KjK#
ڗXF@Fp:f_ #WIpp&3z	h[ 17q%q#::#5KKu't#!X:	%#+=&>7p   @    * 2 F r  56565'5&'.	#"32325#"'+"&5.5462#"/.#"#"'&547>32327676@ͳ82.,#,fk*1x-!#@#KjK#
ڗXF@Fp:f_ #WIpp&3z	e`vo8t-	:5	[*#::#5KKu't#!X:	%#+=&>7p    3  $  	"/&47	&4?62#!"&=463!2I.

2

w

2


-@).

2



2

.
-@@     -S  $ 9  %"'&4762		/.7>	"/&47	&4?62i2

.



2

w
E>u>.

2

w

2


2





2

ww
!h.

2



2

.
       ;  #"'&476#"'&7'.'#"'&476'  )'s"+5+@ա'  )'F* 4 *Er4M:}}8GO* 4 *     
 (  -/'	#"'%#"&7&67%632B;><V??V --C4
<B=cB5!%%!b 7I))9I7       	#"'.5!".67632y(
#
  ##@,(
)        8  !	!++"&=!"&5#"&=46;546;2!76232-SSS

		 SS``		

          K  $4&"24&"24&"27"&5467.546267>5.5462 8P88P88P88P8P88P4,DS,4pp4,,4pp4,6d7AL*',4ppP88P8P88P8HP88P8`4Y&+(>EY4PppP4Y4Y4PppP4Y%*<O4Y4Ppp        & A ] i u   	#"'&4762"&5462&#!"&463!2#"'&'7?654'7&#"&'&54?632#!"&463!2"&5462"'&4762 
		 

	@USxySR#PT('#TUSxySN@ 		 

		 		

 		
3@xSSUO#'(V^'(PVvxSSUi @ 		

 		
     ^     <  +"&=46;2+"&=467>54&#"#"/.7!2<'G,')7N;2]=A+#H0PRH6^;<T%-S#:/*@Z}

>h         .  %#!"&=46;#"&=463!232#!"&=463!2& &&@@&&&@&& && &&&&&&&&f&&&&   a      #!"&=463!2#!"&'&63!2 & && &' '%@% &&&& && &&    k " G  %#/&'#!53#5!36?!#!'&54>54&#"'6763235	
Ź}4NZN4;)3.i%Sin1KXL7觧*	#&		*@jC?.>!&1'\%Awc8^;:+<!P        " F  %#/&'#!53#5!36?!#!'&54>54&#"'6763235	
Ź}4NZN4;)3.i%PlnEcdJ觧*	#&		*-@jC?.>!&1'\%AwcBiC:D'P          %!	#!"&'&6763!2P &: &?&: &?5"K ,)""K ,)      h  #".#""#"&54>54&#"#"'./"'"5327654.54632326732>32YO)I-D%n "h.=T#)#lQTv%.%P_	%	%_P%.%vUPl#)#T=@/#,-91P+R[Ql#)#|''
59%D-I)OY[R+P19-,# #,-91P+R[YO)I-D%95%_P%.%v      ' 3   !2#!"&463!5& =462   =462 &546  &&&& &4&r&4& @&4&&4&G݀&&&&f    s   C K  &=462	#"'32 =462 !2#!"&463!5&'"/&4762%4632e*&4&i76`al&4& &&&& }n

R



R
zfOego&&5`3&&&4&&4&D

R



R
z v        "  !676"'.5463!2@@w^Cct~55~tcC&&@?J V|RIIR|V &&           # G  !!%4&+";26%4&+";26%#!"&546;546;2!546;232@@ @@L44LL4^B@B^^B@B^4L   N 4LL4 4L`B^^B``B^^B`L     L   4&"2%#"'%.5!#!"&54675#"#"'.7>7&5462!467%632 &4&&4@ o& &}c ;pG=(8Ai8^^.&4&&4&`	`fs&& jo/;J!#2
 KAE*,B^^B!`	      -   4&"2#"/&7#"/&767%676$!28P88PQr	@U	@
{`PTP88P8P`
	@U	@rQ           !6'&+!!!!2Ѥ8̙e;<*@8 !GGGQII            %764'	64/&"2  $$ f3f4:4^aaf4334f:4:^aa         %64'&"	2  $$ :4f3f4F^aa4f44f^aa         764'&"27	2  $$ f:4:f4334^aaf4:4f3^aa            %64/&"	&"2  $$ -f44f4^aa4f3f4:w^aa   @    7!!/#35%!'!%j/djg2|855dc b    @   !	!%!!7!FG)DH:&HdS)         U   4&"2#"/ $'#"'&5463!2#"&=46;5.546232+>7'&763!2&4&&4f
]wq4qw]	`dC&&:FԖF:&&Cd`4&&4&	]]	`d[}&&"uFjjFu"&&y}[d       #  2#!"&546;4   +"&54&" (88(@(88( r&@&Ԗ 8((88(@(8@&&jj           ' 3   "&462 &         .  > $$  Ԗ>aX,fff^aaԖԖa>TX,,~ffff@^aa          /  +"&=46;2+"&=46;2+"&=46;28((88((8 8((88((8 8((88((8 (88((88((88((88((88((88           /  +"&=46;2+"&=46;2+"&=46;28((88((88((88((88((88((8 (88((88(88((88(88((88        5 E  $4&"2%& '&;26%&.$'&;276#!"&5463!2 KjKKjf	
\
w@wwwjKKjK"Hܚf


	@www             $64'&327/a^  !  ^aaJ@%%	  65   /  	64'&"2	"/64&"'&476227 <ij6j6u%k%~8p8}%%%k%}8p8~%<<ij4j4t%%~8p8~%k%%%}8p8}%k          54&#!"3!26#!"&5463!2 &&&& w@www@&&&&:@www        /  #!"&=463!24&#!"3!26#!"&5463!2@^BB^^B@B^www@w@@2@B^^BB^^ww@w       +#!"'&?63!#"'&762(@	@(@>@%%%        !232"'&76;!"/&76 ($>(		 J &%       $  %64/&"'&"2#!"&5463!2ff4-4ff4fw@wwwf4f-f4@www         /  #5#5'&76	764/&"%#!"&5463!248`# \P\w@www4`8#@  `\P\`@www        )  4&#!"273276#!"&5463!2 & *f4' w@www`&')4f*@www     % 5  	64'&"3276'7>332#!"&5463!2`'(wa8!

,j.(&w@www`4`*'?_`ze<	bw4/*@www           - .  6  $$     (r^aaO (_^aa       -  "'&763!24&#!"3!26#!"&5463!2yB((@ w@www]#@## @@www       -  #!"'&7624&#!"3!26#!"&5463!2y((@B@u@ w@www###@@@www       -   '&54764&#!"3!26#!"&5463!2@@####@ w@wwwB((@@www      `  %#" '#"&=46;&7#"&=46;6 32/.#"!2#!!2#!32>?6#!"'?_BCbCaf\	+~2	

	}0$q90r pr%Dpu       ?  #!"&=46;#"&=46;54632'.#"!2#!!546;2Da__	g	
*`-Uh1߫}
	$^L    %   b  +"&=.'&?676032654.'.5467546;2'.#"ǟB{PDg	q%%Q{%P46'-N/B).ĝ9kC<Q7>W*_x*%K./58`7E%_	,-3
cVO2")#,)9;J)"!*
#VD,'#/&>AX      >  ++"' '&=46;267!"&=463!&+"&=463!2+32Ԫ$
		pU9ӑ@/*fo	VRfqf=S    E  !#"&5!"&=463!5!"&=46;&76;2>76;232#!!2#![ 

%
)
	"JgUhBW&WXhUg        8   4&#!!2 #!!2#!+"&=#"&=46;5#"&=46;463!2j@jog|@~vvu            n  #467!!3'##467!++"'#+"&'#"&=46;'#"&=46;&76;2!6;2!6;232+32QKt# #FNQo!"դѧ!mY

Zga~bm]

[o"U+, @h
h@@Xhh@   8  3 H \  #5"'#"&+73273&#&+5275363534."#22>4.#2>ut3NtRP*Ho2
Lo@!R(Ozh=,G<X2O:&D1A.1G$<2I+A;"B,;&$LGlF/ 3D;a$8$".!3!
.          3!#!"&5463! 8( 8((88(  h (8(88(@(8         ( 8 H  !!#!"&5463!54&#!"3!2654&#!"3!2654&#!"3!26(D 8((88( 8@@@$(88(@(8(8 @@@@@@    }  
 $ B R  3/&5##"'&76;46;232!56?5"#+#5!76;5!53'#3!533H

Dq		x7	K//KFh/"		@`Z		sYwjjjjj      }  
 $ 4 R  %3/&5##"'&76;46;232!53'#3!533!56?5"#+#5!76;5H

K//KFq		x7	h/"		@`jjjjjZ		sY
w       ) 9 I Y  %#"'&76;46;232#!"&=463!2#!"&=463!2#!"&=463!2#!"&=463!2

 @@  `		@`          ) 9 I Y  #!"&=463!2%#"'&76;46;232#!"&=463!2#!"&=463!2#!"&=463!2   

@@ r		@`r       
 $ C V  %4&#"326#"'&76;46;232%#"'&'73267##"&54632!5346=#'73BX;4>ID2F

8PuE>.'%&TeQ,jm{+>R{?jJrL6V		@`7>wmR1quWei/rr:Vr        
 $ 7 V  4&#"326#"'&76;46;232!5346=#'73#"'&'73267##"&54632BX;4>ID2F

+>R{8PuE>.'%&TeQ,jm{?jJrL6		@`rr:Vr3>wmR1quWei    @   \  %4&#"326#!"&5463!2+".'&'.5467>767>7>7632!2 &%%&&&& &7.'	:@$LBWM{#&$h1D!		.I/!	Nr&&%%&&&&V?, L=8=9%pEL+%%r@W!<%*',<2(<&L,"r       @    \  #"&546324&#!"3!26%#!#"'.'.'&'.'.546767>; &%%&&&& &i7qN	!/I.		!D1h$&#{MWBL$@:	'.&&%%&&&&=XNr%(M&<(2<,'*%<!W@r%%+LEp%9=8=L       	   + = \ d       %54#"327354"%###5#5#"'&53327#"'#3632#"'&=4762#3274645"=424'.'&!  7>76#'#3%54'&#"32763##"'&5#327#!"&5463!2BBPJNC'%!	B?)#!CC $)54f"@@
B+,A

A+&+A
ZK35N #J!1331CCC $)w@www2"33FYF~(-&"o4*)$(*	(&;;&&:LA38334S,;;,WT+<<+T;(\g7x:&&::&&<r%-@www       	   + = [ c }     #"'632#542%35!33!3##"'&5#327%54'&#"5#353276%5##"=354'&#"32767654"2 '.'&547>76 3#&'&'3#"'&=47632%#5#"'&53327''RZZ:kid YYY.06	62+YY-06	R[!.'CD''EH$VVX::YX;:Yfyd/%jG%EC&&CE%O[52.[$C-D..D^^* ly1%=^I86i077S3
$EWgO%33%OO%35	EEFWt;PP;pt;PP;pqJgTFQ%33&PP%33%R7>%3!+}    '  +"&72'&76;2+"'66;2U
&
	(P

*'eJ."-dZ-n -         ' 7  4'&+";27&+";276'56#!"&5463!2~}		7e 	۩w@www"$Q#'!#@www            /   4'&327$ '.'.4>7>76   "!! jG~GkjGGk[J@&&
@lAIddIAllAIddIA   @       	'5557	,VWQV.RW=?l%l`~0    ~        #  %5!'#3!%%	%=#y?R'UaM|qByy[C#jXAAҷhUHG       / ?  %##" 547#3!26 4&#"3254&+";267#!"&5463!2R܂#-$䵀((((tQQttQvQtn?D~|D?x##))((QttQvQtt         2#!"&5463 4&"2$4&"2ww@ww||||||w@www|||||||       	   !3	37!  $$  n6^55^h
^aaM1^aa    O 
  * C g  '.676.7>.'$7>&'.'&'? 7%&'.'.'>767$/u5'&$I7ob?K\[zH,1+.@\7<?5\V,$Vg.GR@ 7U,+!	#	"8$}{)<?L RR;kr,yE[z#	/1
"#	#eCI0/"5#`	"84~&p)4	2{H-.%W.L>       ' : Y i  4&67&'&676'.'>7646&' '7>6'&'&7>7#!"&5463!2PR$++'TJXj7-FC',,&C."!$28h/"	+p^&+3$i0(w@www+.i6=Bn\C1XR:#"'jj8Q.cAj57!?"0D$4"P[&2@www     D~   "  %.5#5>7>;!!76PYhpN!HrD0M C0N#>8\xx: W]oW-X45       /  %'#.5!5!#"37>#!"&5463!2p>,;$4
 5eD+WcEw@wwwK()F
,VhV^9tjA0/@www @     #"'&76;46;23

	 &

        ++"&5#"&7632	^

c &

     @     #!'&5476!2  &

^

b	         '&=!"&=463!546
 &

	
     q  & 8  #"'&#"#"5476323276326767q'T1[VA=QQ3qpHih"-bfGw^44O#A?66%CKJA}}  !"䒐""A$@C3^q|z=KK?6lk)           %!%!VVuuu^-m5w}n          7 M [   264&"264&"2"&546+"&=##"&5'#"&5!467'&766276#"&54632    *<;V<<O@-K<V<<+*<J.@kclGH__H<+*<<*+<    <*R+<<+*<f.@+<<++<<+@.7uu7**R+<<++;; 	    "$1G  #5472&6&67><&4'>&4.'.'.'.'.'&6&'.'.6767645.'#.'6&'&7676"&'&627>76'&7>'&'&'&'&766'.7>7676>76&6763>6&'&232.'.6'4.?4.'&#>7626'.'&#"'.'.'&676.67>7>5'&7>.'&'&'&7>7>767&'&67636'.'&67>7>.'.67	\
U7	
J#!W!'	"';%
k	)"	
	'

/7* 		I	,6
*&"!O6*O $.(	*.'
.x,	$CN	
		*	
8		
7%&&_f&
",VL,G$3@@$+
"


V5 3"	""#dA++
y0D-%&n4P'A5j$9E#"c7Y
6"	&
8Z(;=I50' !!eR


"+0n?t(-z.'<>R$A"24B@(	~	9B9,	*$				<>	?0D9f?Ae 	.(;1.D	4H&.Ct iY% *	
7J	 <W0%$	
""I!*D	 ,4A'4J"	.0f6D4pZ{+*D_wqi;W1G("%%T7F}AG!1#% JG3         ' . 2 > V b  %&#'32&'!>?>'&' &>"6&#">&'>26 $$  *b6~#= XP2{&%gx| .W)oOLOsEzG<	CK}E	$MFD<5+
z^aa$MWM1>]|YY^DեA<KmE6<"@9I5*^aa       > ^  4./.543232654.#"#".#"32>#"'#"$&547&54632632':XM1h*+D($,/9p`DoC&JV<Z PA3Q1*223IoBkែhMIoPែhMIoP2S6,M!"@-7Y.?oI=[<%$('3 -- <-\%FuPoIMhPoIMh    ,}  # ? D  76&#!"7>;267676&#!"&=463!267
#!"'&5463!26%8#!&&Z"M>2!	^I7LRx_@>MN""`=&&*%I},
		L7_jj9          /  %4&#!"3!264&#!"3!26#!"&5463!2  &&&&  &&&&         1 9  #"'#++"&5#"&5475##"&54763!2 "&462 8(3-	&B..B&	-3(8 IggI `(8+Ue&.BB.&+8(kk`      % -  "&5#"&5#"&5#"&5463!2 "&462 8P8@B\B@B\B@8P8pPPp@`(88(`p.BB.0.BB.(88(Pppͺ      !  %>&'&#"'.$ $$ ^/(V=$<;$=V).X^aaJ`"(("`J^aa    '   I   4."2>%'%"/'&5%&'&?'&767%476762%6[՛[[՛oܴ
 
		$$	"	$$		՛[[՛[[5`

^^

2``2

^^

`     1  %#"$54732$%#"$&546$76327668ʴhf킐&^zs,!V[vn)	6<ׂf{z}))Ns3(  @   +   4&#!"3!2#!"&5463!2#!"&5463!2@& && f&&&&@& && &4&&4& @&&&& && &&    ` B H   +"/##"./#"'.?&5#"&46;'&462!76232!46 `&C6@Bb03eI;:&&&4L4&F
Z4&w4) ''5r&4&&4&&4   I   3#&/.#./.'&4?63%27>'./&'&7676>767>?>%6})N@2*& @P9A
#sGq]
#lh<*46+(	
<5R5"*>%</
 '2@ 5d)(=Z&VE/#E+)AC
(	2k<X1$:hI(B"	!:4Y&>"/	+[>hy
	    e 
  ! / U i   %6&'&676&'&6'.7>%.$76$% $.5476$6?62'.76&&'&676%.76&'..676#"NDQt	-okQ//jo_		%&JՂYJA-.--
9\DtT+X?*<UW3'	26$>>W0{"F!"E ^f`$"_]\<`F`FDh>CwlsJ@;=?s:i_^{8+?`)O`s2RDE58/K       r 	    #"'>7&4$&5mī"#̵$5$"^^W=acE*c      z  k  ./ "&4636$7.'>67.'>65.67>&/>z X^hc^O<q+f$H^XbVS!rȇr?5GD_RV@-FbV=3!G84&3Im<$/6X_D'=NUTL;2KPwtPt= 

&ռ,J~S/#NL,8JsF);??1zIEJpqDIPZXSF6[?5:NR=;.&1          +!"&=!!%!5463!2sQ9Qs***sQNQsBUwwUBF H CCTww      % 1   #"&=!"&=463!54632.  6  $$ 		`?(r^aa		
(_^aa         % 1  #!#"'&47632!2.  6  $$ 		@	`(r^aa
?		@	(_^aa        /  #"'&476324&#!"3!26#!"&5463!2 &@& @ w@www&@B@&@@www          "&462  >& $$  Ԗ*(r^aaԖԖ (^aa       ]  6  #"$547 32>%#"'!"&'&7>32'!!!2f:лѪz~u: ((%`V6B^hD%i(]̳ޛ	*>6߅r#!3?^BEa߀#9       # 3  6'&632#"'&'&63232#!"&5463!2
Q,&U#+' ;il4L92<D`w@www`9ܩ6ɽ]`C477&@www       D  +"&5#"'&=4?5#"'&=4?546;2%6%66 546;2
	
	wwwwcB
G]B
Gty]ty      # 3 C  #!+"&5!"&=463!46;2!24&#!"3!26#!"&5463!2@`@`^BB^^B@B^www@w@`@`2@B^^BB^^ww@w        ' / ? P  +5#"&547.467&546;532!764'!"+32#323!&ln@:MM:@nY*Yz--zY*55QDDU9pY-`]]`.X /2I$	t@@/!!/@@3,$,3$p$00&*0&&!P@     R V  2#"&/#"&/#"&546?#"&546?'&54632%'&54632763276%>S]8T;/M77T</L7=Q7,i<R7,5T</L666U;/M5<U<,i6iQ=a!;;V6-j;V6-5	P=/L596Q</L5<U6-i;V7,7O;-I68i;k         ) I  2#!"&5463#9"'.'.'3!264&#!"2>7%>ww@ww!"5bBBb./*
8(@(87)(8=%/'#?w@www#~$EE y &L(88e):8(%O r		

		O           ? G Q a q  47&67>&&'&67>&"&#6$32#"#"'654   $&6  $6&$ CoL.*KPx.* 
iSƓi
7J?~pi{_Я;lLUZ=刈刈_t'<Z :!
	@!
j`Q7$ky, Rfk*4LlL=Z=刈           &$&546$7%7&'5>]5%w  &P?zrSF!|         & 0  	##!"&5#5!3!3!3!32!546;2!5463)
)     ;));;)) &&        &@@&&&    	   6   $&727 "'%+"'&7&54767%&4762֬>4Pt+8?::
		
::AW``EvEEvE<."e$IE&O&EI&{h.`  m  "  &#"& '327>73271[>+)@(]:2+D?*%Zx/658:@#N
C=E(oE=W'c:   o   0 a  %4.'&#"32>4.#"32676!##"&'&54676%.547#"&5467>'9C!5goS6/Kce3:k[7u">j@*Q.+=Y4%Q5pKL1FE1@Z[@1G렄:$YJ .H?L0$/.0$8];8\;)4^;}R'!;e.ggR4!8HX?ZHsG;@"$ECPN[RzsS`;HQ.R)A)(-R6B@            " N ^   '&76232762$"&5462"&46274&"&'264&#"'&&#"32$54'>$ $&6$ G>>0yx14J55J5J44J5Fd$?4J55%6E#42F%$fLlLq>>11J44%&4Z%44J54R1F$Z-%45J521Z%F1#:ʎ 9LlL          # Q a  "'&7622762%"&5462"&546274&#"&'73264&#"'&&#"32654'>#!"&5463!255**.>.-@-R.>.-@-<+*q6- -- 0<o,+< 3w@www55**.. -- .. --G*<N' ,-@-+*M <*2zz1@www      0 <  754&""&=#326546325##"&='26  $$ bZtt&sRQsZ<tsQ^aa>OpoOxzRrqP6z~{{Prr^aa    ]  0  54&"#"&5!2654632!#"&57265&<T<H<T<H<T<8v*<<*
+;;+l:=:*;;*         %!!"!!26#!"&5463!2@ ]]@w@www] @@www         	     % )  3!!#335!!5!5!%#!!5!5!%#HH{RHH{GG{)qGRRqRRq     	  # 0 @   #"'632 #"'632 &#"7532&#"#7532#!"&5463!2L5+*5L5+*5~}7W|3B}}JC7=}w@wwwDZQ[1N:_)i$)@www   
 )	             6.#&#"'&547>'&#".'&'#"&5467%&4>7>3263232654.547'654'63277.'.*#">7?67>?>32#"'7'>3'>3235?KcgA+![<E0y$,<'.cI
	,# '!;7$=ep	//7/
D+R>,7*
2(-#=
	/~[(D?G  |,)"#+)O8,+'6	y{=@0mI#938OAE`
-
)y_/FwaH8j7=7?%a	%%!?)L
J9=5]~pj
 %(1$",I $@((
+!.S		-L__$'-9L	5V+	
	6T+6.8-$0+t|S1       6 ]   &#"'&#"67>76'&'&#"67>32764.#"#.32>67>7 $&54>7>7>7rJ@"kb2)W+,5/1		#

Z
-!$IOXp7sLCF9vz NAG#/ 5|Հ';RKR/J#=$,9,+$UCS7'2"1
 !/
,
/--ST(::(ep4AM@=I>".)xΤlsY|qK@
%(YQ&NEHv~        < Z x  '#"&5467&6?2?'&"/.7.546326#"&'&/7264/7'764&"'?>>32.AUpIUxYE.A%%%h%%hJ%D,FZxULsTgxUJrVD%hJ%@/LefL.C%Jh%CVsNUxϠ@.FZyUHpVA%h&%%%Ji%CWpIUybJ/Uy^G,D%Jh%@UsMtUC%hJ%C-Kfy        E X [ _ g j    &/&'.''67>7>7&'&'&'>76763>7>#&'&'767672'%'7'+"&'&546323267>7%#"'4'6767672,32,+DCCQLDf'
%:/d
B	4@}&!0$?Jfdf-.=6(:!TO?
!IG_U%
.j+.=;	5gN_X	"
##
292Q41*6nA;|BSN.	%1$6	#nk^        ' 7 G W g w       2+"&5463#!"&5463!254&+";2654&+";2654&+";2654&+";2654&+";2654&+";2654&+";2654&+";2654&+";26#"&=! B^^BB^^B:FjB^8((`(   `(8^BB^^B@B^"vE j^B (8(`( 8(         / ? O _ o         /?  2#!"&5463;26=4&+";26=4&+";26=4&+";26=4&+"54&+";2654&+";2654&+";2654&+";2654&+";2654&#!"3!2654&+";2654&+";2654&+";2654&+";2654&+";2654&+";2654&+";2654&+";2654&+";26@&& &&@@@@@@@@@@@@@@@@@@ @@@@@@@@@ @@@@@@@@@@ &&&&@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@    @`  %  	"&5#"&5&462!762$"&462B\B@B\B8PpP8.BB..BB.8$P88P広        3 C Q  #".54>32#".546322#"&#"#"54>%".54>32%2#"&54>&X=L|<&X=M{<TMLFTMLFv"?B+D?BJpH=X&<{M=X&<|dMTFLMTF(<kNsI<kNsPvoJPwo/s.=ZYVӮvNk<JsNk<IshwPJovPJo  @     +"&7.54>2r_-$$-_rUU%&&5%ő            '-"'.546762@FF$@B@$.&,&.]]|q #<<# (B  B               B  %'-%'-'%'-"'%&'"'%.5467%467%62@ll@ll,@GG&!@@@@@@!&+#+#6#+$*`:p:px
p=`$>>$&@&@

@&p@       	  & . A  !!"!&2673!"54 32!%!254#!5!2654#!%!2#!8Zp?vdΊens6(N[RWu?rt1SrF|iZ@7މoy2IMC~[R yK{T:         % , A G K  2#!"&5463!!2654'654.#532#532"&5!654&#"327#2#>!!ww@ww~uk'JTMwa|
DH>I1qFj?w@wwwsq*4p9O*¸Z^qh LE
"(nz8B
M         ' ?   "&462 4&#"'.'324&#"3267 ##"&/6326 32 .ʏhhMALR vGhг~~KyO^ʏʏВ*LM@!<I~~t\0          C M   4&"2 #"&'676&/632#!"&=3267%2654&#"&#"%463!2"&4632rqqtR8^4.<x3=RRw@w_h
YӖ	K>שwwȍde)qrOPqȦs:03=<x!m@wwE\xgӕє%wwdȎ  V   - < K \  %.'.>7'.?67'67%'>&%'7%7./6D\$>	"N,?a0#O1G9'/P(1#00($=!F"9|]"RE<6'o9%8J$\:\HiTe<?}V#oj?d,6%N#"
HlSVY]C=    @     C   4&"2!.#!" 4&"2+"&=!"&=#"&546;>3!232^^^Y	 	^^^`pp pp`]ib bi]~^^^e^^^ PppPPppP]^^]       3 ; E M  2+"&=!"&=#"&546;>;5463!232 264&"!.#!" 264&" ]`pp pp`]ibbi^^^dY	 	!^^^]@PppP@@PppP@]^^] ^^^e^^^      3  $#!#!"&5467!"&47#"&47#"&4762++&2
$$
2&&&4&&Z4&&##&&4&4&44&m4&m      + D P  4'&#"32763232674'&!"32763 3264'&$#"32763232> $$ g* o`#ə0#z#l(~̠)-g+^aaF s"	+g(*3#!|#/IK/%*%D=)[^aa        	!!!'!!77! ,/,-a/G      	 t  % / ; < H T b c q         %7.#"32%74'&"32765"/7627#"5'7432#"/7632#"5'7432#"&5'74632	#"/6327#"/6327#"/46321"&/462"&/>21"&/567632#!.547632 632
		*
			X		

^`		

^b	c
	fuU`59u


4J
	l~		~	F	
	2		m|O, 	
ru|	u
"            ) 9    $7 $&=  $7 $&=  $7 $&=   $&=46w`ww`ww`wb` VTEvEEvETVTEvEEvET*VTEvEEvET*EvEEvEEvEEv         # ^ c u    #!"&5463!2!&'&!"&5!632#"&'#"/&'&7>766767.76;267674767&54&5&'67.'&'&#3274(8((88((`x
c`(8 !3;:A0?ݫY
	^U	47D$	74U3I|L38wtL0`((88(@(8(D9 8( Q1&(!;
(g-	Up~R2(/{E(Xz*Z%(i6CmVo8          # Q  #!"&5463!2!&'&!"&5!3367653335!3#'.'##'&'35(8((88((`x
c`(8 iFFZcrcZ`((88(@(8(D9 8( kk"	kkJ 	!	k         # S  #!"&5463!2!&'&!"&5!%!5#7>;#!5#35!3#&'&/35!3(8((88((`x
c`(8 -Kg
kL#DCJgjLD`((88(@(8(D9 8( jj	jjkkkk            # 8 C  #!"&5463!2!&'&!"&5!%!5#5327>54&'&#!3#32(8((88((`x
c`(8  G]L*COJ?0R\wx48>`((88(@(8(D9 8( jjRQxk!RY            # * 2  #!"&5463!2!&'&!"&5!!57"&462(8((88((`x
c`(8  Pppp`((88(@(8(D9 8( ppp  	          # * 7 J R  5#5#5#5##!"&5463!2!&'&!"&5##5!"&54765332264&"  <(8((88((`x
c`(8 kޑcO"jKKjK`((88(@(8(D9 8( SmmS?M&4&&4            # 9 L ^  #!"&5463!2!&'&!"&5!#"/#"&=46;76276'.'2764'.(8((88((`x
c`(8 6ddWW6&44`((88(@(8(D9 8( .	G5{{5]]$5995           # 3 C  #!"&5463!2!&'&!"&5!2#!"&5463#"'5632(8((88((`x
c`(8 4LL44LL4l			`((88(@(8(D9 8( L44LL44L	
Z
	           # 7 K [  #!"&5463!2!&'&!"&5!>&'&7!/.?'&6?6.7>'(8((88((`x
c`(8 `3333v?`((88(@(8(D9 8( &&-&&?
  'j  6  #'.
'!67&54632".'654&#"32eaAɢ/PRAids`WXyzOvд:C;A:25@Ң>-05rn`H(' gQWZc[          
     -  %7'	%'-'%	%"'&54762[3[MN3",""3,3"ong$߆]gn$+)")")"         x # Z  #"&#!+.5467&546326$32327.'#"&5463232654&#"632#".#"oGn\u_MK'̨|g?CM7MM5,QAAIQqAy{b&
BL4PJ9+OABIRo?z.z
n6'+s:zcIAC65D*DRRD*wya$,@B39E*DRRD*             ' / 7     $&6$ 6277&47'  7'"' 6& 6'lLRRZB|RR>dZZ LlLZRR«Z&>«|R      !   $&54$7  >54 ' _ff_L-ff`-        c  6721>?>././76&/7>?>?>./&31#"$&(@8!IH2hM>'
)-*h'N'!'Og,R"/!YQG<I *1)
(-O1D+0nz3fwG2'3rd1!sF0o .q"!%GsH8@-!5|w|pgS="B2PJfhGdR 	        ( P ] l y    &$'77&7567'676'"'7&'&'7&47'6767'627''6$ '67'654'7&'7'&'&'7&'5 &$  $6 $&6$ jj:,AAS9bb9R#:j8AܔA,zC9Z04\40Z9C!B;X0,l,0X;B*A8ܔA&#9j`b9S$#R99#&A8A`䇇<Z<䳎LlLfBϬ"129,V<4!!88dpm"BV,92[P*V*P\MC

CM\P*V*P]LD

DL&BV*8*8!f!4<gmpd88!&!8*8*VB Z<䇇䇇LlL        9 E i s   %#"5432#"543275#&#"3254&'.547>54'63&547#5#"=3235#47##6323#324&"26%#!"&5463!2F]kbf$JMM$&N92<Vv;,&)q(DL+`N11MZ
%G&54	#	i<$8&@0H12F1dw@wwwB?@UTZ3%}rV2hD5%f-C#C@,nO	a7.0x2	yRuR/u%6;&$76%$56S@www     D     < H l w  %4#"324&#"32!".5475&5475.546322#654'3%#".535"&#"5354'33"&+32 #"&54632S;<;||w$+|('-GVVG-EznAC?H_`Rb]Gg>Z2&`9UW=N9:PO;:dhe\=R
+)&')-S99kJ<)UmQ/-Ya^"![Y'(<`X;_L6#)|tWW:;X          	#'#3#!"&5463!2)
p*xeשw@www0,\8@www  9    I   #"'#"&'&>767&5462#"'.7>32>4."&'&54>32JrO<3>5-&FD(=Gq@C$39aLL²L4
&)
@]vq#CO!~󿵂<ZK#*Pq.%L²LLarh({w؜\     i  &5467&6747632#".'&##".'&'.'#".5467>72765'./"#"&'&5}1R<2"7MW'$	;IS7@5sQ@@)R#DvTA;
0xI)!:>+<B76:NFcP:SC4rl+r E%.*a-(6%('>)C	6.      >  
  ! - I [   4&#"324&#"3264&#"324&#"326&#"#".'7$4$32'#"$&6$32D2)+BB+)3(--(31)+BB+)4'--'4'#!0>R	HMŰ9ou7ǖD䣣
R23('3_,--,R23('3_,--,NJ
?uWm%      #"'%#"'.5	%&'&7632! ;	`u%"( !]#c)(	          #"'%#"'.5%&'&76	! 	(%##fP_"( !)'+ŉ       4 I   #"$'&6?6332>4.#"#!"&54766$32#!"&=46;46;2 z䜬m
IwhQQhbF*@&('k@z
	
_hQнQGB'(&*eozΘ@@`             >.  $$ ffff^aa fff^aa  >   "&#"#"&54>7654'&#!"#"&#"#"&54>765'46.'."&54632326323!27654'.5463232632,-,,",:!%]&%@2(/.+*)6!	<.$..**"+8##Q3,,++#-:#"</$)

w


,*

x9-.2"'
,,
@&,,
Qw
,     ,  #"+"&5#+"&5&'&'&547676)2%2$l$#l#b~B@XXyo2$CI@5$$>$$/:yuxv)%$ 	          / ? C G  %!5%2#!"&5463!5#5!52#!"&54632#!"&5463#5!5`&& &&  && &&&& &&@& && &  & && & & && &      %  2 &547%#"&632%&546 #"'6\~~\h
~\h\ V
VVV       % 5  $4&#"'64'73264&"&#"3272#!"&5463!2 }XT==TX}}~>SX}}XS>~}w@www~:xx:~}}Xx9}}9xX}@www        / > L X d s   .327>76 $&6$32762#"/&4762"/&47626+"&46;2'"&=462#"'&4?62E0l,
*"T.D@Yooo@5D

[		

Z
Z

		[	 ``[



Z

	2
,l0
(T".D5@oooY@D,

Z

		[			[		

Z
``EZ

		[		
         5  %!  $&66='&'%77'727'%amlLmf?55>fFtuutFLlLHYCL||LY˄(E''E*(           / ? I Y i y      %+"&=46;2+"&=46;2+"&=46;2+"&=46;2%"&=!#+"&=46;2+"&=46;2+"&=46;2+"&=46;2!54!54>$ +"&=46;2#!"&=@&&@3P>P3&&rrr&&rrr
he
4LKM:%%:MKL4WT&&            % / 9  ##!"&563!!#!"&5"&5!2!5463!2!5463!2&& &  & &&   &&& i@ &&@& 7          '#5&?626J%o;j|/&jJ%p&`Jj&p/|jţ%Jk%o%    	  : g  "&5462#"&546324&#!"263662>7'&75.''&'&&'&6463!276i~ZYYZ~@OS;+[G[3YUD#o?D&G3I=JyTkBuhNV!WOhuAiSy*'^CC^'*SwwSTvvTSwwSTvvWID\_"[gq# /3qFr2/ $rg%4
HffHJ4   d       #!#7!!7!#5!VFNrmNNNN!     Q  + ? N e  %&'&'&7>727>'#&'&'&>2'&'&676'&76$7&'&767>76'6#<;11x#*#F-T93%/#0vNZ;:8)M:(	&C.J}2	%0 	^*
JF	
&7'X"2LDM"	+6
M2+'BQfXV#+]
#'
L/(eB9   
             # , 8  !!!5!!5!5!5!5#26%!!26#!"&5!5          &4& &pPPp        @@&&@!&@PppP@  *  	  9 Q  $"&54627"."#"&547>2"'.#"#"&5476$ "'&$ #"&5476$ (}R}hLK
NN
 Ud:
xx
8

 ,, |2222
MXXM
ic,>>,

		
̺
           ' / 7 ? K S c k {  4&"2$4&"2 4&"2 4&"2 4&"2 4&"2 4&"2 4&"24&"26 4&"24&#!"3!264&"2#!"&5463!2KjKKjKjKKjKjKKjKKjKKjKjKKjKjKKjKKjKKjKjKKjKLhLLhLKjKKj& && &KjKKjL44LL44L5jKKjKKjKKjKjKKjKjKKjKjKKjKjKKjKjKKjKjKKjK4LL44LLjKKjK && &&jKKjK  4LL4 4LL     ' E  !#"+"&7>76;7676767>'#'"#!"&7>3!2W",&7'	#$	&gpf5O.PqZZdS-V"0kqzTxD!!8p8%'i_F?;kR(`
!&)   d   . < \  .'.>%#"'.7>.'&67632&'6'&'
#"'.766.'&67632Z
&+\cc:>'D>6KD3W6,9(<*0-?")/SW7.Crb		:+OIX3'#C3:@#*"-A%,1U=}AQfO$"|'"S*`H(:UܳJ?27sZy%+A07C~Ӗ5A"3      	      > I Y  #6?>7&#!%'.'33#&#"#"/3674'.54636%#"3733#!"&5463!24:@7vH%hEP{0&<'VFJo1,1.F6A#L4 4LL4 4L"%	
 
7x'6O\JYFw~v^fH$ !"xdjD"!6`J 4LL4 4LL   	     $ 1 O l       -  #"326%356.#"#"326%4#"326%3#7#'#3%#7#"&546324>54#"47632&#"'"'473254&'&54323#327#"'47673#327#"546327&#7673>7&#"327#"&54632#7#"&54632654#"47632&#7673>73#7#"&54632.#"#&'#67&#"327&'3673326#!"&5463!2/>	0@[W,8 G'"5,Q4/&4/	$&J	(W" 	+Tl	+7o	_7*#)	83	(
-5G8.'3/$&I8
48+5%7%{,2,rr,2,x-2.jj.2-xL4 4LL4 4L[ <	J 2)(*(8$e '+
,1)H/	'H4///,~i6_7G*''4fE!%97+";=4FYqO" '+
,&2hh_,0(5N(ntggtnno__on 4LL4 4LL    	  
    B W b j q }    +532%+5324&+32763#4&'.546327&#"#"'3265#"&546325&#"32!26 4&"2%#'#735#535#535#3'654&+353#!"&5463!29$<=$@?SdO__J-<AA@)7")9,<$.%0*,G3@%)1??.+&((JgfJ*A!&jjjGZYGиwsswPiL>8aA	!M77MM77M3!4erJ]&3YM(,
,%7(#),(@=)M%A20C&Mee(X0&ĖjjjV	8Z8J9N/4$8NN88NN      	       # & : O [   	$?b  3'7'#3#%54+32%4+324+323'%#5#'#'##337"&##'!!732%#3#3##!"&53733537!572!56373353#'#'#"5#&#!'#'#463!2#"5#"5!&+&+'!!7353273532!2732%#54&+#32#46.+#2#3#3##+53254&".546;#"67+53254&.546;#"#'#'##"54;"&;7335wY-AJF=c(TS)!*RQ+*RQ+Y,B^9^Ft`njUM')	~PS PRm٘M77Mo7q

@)U	8"E(1++NM77Mx378D62W74;9<-A"EA0:AF@1:ؗBf~~""12"4(w$#11#@}}!%+%5(v$:O\zK?*$\amcrVlOO176Nn<!E(=<&l/<<[ZZYY891767OO7==..//cV==::z,,,,aa,,7OO7Z::;;YfcW(		"6-!c(		!5	#
bt88176tV:
&$'*9	%e#:%'*9B<<;
&(        	    # : S n       #"&54632%#76;2#"&54632%4&+";2?>23266&+"&#"3267;2 4&+"'&+";27%4&+";2?>23266&+"&#"3267;254+";27#76;2#!"&5463!23%#2%%,, _3$$2%%M>ALVb5)LDHeE:<EMj,K'-RM ~M>ARVb5)LEHeE:<EJABI*'!($rL4 4LL4 4Lv%1 %3!x*k$2 %3!;5h
n
a
!(lI;F	
	
	rp
p8;5h
t
a
!(lI;F`	#k 4LL4 4LL   
  	  
  2 H W [ l t    #"'5632#6324&'.54327&#"#"&'32767#533275#"=5&#"'#36323#4'&#"'#753276 4&"24'&#"327'#"'&'36#!"&5463!2=!9n23BD$ &:BCRM.0AC'0RH`Q03'`.>,&I / * /

8/n-(G@5$ S3=,.B..B02^`o?7je;9G+L4 4LL4 4LyE%#	Vb;A!p &'F:Aq)%)#orgT$v2 8)2z948/{8AB..B/q?@r<7(g/ 4LL4 4LL        ?  #!"&'24#"&54"&/&6?&5>547&54626=L4@ԕ ;U g3

T
2RX='8P8|5
4Ljj U;Ig@
	
`
 "*\(88(]k
          & N  4#"&54"3	.#"#!"&'7!&7&/&6?&5>547&54626;U gIm*]Z0L4@ԕ=o=CT

T
2RX='8P8|5
 U;IgXu?bl3@4Ljja`
	
`
 "*\(88(]k         / 7 [  %4&+";26%4&+";26%4&+";26!'&'!+#!"&5#"&=463!7>3!2!2 @@ @@ @@0

o`^BB^`5FN(@(NF5@@@u		@LSyuS@%44%     , < H  #" 54 32+"=4&#"326=46;2  >.  $$ ~Isy9"SgR8vHD	w
ffff^aam2N+	)H-mF+10*F		+fff^aa        b  4&#"32>"#"'&'#"&54632?>;23>5 !"3276#"$&6$3  k^?zb=ka`U4J{K_/4^W&	vx :XB0܂ff)
fzzXlz=lapzob35!2BX
G@8'	'=vN$\ff	1	SZz8zX          # (   "/+'547'&4?6276	'D^h



i%5 @%[i



h]@ ]h



i%@ 5%[i



h^@@       )  2 #"&5476 #".5327>OFi-ay~\~;'S{s:D8>)AJfh ]F?X{[TC6LlG]v2'"%B];$         + l |    %!2>7>232>7>322>7>32"&'.#"#"&'.#"#"&'.#"#546;!!!!!32#"&54>52#"&54>52#"&54>52  -P&+F) $P.-P$'#+&PZP&+#"+&P-#) $P-.P$(#+$P.-P$'#+&P-.P$+#pP@     @Pp H85K"&Z H85K"&Z H85K"&Z@Pp@@@pMSK5, :&LMSK5, :&LMSK5, :&        !!3	!	    @  @@           	#"$$3!!2 "jaѻxl alxaa j         !!3/"/'62'&63!2   'y

`I

y My

`I

y'       [ `  #".'.#"32767!"&54>3232654.'&546#&'5&#"

4$%Eӕ;iNL291 ;XxR`f՝Q8TWiWgW:;*:`Qs&?RWXJ8oNU0J1F@#)
[%6_POQiX(o`_?5"$iʗ\&>bds6aP*< -;iFn*-c1B       W g  4'.'4.54632#7&'.#"#"'.#"32767'#"&54632326#!"&5463!2#$(	1$6]'
!E3P|ad(2S;aF9'EOSej]m]<*rYshpt.#)$78L*khw@wwwB
%$/$G6
sP`X):F/fwH1pdlqnmPHuikw_:[9D'@www            3   4."2>$4.#!!2>#!".>3!2QнQQнQQh~wwhf ff нQQнQQнQZZQffff           #  >3!2#!".2>4."f ff нQQнQQffffQнQQн      	      , \  !"&?&#"326'3&'!&#"#"'     5467'+#"  327#"&463!!'#"&463!2632(#AHs9q  ci<=
#]<OFA!re&&U&& ![eF U?g4_a?b+r7&4&&4&p,           + K   4&"2$4&"2.#!"3!264&#!"3!2#"&=!"&=#47>$ KjKKjKKjKKjH#j#H&&&KjK KjKg	V	ijKKjKKjKKjK..n(([5KK55KK5[poNv<<vN:f      . R   #!"&463!24'!"&5463!&$#"!2#!32>+#" '#"&546;&546$32 322$B$22$$*$22$Xڭӯ$22$tX'hs2$ϧkc$22$1c$2F33F3VVT2#$2ԱVT2#$2g#2UU݃
2$#2UU1݃2         , u   54#"67.632&#"32654'.#"32764.'&$#"7232&'##"&54732654&#"467&5463254632>32#"'&ru&9%"*#͟<yK0Og" &9B3;㛘8s%+DWXRD= @Y%	!Q6R!4M8+6rU^z=)RN.)C>O%GR=O&^opC8pP*bY
_#$N Pb@6)?+0L15"4$.Es
5IQ"!@h"Y7e|J>ziPeneHbIlF>^]@n*9         6 [ _  3#"&54632#.#"32%3#"&54632#.#"326%4&'.'&! ! 7>7>!=39?
6'_>29?
5'17m-VU--,bW. 뮠@Fyu0HC$뮠@Fyu0HC$L=??<=! A	<          `  ;  +"&54&#!+"&5463!2#!"&546;2!26546;2pЇ0pp@I pp        > S c  +"&=46;254&+"&+";2=46;2;2=46;2;2%54&#!";2=;26#!"&5463!2A5DD5A7^6a7MB55B7?5B~```0`rr5A44A5v5AA5f*A``0`       	   !!!!	#!"&5463!2ړ7H7jv@vvv'  :@vvv          M U d k p u {                  #"'!"'!#"&547.547.54674&547&54632!62!632!#!6227'!%!"67'#77!63!!7357/7'%#	%'3/&=&'	5#?&5476 !p4q"""6" 'h*[|*,@?wAUMpV@˝)Ϳw7({*U%K6=0(M		"!O		dX$k
!!!b	
[TDOi
@6bxBAݽ5ɝ:J+3,px1Fi
(R         463!#!"&5%'4&#!"3`а@..@A-XfB$.BB..C     } 
   )   &54$32 &'  % &&'6 7"w`Rd]G{o]>p6sc(@wgmJPAjyYWa͊AZq{HZ:<dv\gx>2ATKn       + ;  "'&#"&#"+6!263 2&#"&#">3267&#">326e~└Ȁ|隚Ν|ū|iyZʬ7Ӕްr|uѥx9[[9jj9ANN+,#ll"BS32fk     [   / ? \  %4&+";26%4&+";26%4&+";26%4&+";26%#!"&5467&546326$32]]eeeeee$~i
qfN-*#Sjt2"'qCB8!   '  >    	      ! % ) - 1 5 9 = A E I M Q U Y ] a g k o s w {           !	%!	5!#5#5#5#5#57777????#5!#5!#5!#5!#5!#5!#5!#5#537#5!#5!#5!#5!#5!#55#535353535353%"&546326#"'#32>54.&54>3237.#" Q%%%%%%%%%?iiihOiixiiyiixiiArssrrssr%sssrrssNs%%%%%%%%%%'<D<'paC_78#7PO7)("I$	75! RAb(ssssssssss"/!".""."!."".!/^.".^.".]/".$$$$$$$$$$$$$$$$Os$$$$$$$$$$$$$$sO$sssssssssss#}$)	13?*
,./:
-      s    *   4&"2$4&"2#!"&5463!2!5463!2_?--??-,@@,-?pq8,??,D,??,,??      (    Z  2#".#"3267>32#".54 3232654&#"#"&54654&#"#"&547>326ڞUzrhgrxSПdU <ex՞Zf_gן:k=2;^9Œ7\xx\7K=5XltֆWW{e_%N%,%CI%      # + W   4&+54&"#";26=32 "&462"&462!2#!"&54>7#"&463!2!2&&4&&&&4&KjKKjKjKKj && &%&& &&4&&&&4&&&5jKKjKKjKKjK %z
0&4&&3D7&4&%&          ' S   4&"4&"'&"27 "&462"&462!2#!"&54>7#"&463!2!2 &4&4&4& 4 KjKKjKjKKj && &%&& &&4&%&&ے&4  "jKKjKKjKKjK %z
0&4&&3D7&4&%&        	    &  	!'!	!%!!!!%"'.763!2o]FooZY@:@!! gf /  /      I    62'"/"/"/"/"/"/"/7762762762762762762%"/77627&6?35!5!!3762762'"/"/"/"/"/"/%5#5!4ZSS6SS4SS4SS4SS4SS4SS4ZSS4SS4SS4SS4SS4SS4S-4ZSS4S@   4SS4ZSS6SS4SS4SS4SS4SS4S@ ZSSSSSSSSSSSSSSZSSSSSSSSSSSSSyZRRR@%:=
:+:
=RRZSSSSSSSSSSSSS         C v  !/&'&#""'&#"	32>;232>7>76#!"&54>7'3&547&547>763226323@``` 
VFaaFV
$.

.$yy	.Q5ZE$ ,l<l, $ER?Y*@@2	!#""#!	yy=rna@@(89*>*%>>%*>*98(QO!   		  L \ p  '.'&67'#!##"  327&+"&46;2!3'#"&7>;276;2+6267!"'&7&#"(6&#"#"'DgOOG`n% ELL{@&&Nc, sU&&!Fre&&ss#/,<=
#]gLoGkP'r-n&4&2-ir&&?o 4_      5 O W  ! .54>762>7.'.7>+#!"&5#"&5463!2"&462{{BtxG,:`9(0bԿb0(9`:,GxtB&@& &@&K55K`?e==e?1O6#,
#$
,#6OO&&&&5KK      ?  !"'&'!2673267!'.."!&54632>32 1
4q#F""8'go#-#,"tYg>oP$$Po> 	Zep#)R0+I@$$@I+    + 3   32++"&=#"&=46;.7>76$     @ᅪ* r@@r      ' /  2+"&5".4>32!"&=463      &@~[՛[[u˜~gr&`u՛[[՛[~~@r         = E   32++"&=#"&=46;5& 547&'&6;22676;2      >``@``ٱ?E,,=?rH@``@GݧH`jjr    B J  463!2+"&= 32++"&=#"&=46;5.76 76%#"&5        &@~``@`` vX r&@``@+BF`r       k s  463!2+"&= 32++"&=#"&=46;5& 547'/.?'+"&5463!2+7>6 %#"&5        &@~``@``~4e	
0
	io@& jV	
0
	Z9 r&@``@Gɞ5o
,
sp &@k^
,
c8~~`r     
 8 > K R _  32++"&=!+"&=#"&=46;.76 766 6'27&547&#"  &'2  #"@ @'Ϋ'sggsww@sgg@@-ssʃl99OOr99    F P ^ l  463!2+"&= $'.7>76%#"&=463!2+"&=%#"&54'>%&54 7.#" 2 54&'   &@L?CuГP	vY  &@;"  ޥ5݇ޥ5`&_ڿgwBF@&J_	s&&?%x%x     J P \ h  463!2+"&= '32++"&=#"&=46;5.76 76632%#"&56'  327&7&#"2  #" &@L? ߺu``@``}ຒɞ  ueeu9uee&_"|N@``@""|a~lo99r9@9       ; C  2+"&5"/".4>327'&4?627!"&=463      &@Ռ		.	
N~[՛[[u˜N		.	
gr&`֌
	.		Ou՛[[՛[~N
	.		@r      9 A   '.'&675#"&=46;5"/&4?62"/32+     '֪\
	.		4		.	
\r|ݧ憛@\		.	

	.		\@r     9 A  "/&4?!+"&=# #"$7>763546;2!'&4?62      m		-

@ݧ憛@&

-		@rm4

-		ٮ*		-

r           +"&5& 54>2      @[՛[rdGu՛[[r                 ".4>2 r[՛[[՛r5՛[[՛[[      $  2#!37#546375&#"#3!"&5463#22#y/Dz?s!#22#2##2S88	2#V#2        L  4>32#"&''&5467&5463232>54&#" #"'.Kg&RvgD
$*2%	+Z hP=DXZ@7^?1۰3O+lh4`M@8'+c+RI2
\ZAhSQ>B>?S2Vhui/,R0+	ZRkm      z  + > Q   2#"'.'&756763232322>4."7 #"'&546n/9bLHG2E"D8_
pdddxO"2xxê_lx2X	
!+'5>-pkW[CI
I@50Oddd˥Mhfxx^ә  	           # ' + /  7!5!!5! 4&"2!5! 4&"24&"2!!!     8P88P   8P88P88P88P     P88P8 P88P88P88P8          + N    &6 !2#!+"&5!"&=463!46;23!#!"&54>32267632#"_>@`` L4 Dgy 6Fe=OOU4L>``4L2y5eud_C(====`L4       3 V    &6 #"/#"/&54?'&54?6327632#!"&54>32 7632_>																%%Sy 6Fe=J%>																%65%Sy5eud_C(zz.!6%          $  !2!!!46;2 4&"2!54&#!" &   &&@ԖV@& &@  &&ԖԖ@&             3!!!	!5!'!53!!	# 7IeeI7 CzC l @@  @            #  2#!"&?.54$3264&"!@մppp  ((ppp              # + /  2#!"&?.54$3264&"! 264&"!@մ^^^@^^^@ ((^^^  ^^^          '  %!53###3!532654&+5!3!#"3 ~E,,EG,+ob'q,5,'          	#'#3!)
p*xe 0,\8     L   # / D M %2<GQ^lw  &'&676676&'&7654&'&&546763"#"'3264&7.>&'%'.767&7667&766747665"'.'&767>3>7&'&'47.'.7676767&76767.'$73>?>67673>#6766666&'&6767.'"'276&67&54&&671&'6757>7& "2654&57>&>&'5#%67>76$7&?5.''&'&'#'""#''&'&'&'65.'&6767.'#%&''&'#2%676765&'&'&7&5&'6.7>&5R4&5S9W"-J0(/rV"-J0(.)#"6&4pOPppc|o}vQ[60XQW1V	#5X		N"&.
)
D>q J:102(z/=f*4!>S5b<U$:I o<G*	,&"O	X5
#!
	R N#C83J*R	!(D#%37	;$-.(,覦6ji
	")9
E%!B83
	j96/,	:QD')yX#63Vba	,
UeLPA@*	̳`Xx*&E
V36%	B3%	B3XA	#!.mU"A	#!.mUB-#2+Jiiim-C<I(m8qF/*)0S
		
I
E5&+>!%
(!$p8~5..:5I~T
4~9p# !
)& ?()5F	1		
 d%{v*: @e
s|D1d {:*dAA|oYk'&<tuut&vHCXXTR;w71	Z*&'1	9?	.$Gv5k65P<?8q=4a	SC"1#</6B&!ML	^;6k5wF1<P   C	   ;  $"&462"&46232>.$.`aasa``Z9k'9؋ӗa-*Gl|Me_]`F&OܽsDD!/+``aa``a1<YK3(
 /8HQelAZ3t_fQP<343J;T7Q           + ? K g w     $6&$  $&62+"5432+"&=.54  $;26=462;26=4& 4&#!"3!26)߄4R4߄mlLr {jK#@#Qa^@@`&&&&߄4R4ĎLlLN @K5#:rr:#5K^aa``]]`` && &&       	     /  !3#4&#!"3!265##!"&5463!22 @ K5^BB^^B@B^5K    @5KB^^BB^^BK        	     /  !2##!"&5463!2#4&#!"3!265  5KK5^BB^^B@B^@   K55KB^^BB^^B` @      	     /  !2##!"&5463!2#4&#!"3!265  5KK5^BB^^B@B^@   K55KB^^BB^^B` @      	     /  !2##!"&5463!2#4&#!"3!265  5KK5^BB^^B@B^@   K55KB^^BB^^B` @      	    +  2##!"&5463!2#4&#!"3!2655KK5^BB^^B@B^@K55KB^^BB^^B` @        #!&'#"'&547632m*
0(('($0K
**      %   3#!3# '!#53 5#534!#53 6!3@@@@pp@@@@@pp@`     	          + / 7 ; A  #3!5!!3#!!5!35!355#%53#5!#35#!!!!!!!!                           
   	    # ' + / 3 ? C G W  #3!5!!35!!3#!!5!#!5!3535!355#%#3%!53#5!#35#!5##5!3!5!3!5	               !"&5463!2!"! `(88(@(8`(8}22R `8(@(88(`8HR22         #  #6?6%!!!46#!"&5463!2x  8(`( (88(@(8 
  (8 (`(8(@(88      	    ' A T d   +5326+5323##"' %5&465./&76%4&'5>54&'"&#!!26#!"&5463!2

iLCly5)*Hcelzzlec0hb,,beIVB9@RB9J_L4 4LL4 4L44%2"4:I;p!q4bb3p(P`t`P(6EC.7BI6 4LL4 4LL    	     . >  $4&'6 #".54$ 4.#!"3!2>#!"&5463!2Zjbjj[wٝ]>oӰٯ*-oXL4 4LL4 4L')꽽)J)]wL`ֺ۪e 4LL4 4LL           ;  4&#!"3!26#!"&5463!2#54&#!";#"&5463!2@^BB^^B@B^B^^B@B^`@MB^^B@B^^>^B@B^^         5 = U m  	!	!!2#!"&=463!.'!"&=463!>2!2#264&"".54>762".54>762  ?(``(?b|b?B//B/]]FrdhLhdrF ]]FrdhLhdrF@@@(?@@?(@9GG9@/B//BaItB!!BtIѶ!!ьItB!!BtIѶ!!ь        - M  32#!"&=46;7&#"&=463!2#>5!!4.'.46ՠ`@`ՠ`MsF FsMMsF FsMojjo@@jj@@<!(!!(!        - 3 ?  32#!"&=46;7&#"&=463!2+!!64.'#ՠ`@`ՠ` 		DqLLqDojjo@@jj@@B>=C          - 3 ;  32#!"&=46;7&#"&=463!2+!!6.'#ՠ`@`ՠ` UVU96gg6ojjo@@jj@@β**ɍ        - G  32#!"&=46;7&#"&=463!2#>5!!&'.46ՠ`@`ՠ`MsF FsMkkojjo@@jj@@<!(!33!(!          9 I  2#!"&=4637>7.'!2#!"&=463@b":1P4Y,++,Y4P1:"":1P4Y,++,Y4P1:"b@@@7hVX@K-AA-K@XVh77hVX@K-AA-K@XVh7         A j  "#54&#"'54&#"3!26=476=4&#"#54&'&#"#54&'&'2632632#!"&5&=4632>326 5K @0.B @0.B#6'&&
l
@0.B 2'	.B A2TA9B;h" dmpPTlLc_4.HK5]0CB.S0CB./#'?&&)$$)0CB. }(AB.z3M2"61d39L/PpuT(Ifc_E       `  1 X   "#4&"'&#"3!267654&"#4&"#4&26326#!"&'&5463246326\B B\B&@5K&@"6LB\B B\B sciL}QP<m$3jN2cB.p.BB. 3K5+" 3," .BB..BB..G=ci(+lOh7/ DVj"c=        & 5 J b   #"'&=.547!"&46;'.54632!2327%.54&#"327%>%&#"!"3!754?27%>54&#!26=31?>Ijjq,J[j.-tjlV\$B.R1?@B.+?2`$v5K-%5KK5.olRIS+6K5̈$B\B 94E.&ʀ15uE&
ԖPjjdXUGJ7!.B

P2 .B
%2@	7K5(B@KjKj?+f UE,5K~!1.>F.F,Q5*H          $ b  2#!"&=%!"&=463!7!"&'&=4634'&#!">3!!"3!32#!"3!23!26=n$<vpPPpPpw*RdApP]'@A&
3@&H-[(8@
2EB^&1=&& 81PppPpP wcOg Ppc4& #.& &,,:8(%^B &.&&       A t  "#.#"%&#"3!267>7654&#"#654&#"#.!"'.54632&5467>32>3200?t	='/@H@"+4K8"*!4dtB/&>	c@0&=		=_JUD29i1"07
{x\YSgSSW]|teyD0&0D/I4C+) t.B3%h#/B0&&03|&p>i+ #]
WsgQT\QglU
]#-39oK_       3 [ _ c g  "'&#"3!2676=4&"#54&#"#54&#"#4&'2632632632#!"&'&5463246#!#!#5K)B4J&@#\8P8 @0.B J65K J6k
cJ/4qG^\hB2<m$3iG;     K5 6L4+" 3p`b)<8(=0CB.@Z7OK5`:7OkEW^tm@Q7/ DVi##j       % 4 I a   2#!"&5&546325462632"32654&"3267654&76;74&"#.#"2676=#"&'+53264&#!"3</UXdjjPԖEu!7JG72P

B%
B.!7	@Af+?jKjK@B(5K,EUH*5Q,F.F>.1!~K5y?^\Vljt-.j[J,qjjI7$?1R.B+.B$`2?gvEo.5KK5%-K6+SIR[&.E49 B\B$5K           G  #!+"&5!"&=463!2+"&'+"'+"'&5>;2>76;2YM	
.x	-
	N	

	u,u
?
LW

#	          	 * : J  4'&+326+"'#+"&5463!2  $6&  $&6$ <!T{BH4	&>UbUI-uu,uuڎLlLAX!Jmf\$
6uuu,KLlL        - [ k {  276/&'&#"&5463276?6'.#"!276/&'&#"&5463276?6'.#"  $6&   $&6]h-%Lb`J%E5,5R-h
-%Lb`J%E5,5R-'uu,uulL/hRdMLcNhRdMLcN1uuu,LlL   @     	'	7	'7	``H ``H !``H  ```H`            '  %		7'	7'7	'  $&6$ X`(W:,:X`(WLLlLX`(W:BX`(XLlL 
  	 $    % / 9 E S [   #"&54632$"&4624&"26$4&#"2%#"&462$#"&4632  #"32&! 24>      !#"&'.'#"$547.'!6$327&'77'&77N77N'qqqqqPOrqEsttsst}||}uԙ[WQ~,>	nP/RU P酛n	>,m'77'&77N77N6^Orqqqqqqt棣棣(~||on[usј^~33pc8{y%cq33dqp  d   	  L     54    "2654"'&'"/&477&'.67>326?><
x
,(-'sIVCVHr'-(
$0@!BHp9[%&!@0$u

]\\]-$)!IHVDVHI!)$-#3      6 > N   "&462."&/.2?2?64/67>&  #!"&5463!2]]]3
$;
&|v;$
(CS31	=rM=	4TC(Gzw@www]]]($-;,540=	sL	=45,;@www       (  2#"$&546327654&#"	&#"AZ\@/#%E1/##.1E$![A懇@@\!#21E!6!E13"|!     	 g L   &5& '.#4&5! 67&'&'5676&'6452>3.'5 A5RV[t,G'Q4}-&<C!l n?D_@Փ>r!G;>!g12sV&2:#;d=*'5E2/..FD֕71$1>2F!&12,@K       
  r    #"&5462>%.#"'&#"#"'>54#".'7654&&5473254&/>7326/632327?&$  $6 $&6$ !&"2&^	u_x^h;J݃HJǭqE
Dm!MG?̯'%o8
9U(F(ߎLlL&!&!SEm|[n{[<ɪ
"p C
Di%(KHCέpC
Bm8	@KނHF(LlL       " *  6%&6$	7&$5%%6'$2"&4}x3nQH:dΏXe8 z'	li=!7So?v    M    '&7>>7'7>''>76.'6' El:Fgr*t6K3UZ83P)3^I%=9	)<}Jk+C-Wd	&U -TE+]Qr-<Q#0
C+M8	3':$_Q=+If5[ˮ&&SGZoMk ܬc        #  2>.""$&6$32}L**L}}L**Lʸֶdd*~;;~\~~~ޚBPBdd       	  N  .'>!4&#"#6.!3267! !"''.>75>$732̏Ozv{kgw"+TgEۗE0[CWoG[SL#WN,:vDx9<d]69.P$E#pb9elz}fT-D-%<\N*XN(l0;<Ӝ"%Yj{N5      3  4&#!"3!26#!!2#!"&=463!5!"&5463!2 @^B `` B^^B@B^ @@B^@@^BB^^       >  3!"&546)2+6'.'.67>76%&F8$.39_0DD40DD0+*M7{L *="#
U<-M93#D@U8vk_Y	[hD00DD00Dce-JF1BDN&)@/1 d        	 6  /   1'.#"932>74.#"932>7#"."#".5#".5332654&#"#!!2>22>232>32o'Ve-0F  F0-eW% F0-eW%'Ve-0F 0XWD_J-'F]KAuL9!=MtCGvO>"bMOohV.(,fZC&\|h=*1Hz^I((H_H\V,'L0+A56@+0M%*5A+0M%'L0+@NEsH0EF00EF0-?F1%6810A>A+7iQPq	"GY):;)2GH22GH22GH2Ft        > t   %6#".'.>%6%&7>'.#*.'&676./&'.54>754'&#"%4>327676=>vwd"
l"3	/!,+	j2.|%&(N&wh>8X}xc2"W<4<,Z~fdaA`FBIT;hmA<7QC1>[u])		u1V(k1S)
-	0B2*%M;W(0S[T]I)	A 5%R7<vlR12I]O"V/,b-8/_        # 3 C G k  2#!"&546;546;2!546;2%;2654&+";2654&+"!32++"&=#"&=46;546;2 4LL44LL4^B@B^^B@B^ @@ @@ @@ L4 4LL4 4L`B^^B``B^^B``    @@@          # 3 W  #!"&=463!2!!%4&+";26%4&+";26%#!"&546;546;2!546;232@ @@ @@L44LL4^B@B^^B@B^4L@@   N 4LL4 4L`B^^B``B^^B`L       # ' 7 G k  %"/"/&4?'&4?62762!!%4&+";26%4&+";26%#!"&546;546;2!546;232W.	

	.				.	

	.			 @@ @@L44LL4^B@B^^B@B^4L.				.	

	.				.	

   N 4LL4 4L`B^^B``B^^B`L         ( 8 \  	"'&4?6262!!%4&+";26%4&+";26%#!"&546;546;2!546;232 

		.	

	.	`@@ @@L44LL4^B@B^^B@B^4L< 		 
	.				.	:   N 4LL4 4L`B^^B``B^^B`L         2632632#!"&5463&&&&&& &&&&&&         $  27+"&5     %264&#"26546 B>&&=,X q&&@X,LΒw  %    % ;  #!"&5463!546;2!2!+"&52#!"/&4?63!5!

(&&@&& ( &&@&&(

(  

& &@&&@ &&& &

       # '  '%#"'&54676%6%%
hh @` !  !  


         # 5  2#"&5476!2#"&5476!2#"'&546      @  @   
@ 
            8   4&"2$4&"2$4&"2 #"'&'&7>7.54$ KjKKjKjKKjKjKKjdne4"%!KjKKjKKjKKjKKjKKjK.٫8
!%00C'Z'             . W   "&462"&462"&462 6?32$6&#"'#"&'5&6&>7>7&54>$ KjKKjKjKKjKjKKjhяW.{+9E=cQdFK1A
0)LlLjKKjKKjKKjKKjKKjKpJ2`[Q?l&٫C58.H(Yee   	    
   			        Y'w(O'    RK $   #"&#"'>7676327676#"
b,XHUmM.U_t,7A3gez9@xSaQBLb(	VU         
  !!!  == w)          @ T  !!77'7'#'#274.#"#32!5'.>537#"6=4>5'.465!  KkkK_5 5 #BH1`L
I&v6SF !Sr99rS!`` /7K%s}HXV
PV	e		V    p<e_<      N    N		                 	 		               j p    U                                                3   U  3                 ]                             y n                       2                           @                                                                                              z                    Z                                @    5 5             m                               Z  Z          @                                                                    ,  _                 @                                            Q                              @                    @                        (                                    @            @      @        -   M M -  M M                  @                                 @  @  -            ^   a                                                      6                                       %          8                                 @                  D       @                   ,              '     @                                                 	     m  o                     )                 @    @   	                                	                                   '                      D     9               >                              d  Q     *       d	   	   	   	   	   	                                             	                                                         	                                                                            L	      	   	   	   	   	            	         	   	      	                                                 @   	     d     	                   	                         %                 R                                                                    P  Bp <$H<TfT	H		
R

,Dx6\DLX*(2^n0|bX*Z >n@jDH. 4 n  !<!!!"6""#^##$$%,%&&'&'P'z'(@(d(())F))*@*,,~---.,../"//0F11|22z223f334V4456556P67V789 9n9::T=b=>>:>>?|@@>@xAVABBBBCRCDE:FFxFGVGHZHIJIhIIIIJ(JFJdJKKVKLpLMfMNNNOpOPPfPQZQQRRvRTUVRVWW8WWXXhXY Y*YTY~YYZ>Z|ZZ[R[\\<\\]@]]]^^^_F`(`aJaabTbbc cd^dde,eef.fggzghhhiiBiijj4jZjkknkklbllm mhmmnn^nno6oopppqvqr0r~s"sst4tu*uv*vw&wx0y@z8z~z{({n{||J||} }}~F~p~~~FnbP4t:~臮P܊2~hʌ,(Tԏ2lr8ꔪ\`\.̚^Ɯ:؝<vB~ԣTT@§VVتFܫfP8z&t"ڱಊh" H&NʽLLؿο8JfT<Ş,ZǰȐʈ˂jΊDϒhѠBFӬN|||ԲՖ\J׈:R۪dܮ>݆0ޚF߄vDjz8r,d2pL b(< P2nrrrrrrrrrrrrrrrr     x '            @            	   ^    	   ^  	   t  	  .   	  &   	  $   	     	    	    	 	   	  *  	  <  	  D  	  0Z  	    	  
  	  C o p y r i g h t   D a v e   G a n d y   2 0 1 5 .   A l l   r i g h t s   r e s e r v e d . F o n t A w e s o m e R e g u l a r p y r s :   F o n t A w e s o m e :   2 0 1 2 F o n t A w e s o m e   R e g u l a r V e r s i o n   4 . 4 . 0   2 0 1 5 F o n t A w e s o m e P l e a s e   r e f e r   t o   t h e   C o p y r i g h t   s e c t i o n   f o r   t h e   f o n t   t r a d e m a r k   a t t r i b u t i o n   n o t i c e s . F o r t   A w e s o m e D a v e   G a n d y h t t p : / / f o n t a w e s o m e . i o h t t p : / / f o n t a w e s o m e . i o / l i c e n s e / W e b f o n t   1 . 0 T u e   J u l   2 8   1 1 : 2 3 : 1 2   2 0 1 5 k e e p o r i o n F o n t   S q u i r r e l                               x           	
    !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopq   rstuvwxyz{|}~ 	
 " !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`ab cdefghijklmnopqrstuvwxyz{|}~ 	
 !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdef uni00A0uni2000uni2001uni2002uni2003uni2004uni2005uni2006uni2007uni2008uni2009uni200Auni202Funi205Funi25FCglassmusicsearchenvelopeheartstar
star_emptyuserfilmth_largethth_listokremovezoom_inzoom_outoffsignalcogtrashhomefile_alttimeroaddownload_altdownloaduploadinboxplay_circlerepeatrefreshlist_altlockflag
headphones
volume_offvolume_down	volume_upqrcodebarcodetagtagsbookbookmarkprintcamerafontbolditalictext_height
text_width
align_leftalign_centeralign_rightalign_justifylistindent_leftindent_rightfacetime_videopicturepencil
map_markeradjusttinteditsharecheckmovestep_backwardfast_backwardbackwardplaypausestopforwardfast_forwardstep_forwardejectchevron_leftchevron_right	plus_sign
minus_signremove_signok_signquestion_sign	info_sign
screenshotremove_circle	ok_circle
ban_circle
arrow_leftarrow_rightarrow_up
arrow_down	share_altresize_fullresize_smallexclamation_signgiftleaffireeye_open	eye_closewarning_signplanecalendarrandomcommentmagnet
chevron_upchevron_downretweetshopping_cartfolder_closefolder_openresize_verticalresize_horizontal	bar_charttwitter_signfacebook_signcamera_retrokeycogscommentsthumbs_up_altthumbs_down_alt	star_halfheart_emptysignoutlinkedin_signpushpinexternal_linksignintrophygithub_sign
upload_altlemonphonecheck_emptybookmark_empty
phone_signtwitterfacebookgithubunlockcredit_cardrsshddbullhornbellcertificate
hand_right	hand_lefthand_up	hand_downcircle_arrow_leftcircle_arrow_rightcircle_arrow_upcircle_arrow_downglobewrenchtasksfilter	briefcase
fullscreengrouplinkcloudbeakercutcopy
paper_clipsave
sign_blankreorderulolstrikethrough	underlinetablemagictruck	pinterestpinterest_signgoogle_plus_signgoogle_plusmoney
caret_downcaret_up
caret_leftcaret_rightcolumnssort	sort_downsort_upenvelope_altlinkedinundolegal	dashboardcomment_altcomments_altboltsitemapumbrellapaste
light_bulbexchangecloud_downloadcloud_uploaduser_mdstethoscopesuitcasebell_altcoffeefoodfile_text_altbuildinghospital	ambulancemedkitfighter_jetbeerh_signf0fedouble_angle_leftdouble_angle_rightdouble_angle_updouble_angle_down
angle_leftangle_rightangle_up
angle_downdesktoplaptoptabletmobile_phonecircle_blank
quote_leftquote_rightspinnercirclereply
github_altfolder_close_altfolder_open_alt
expand_altcollapse_altsmilefrownmehgamepadkeyboardflag_altflag_checkeredterminalcode	reply_allstar_half_emptylocation_arrowcrop	code_forkunlink_279exclamationsuperscript	subscript_283puzzle_piece
microphonemicrophone_offshieldcalendar_emptyfire_extinguisherrocketmaxcdnchevron_sign_leftchevron_sign_rightchevron_sign_upchevron_sign_downhtml5css3anchor
unlock_altbullseyeellipsis_horizontalellipsis_vertical_303	play_signticketminus_sign_altcheck_minuslevel_up
level_down
check_sign	edit_sign_312
share_signcompasscollapsecollapse_top_317eurgbpusdinrjpyrubkrwbtcfile	file_textsort_by_alphabet_329sort_by_attributessort_by_attributes_altsort_by_ordersort_by_order_alt_334_335youtube_signyoutubexing	xing_signyoutube_playdropboxstackexchange	instagramflickradnf171bitbucket_signtumblrtumblr_signlong_arrow_downlong_arrow_uplong_arrow_leftlong_arrow_rightwindowsandroidlinuxdribbleskype
foursquaretrellofemalemalegittipsun_366archivebugvkweiborenren_372stack_exchange_374arrow_circle_alt_left_376dot_circle_alt_378vimeo_square_380plus_square_o_382_383_384_385_386_387_388_389uniF1A0f1a1_392_393f1a4_395_396_397_398_399_400f1ab_402_403_404uniF1B1_406_407_408_409_410_411_412_413_414_415_416_417_418_419uniF1C0uniF1C1_422_423_424_425_426_427_428_429_430_431_432_433_434uniF1D0uniF1D1uniF1D2_438_439uniF1D5uniF1D6uniF1D7_443_444_445_446_447_448_449uniF1E0_451_452_453_454_455_456_457_458_459_460_461_462_463_464uniF1F0_466_467f1f3_469_470_471_472_473_474_475_476f1fc_478_479_480_481_482_483_484_485_486_487_488_489_490_491_492_493_494f210_496f212_498_499_500_501_502_503_504_505_506_507_508_509venus_511_512_513_514_515_516_517_518_519_520_521_522_523_524_525_526_527_528_529_530_531_532_533_534_535_536_537_538_539_540_541_542_543_544_545_546_547_548_549_550_551_552_553_554_555_556_557_558_559_560_561_562_563_564_565_566_567_568_569f260f261_572f263_574_575_576_577_578_579_580_581_582_583_584_585_586_587_588_589_590_591_592_593_594_595_596_597_598f27euniF280uniF281_602_603_604uniF285uniF286_607_608_609_610_611_612_613_614  U`                                      assets/fonts/FontAwesome.otf                                                                        0000705                 00000317424 15242037122 0012147 0                                                                                                    ustar 00                                                                                                                                                                                                                                                       OTTO 	   CFF L   OS/22zR      `cmap!wO    headHI      6hhea
Z      $hmtx  l  	maxpgP       name&x  `  post             g(_<      Q     K	                 	 	               Z  P g   \   3   3  s                              pyrs @                                     /          /        :        /        Q        /       Q c              	 
                   	   ^   	  [  	  q  	  .  	  [  	  $  	  [  	    	  s  	 	   	  *  	  <Copyright Dave Gandy 2015. All rights reserved.FontAwesomepyrs: FontAwesome: 2012Version 4.4.0 2015Please refer to the Copyright section for the font trademark attribution notices.Fort AwesomeDave Gandyhttp://fontawesome.iohttp://fontawesome.io/license/ C o p y r i g h t   D a v e   G a n d y   2 0 1 5 .   A l l   r i g h t s   r e s e r v e d . F o n t A w e s o m e R e g u l a r p y r s :   F o n t A w e s o m e :   2 0 1 2 V e r s i o n   4 . 4 . 0   2 0 1 5 P l e a s e   r e f e r   t o   t h e   C o p y r i g h t   s e c t i o n   f o r   t h e   f o n t   t r a d e m a r k   a t t r i b u t i o n   n o t i c e s . F o r t   A w e s o m e D a v e   G a n d y h t t p : / / f o n t a w e s o m e . i o h t t p : / / f o n t a w e s o m e . i o / l i c e n s e /         "          "                                                                                                                                                                         
	                                                                                   l @  ,       !"""`>N^fin~'(.>N^n~>N^n~          !"""` !@P`gjp  ()0@P`p !@P`p   \QA0ޕR
	       j                           R                                                                                  p   v    _                         ]                             y n                       2                           @                                                                                              z                    Z                                @    5 5                                           Z  Z          @                                                                    ,  _                 @                                                       f                                @                    @                        (                                      @            @      @        -   M M -  M M                  @                                 @  @  -                 b                                                           5                                           -            8                                   @                  D           @                   ,              *     @                                                 	     m  o                     )                 @    @   	                                	                                   '                      D     9                 >                              d  U     *       q	   	   	   	   	   	                                             	                                                           	                                                                                        R	      	   	   	   	   	            	         	   	      	                                                 @   	     e     	                !     	                         %                 R                                                                      FontAwesome C uvv	  U6 U6+T+| u\       " , 0 4 < > E G M T \ _ e h m q y }                  #)4>HT_lp{
'4=GRYfoy&,39COVcoz"/5;FPUZes}&+16<EOW_hmqv|)04=DPX\aju(,26GYhy%16;>EMUckox				$	5	G	V	g	l	p	v													




&
*
-
0
3
6
9
<
?
B
F
O
_
c
u












 &5BQafmty !%)-159=AHLPTX\`dhlptx|%,37;?CGKOVZ^bfjnrvz~	!%)-159=AEJNRVZ^bfjnrvz~
"&*.26:>BFJNRVZ^bfjnrvz~%0glassmusicsearchenvelopeheartstarstar_emptyuserfilmth_largethth_listokremovezoom_inzoom_outoffsignalcogtrashhomefile_alttimeroaddownload_altdownloaduploadinboxplay_circlerepeatrefreshlist_altlockflagheadphonesvolume_offvolume_downvolume_upqrcodebarcodetagtagsbookbookmarkprintcamerafontbolditalictext_heighttext_widthalign_leftalign_centeralign_rightalign_justifylistindent_leftindent_rightfacetime_videopicturepencilmap_markeradjusttinteditsharecheckmovestep_backwardfast_backwardbackwardplaypausestopforwardfast_forwardstep_forwardejectchevron_leftchevron_rightplus_signminus_signremove_signok_signquestion_signinfo_signscreenshotremove_circleok_circleban_circlearrow_leftarrow_rightarrow_uparrow_downshare_altresize_fullresize_smallexclamation_signgiftleaffireeye_openeye_closewarning_signplanecalendarrandomcommentmagnetchevron_upchevron_downretweetshopping_cartfolder_closefolder_openresize_verticalresize_horizontalbar_charttwitter_signfacebook_signcamera_retrokeycogscommentsthumbs_up_altthumbs_down_altstar_halfheart_emptysignoutlinkedin_signpushpinexternal_linksignintrophygithub_signupload_altlemonphonecheck_emptybookmark_emptyphone_signtwitterfacebookgithubunlockcredit_cardrsshddbullhornbellcertificatehand_righthand_lefthand_uphand_downcircle_arrow_leftcircle_arrow_rightcircle_arrow_upcircle_arrow_downglobewrenchtasksfilterbriefcasefullscreennotequalinfinitylessequalgrouplinkcloudbeakercutcopypaper_clipsavesign_blankreorderulolstrikethroughunderlinetablemagictruckpinterestpinterest_signgoogle_plus_signgoogle_plusmoneycaret_downcaret_upcaret_leftcaret_rightcolumnssortsort_downsort_upenvelope_altlinkedinundolegaldashboardcomment_altcomments_altboltsitemapumbrellapastelight_bulbexchangecloud_downloadcloud_uploaduser_mdstethoscopesuitcasebell_altcoffeefoodfile_text_altbuildinghospitalambulancemedkitfighter_jetbeerh_signf0fedouble_angle_leftdouble_angle_rightdouble_angle_updouble_angle_downangle_leftangle_rightangle_upangle_downdesktoplaptoptabletmobile_phonecircle_blankquote_leftquote_rightspinnercirclereplygithub_altfolder_close_altfolder_open_altexpand_altcollapse_altsmilefrownmehgamepadkeyboardflag_altflag_checkeredterminalcodereply_allstar_half_emptylocation_arrowcropcode_forkunlink_279exclamationsuperscriptsubscript_283puzzle_piecemicrophonemicrophone_offshieldcalendar_emptyfire_extinguisherrocketmaxcdnchevron_sign_leftchevron_sign_rightchevron_sign_upchevron_sign_downhtml5css3anchorunlock_altbullseyeellipsis_horizontalellipsis_vertical_303play_signticketminus_sign_altcheck_minuslevel_uplevel_downcheck_signedit_sign_312share_signcompasscollapsecollapse_top_317eurgbpusdinrjpyrubkrwbtcfilefile_textsort_by_alphabet_329sort_by_attributessort_by_attributes_altsort_by_ordersort_by_order_alt_334_335youtube_signyoutubexingxing_signyoutube_playdropboxstackexchangeinstagramflickradnf171bitbucket_signtumblrtumblr_signlong_arrow_downlong_arrow_uplong_arrow_leftlong_arrow_rightapplewindowsandroidlinuxdribbleskypefoursquaretrellofemalemalegittipsun_366archivebugvkweiborenren_372stack_exchange_374arrow_circle_alt_left_376dot_circle_alt_378vimeo_square_380plus_square_o_382_383_384_385_386_387_388_389uniF1A0f1a1_392_393f1a4_395_396_397_398_399_400f1ab_402_403_404uniF1B1_406_407_408_409_410_411_412_413_414_415_416_417_418_419uniF1C0uniF1C1_422_423_424_425_426_427_428_429_430_431_432_433_434uniF1D0uniF1D1uniF1D2_438_439uniF1D5uniF1D6uniF1D7_443_444_445_446_447_448_449uniF1E0_451_452_453_454_455_456_457_458_459_460_461_462_463_464uniF1F0_466_467f1f3_469_470_471_472_473_474_475_476f1fc_478_479_480_481_482_483_484_485_486_487_488_489_490_491_492_493_494f210_496f212_498_499_500_501_502_503_504_505_506_507_508_509venus_511_512_513_514_515_516_517_518_519_520_521_522_523_524_525_526_527_528_529_530_531_532_533_534_535_536_537_538_539_540_541_542_543_544_545_546_547_548_549_550_551_552_553_554_555_556_557_558_559_560_561_562_563_564_565_566_567_568_569f260f261_572f263_574_575_576_577_578_579_580_581_582_583_584_585_586_587_588_589_590_591_592_593_594_595_596_597_598f27euniF280uniF281_602_603_604uniF285uniF286_607_608_609_610_611_612_613_614Copyright Dave Gandy 2015. All rights reserved.FontAwesome  
  $ ( =     $*.48<DHL{!'+9>`g"&.26;?DKjsisw$7=FNUzRW^ejquy~	4<DNY^ny
P[`eisv{			%	<	@	G	S	l	t	{					





!
'
M
q
v









 	-LUu~
(:K\ejqy#<UYbmpw}
$).DZkx}	(,?RZclqv|#3AIOVZ`djrz$2@N\dmrz (-3>JRZ`fkpv{,!
T

<<BKH
K\i
"Rt%
l

/@EXXE+y}}yKX=
+EXXE'3
`T~~4gT@
4
f

1
TR
@D=
'
*
<<22
T>
:TF
ya
H
T\=2
@@u
66%
y}}yKy}}yTJ
@
K1
@
c;D
N
'
T&F
]]H}t	 "" 	hh
+
Xy}N
|zKz||zKz|K

ff

T
TT|zeU#&
|
w
R+
hnnh*}yTy}}yT

V`*#`V
 EQ|z `
F
~k9
9
0hnDRRD~


1
TR
5
-

T tzuxu[Brlmyz~ 5qsUaRD`hnnhhnnhy}}yKy}8

TT
TT{
[
;(=ZXWG/9;/_Mknmn9:YIƑP`q~d_iiii
h@@hh@@hh@@h0:
l
.F/B[NPuc]T<Od}}|1B&2B
9T
i
ԟ-
.<
YYffTE
EQj
v
y}6nh
Pj
T-
Tj}]t
#EAS i^wvhvi^S AE]#W
^TA$$EM
$$V``VV`
`Vm3'!%Ơ#xM'nqwdo^
j
]
3C+
]yots{tqT-
Tc`
4~~4`_`R`e9C/R&aҦ4A'")~41
'
T
!5!'
ftkv
K:
z;
;
{z
d

33z|:vl
:u
5!'
.
BQE0u
.fM@
jmq;fveKxvuztvRDffYYY
ff4
i8_dd_~~xzƅy@
T
T;
Srj23CC3l
t@kt
f
 \|\?Z Eԅc*y^H(ym|[ZZrwh_
Nt


~
8CZ7)

6
9"TM5Ř{~~D;i
ffPttBxwBD$$D
8
8
8
V``V

YP
>

}yvKyx}zyzr^``^?_
}D}}
kK&
^hnnhL
);
h@@hh@@hh@@h@
T1
+yys
pF
88'}
}t.+ݭG
4
1
!
 _


-.
n\n3/{V=@;~~~w~fz\J$9:lAT}yT5Tmm))mm)~w]]w~05

HEYM
@h!(
!
SZZA3
3C~z{ Uf	,,		,				,	-
.
hnnh\xcikvss]tRatyxx{Vv7+4%MYtk6~w~~p
05
xyots{tpOK+yyrrrry+t1()=
@
3<
|
T*
5quuqqu;;uqQDntyt
H
t>
r!5$
arwwvyr/w__cp]44x]]9

h
&&{
F BiD$$Dyy;6Tu|z<<<<`=db97TT_Ldknh

˻WL
ETO>
}|AE##EE##E~w]ɽs
o"7lz&6\
gO
+
<<y}|zfz{13DR$$-
0/

EQjb
~++P,,
z}XtxmihbW_):z{<
T;zt*E##EtBh@s%$TɽYMqt{tsoy*10],y	B'!!V}jii`V']
]6wkz||s}g+
   hTz4X  \$"WTSZrsyy'&%t~*i

]]       }            Yg    ,  0                1     x    e   q   Z   
    	c 	 	 
; 
 
 B  P       j ^ a     i 4   a 8 d       T   k   8   b     9 [ d     & \   P   T   P     !F ! " "t " " " #o $ $ % % & 'G ' ( )e ) * *O * += + + ,9 ,{ , , -q - - . 0
 01 1 2K 2_ 2 3 3{ 3 4/ 4j 5 6 6d 7e 8	 8? 8i 8 9 9 :
 := : ;W ; <` < = > ? @ A B2 B B C	 Gz G H! H\ H I/ I1 I3 I5 I K  Kg K Mv N N OZ Ob Ov O P Q S Sy T T U8 U V W X X  X' XJ Xi X X X X YK Y Y Z [_ [} [ \W \ ]m ] ^ _ _b _ `Z a aG a a bF b~ c' c d_ d eE e e e f& f9 fG fU fr f f f g  gc g g g h h h h i0 i j; j j j k& kp k l l m@ n n n n o} o p, p q q r> r r s1 t tS t u1 u9 u vo v v w& wa w w x5 y y4 y y y z* z {& {< {q { |+ |b | }* } } ~ ~Q ~ q   >  B U 3 u   4 i     h    7  `        b   N       4          v h  o  k      / w     B  *  k %   t  A  Y q    V  O  L  l B       X    Ā Ĺ ) ƿ C Ǫ   ɓ  ʥ 4   ͫ     l q 9 ) 	 X ִ  , : ة  q    ܃  g L ޵    (     K  
  -       7 Z      <    c =   R `			j

}p<}abT|lF7D) c    !	![!"#$$v%&#&o''F'{''(*)3)+`,B-./019122p4+456%78e9 9:
:;;<=>>*>x>>?(?@H@@A/ABB>CCCCC
CCCCCCCCCCTt TT4d
4  
z..ȮhKh<Nh--N<vhNKhN<h..Nhv<NNvȮ-m-hڠvNl

44T
44V``VTS44T?
44K
Tyuuyyuuyy?j`,4G yu~8գYSKkj>h3c#^uiƭRl

@.
?
FMffMZnnw


d
 `Vc~ofa[
Y
 T?

@
suw#$L>$#69JX"!!`V+/EE+V1RFS
_r@3CC3U
f
5
p] ksu[ztfU& q9[[9:QQ:Mqksu[ztfU&l
vVlXXlVv6 *33 6q
)
Ki
l

i4Y@
 zzzzf
Q
T0
Q
`VV``VTV`ԛ

T0
f
Q
T0


TV``VT
 Q


TV``VT
TVTV``VT
^y
$%
"
hhjyy

"
"
 ttBKH
ttH
K\tti
tt
?
 H
K\i
?
a
tW&S:aR`S:a))6
z6)õ`a;R`W&tA
;;QEEQQEEQ Q





T

T


@
h
k
zK}zaEV" nmloL{yry}{{OJNll~n|i&js^^[{m~mkNo|y|rz{Kpijki\f_i]QM[!|Lz~rǑ̒Ȫ 'fgiM


([po
pHH4g
 l
nnt-
v
.s~oJ,W`aGahc~v~AHH
< 
4t4tttZ
64$){||||
N
g|5pp
Ty~}y:y~T
ppur5|gccn_Tz}

y}}zT 

Tdgf[wXX[fe
?
tqTTTTTTv

T~~/7
v
('T
T7
h
,T,ThXhYm}}chhcqj}}iVgvL
wxrwwvttv$d
t
!SY;;A
ylD&)'C3
Y4T[

t}
|}zcesd,.9/F-0T5
T"Q>W"SX5z|[,9FZ3{
T[
i
#""T



@
ԪG@3CC3U
TTT
T+
kT^^^^Tkth]bt\i
K^_=1lno1"-SKq~n}s{x}zsz6
;3n L T
T/WW/!(ZMj:kA
TK+k+8V=_GxɁHKxMG_8+
MddN-hnog??go 
dN-hnog??go_QP
ox}yCQ(Csyrp}t{xo_PQ_K
n{}|zx8S``*S8qxozo||{}s}|{n6
K
vvvu'j

ʪʪꪫʪ骫kihvvvijiʌ
oz
1z
q
w
z
z
z
 1{g1{{{{Q
kllo ʀ
oijivvviijn
)n
/
_^X*DtcX_^sjii}jttjjhs! g|vtywxog`vf/TFw.qra\zzzaM{tswxyzzVc,sj|wut{tv\h2p]yx}xzuxWi:mY{pvzs~{sww}e_^#:/r8
s
 4S4K4"Kme,,eBV4
K"44"4\t4T?
4t
"T33333333T4tXr=EE=UIrXtv
l
O
T,
 ie%/,xxx(((#Ɏ	wR'VbgfVpoqqq{\/j}}Yh^?DFG@EatV@ha %-n<scsŔO5*VJM(0x[[_}~%;AHW{'QbgfgFIGf=R!G v^]^z8'n\PuH#hPMqJK{-ЊxġMMN[ĐơϦԖУ!!!x$ǁΓmr;ni~GhftnOlFKwz6;p6p_ph6hpo;_}oh6h6}_yǏ\|}Cy	^^^LuZ
q4I
eptcCDC
yǐ]|zb||}3mrS
667W,"4I
~yv}u
] y]hvp|zwwzv{y{ |phy
 :

.
 :
d
.
:
[
y
:
.r
:
[
y0 :

.0 :
d
.0:
[
yE
E
E
t

 @

f
tX>l
TX
f
T1
H
ke
tX
{tz{~'&9*
TT&
T|
:''~)T>4444Tl

|z@
Y

4ka@@
 j
D~~UT44/
~sjiij}st:944::!k
CNLT_p tR!u
@MϠHGwwsr@umXXj:bkkcv`~:jX;Y;l-&@yyE
iS+,,||~KK$
fccL+4444400f,,fMff// gl
}{|y~wj$
|z)"L

{zt{tqT4 7\3ulz* p4Tqtv l
KK$
fccL{kkYkkkYkkkkYkBBk

{


+
u
0vgs
<
UZ<

Z
 SUZ<
ZZ
ZZrZ
hlvlr|h@h|h
d
@^
F
^
[
h
d
@ Z;ZZ
ZZrwhZd
Z;Z@;}rrwS
rZZ}

u
.
::}
zz
zzr::
'
zz}
::

::
zzC
bu

[nh
!C
hnn
!h
}2zz11z
IIII{zzz1IIII
IIII1zzz{IIII{zv!

zz{z
vv,+
1zz6h
4y}}yTcTN
T4,#Q?`\pnZtҫȧPKgjzx}wy\O~#7@TKT!h
4@
T1
4R
+1
4R
;D44{44!`$$`$`$l
$$v$`$:
}
#Zk==k##kZ==Zk#:
#k==kZ#v#k==k#[
]&&&&&&

&&kK$g
%}
''}
%%

::!8$ %56&{SjjQh[=<<=>a>a
^CT}s@skiij}sst:
jt x
}sTӸ~ssjiik}ss@@stjtTC^OG
GOTs:
js@t
 K/
sjiij~sts:
ks@sTC^ǸTs KT/
@sjiij}ttTTtjiij}tsA@s:
jt t !j _

t,Qa! KtkvqCth
tԃh

<<<a<-!y}|zTy|RT|y.}|yMx|zp4HhnzhThnhTThS\V`Zy~5V``VV5`VOL'HMoZd99dMH''G
L+&4?
4:f

/J7I[^_[Z_~}yhn{x(nhZf7p\XTHaG-whhiwVQZ:#vz]l`L{l{,+\^˒l
4BH
K\@i
CN.ETiCkhTT$?LL?H
]]
vc0;'dquuq--*LaaLvtrrtvLa`LT$]D'#5H
#7quuq-.*Sv-yU*PNO_Z~wrsrswH7*V3ziU{QgegSA:NT~=L=&0ErAuXf
5y}|
y}RT|yR
~|yMx|z]pkou`\\`qbuud[ddsd
uz``K4K++44-3V+*QQe
듔VV땓4L554K ˫44˫j
_`44_Tt`Tt`Tt_44
K
Gt4`_t
K
GpK
K

Wl
f
."&Ft5t++KQc-b.T5MKTz|
sRrQnS SL0t5tĤŨ Ty}
%%_Ib	\;COLD|yz|rs{A0%h
d
TKi``iK,QQ,^5
-
.^5
-
[
Larzy}
zyrrbr:9r
:9Llr:9}
}
:9rrbrzy
zy)
4TTF
yxxy}||F
T44rdTi
4^T44fTH
4TTA||}  QEEQQEEQQEEQQEEQ@^OH
`E{l^@lF

, 4B
4
&
)WWXg3
UGQ {y|ss^
 B

 /T_

{
u
0[
 

 


2o`gfbnh./>p+>|Ri/8Crb{Zja_qV Pi44T)
V``V|
N
tY
d


T
f
 ` d
d

TT'
noqqon'
!5((5!Tft//tq:v++n+*mm*+n33"
äyppv-)k
ERQDEQQEERQDEQQE9},~
 q
2srqt-}}N}}~ZTYprr~npwefc~rrq/s~|~M}~,soppndmfnen
 s
-}N1kmo/C
C
f
l
yQ
n6$7dI.3Tfo1\s\k<^
U/Sk?Ÿj-@	
+6	7
Dɝ·lZ'#ik}ts')2OKebh`i_mdG1dq`d
m]a"#
eG.3GNOH	6
	t@K̬-*osr^?<k篞
Y	xxytR]ssvkc\k}\vs򺊧1fzk~rvdO J.eY$n:mo`d
q1d_`cJl2)t}ǏymD
	f
@KM>M>KR4)<5Mnɿ<5)4RP
p]5 dr3CT~ϧXԙT&
~ϧ4
{{{J{J IYU:=YϿڼWG j8Ke`bz|vw{	̋{&,(i"z 4t4|
TwN
T480QEEQQEEQ086
(y{wA[
il
$
T/TL^ADD  EM
  DDsl

,^GofC3T~
^Go
 ^!Y1/)Yb1+
pԶ
V``V
Rzf|Xm}[YKKkK+++K+K&6+++k˙̚zfR_L<L aNi`ʆ ŕXP,!
t\
r[t
 

˷?ApDU88Dp?
?
\`
TTz{{z~TTTlTc!8ZZ.n82Y\uZHm{(r^-Ʒ֫Ϧ[{wx^^]Up[c\ˀtbdee	$fb%<l6fGWG49<:]ua\H,2n{l
ZwRQSqklN2IUphsJ&J}rIm{jlkāuvgE{|jZvkSr^kPxOH.76NPT>aa>"ipuleǞëѯtC3$
4,g3&

t&;*226;*s


qXsIm[FHNMo;otpлͩ&oxtt_Jdwry0Ayu{&Ay  (TQrLyJγʣMfEpB}P7.G$%Frrs3Xo[{TO(QVY`1(mpnnvww."4X+prq/#>VK?ʹķSp. v/nQ1h%
p%\
8rwsp TTT]]S
T4V+T
-
[
)

\@@
@GttZ
 Y

 T>zi.],++,]i{{}zyjpnjry''{{~{y#joicciq#44J
J
4
@
ԪG2t1v~z1vF4YtHAAHZEtYrtpԊ
d
4TttgTEuFF6!1=۴n_F(
RD\\T$4
.G^SSG^J(@twT3fM
V``V}~d3fTw@t(EQT]Th
`wrPNxyprNV[Pwrqqyxyprrwwr[PNrpyxxyprNP[rwwrrpyxyprrwP[VNrpyxNPrw}PNVVNPxi4.TNl
FPPFs\k>\V?Ckk++JL7

=3`?.Qm\ibgbjnG5[`d
fuel#
= 	 i.Gc4`C>[B
atĹixFP+֫ঽtttuV]]B1f
[GngimQ`?34=_`b

	 	 =acf}|}KKYS#L

KV?Ck1B]]Vvuut+PFxiԹta?MQYKK}|}fca= 	 	

b`_=43?`QmigجnG[h
ʰl
ZB
xxyatRt]ssvikcx\j_qFPPFGOLJ++kkC>[+
hnF
Ԯnhkfuff
`[5Gjnbgbi\m.Q?`3<
	
 	 =؉ˠSL@
C
QQ{z@e00-
0 
{zz{QQM!
00LQQk
QQ
0{z%


00{
QQbQQL 
{z

00k
QQc
QQ 
{zE݂v
<<<a<-~|iyzr|x|~t}uz~}tyzrjhv~|{|~oz|r}spwhjhy~|}}|x}owuxzp}o~vqyv}}{oy~tcuyuu~xr}|~gwɛ|cx||vt|$|~d@|~vrys~@uw}{~||}}xzutl@|~|rk||}y~z{|}{x|sv~vzyzzy7}r~ww/*Gs i_
8"W==s:
jt x
>>Gww|&xjUt=N,BQ?F
;

{tq zu
~z
t
44
44tU
t
a h
w$$Tj
Tqt{stoy$$$$tqT5
T6
$$jj$$T.T
$$"Wn|`_]#v:[vVi\\iVv6*446Y
Tq
u܎v#6]_`uuu0n1W@^;Y
 TT`4S2S@zyrrrrybcyjdK
 djyddysqSUmtvwjoXV``VXojvwtnrry@dd5
ybcyrrUnTddUA?<AkST3«nUbcUB>?BnUU'&UVlA?>CTddUmի3STk@< ?BUbcTmԨ'&"J,>[KQtd_O>Kj}|},D!/G
 #

#@*!!@i##flA\3T3T

K"~xF͇F6)-1?pWSRWn?=%(EUmþBB_XS-(mU6EF(%=?VXp򎬇F˞y\&sqb]NEN ewd G&NS6}dNDwO0]bqNñ џsSe& GF\}w~vt:4+q4CKtېE,-
4dYztdV4VAlff,,fflAV4ST?
Vi?fflAV4K
444K
4|+fLdUS55TTd..Ġ
..||eWT6LL6UVe[o!"m\à
B)%h;=h&)CMe004Vԙ
4
4S?
4{}~bx4
T
ԪTGkmeeBV4@?
h
d
 h
d
Trrrf
>l
4B
4F>l
4B
4FT
4Fh	$@7_H,`djXg]SˈScfzhebpR3^v"Om(;.?GdFjPyi7voMyyy4
@ (!?:::  (l

T@bTz|@>f
@4
/{pkgGR[".__ušȟmNgG&߅ȂAP_ATeAa6226^%OLJnpsosxZWS]{`lcmcbnXzyY\a\^cbhnnpszf%_whY+W~ cv͉ΒИhv9!݉}t{D$<T;JYYbll|ԡǩ+}yLJGa75t|m`PvG#?}Zhzdqcwuvltlsj{hxPKGQPObktl{·}yُˌ|na`ZUTSR{S-deh}~~3@
@
; 4m

y}}yy}T}yT

1t
@
 eO  .ZZ{
{zz{ZZ
ROXOXXOXOXXXr6v2
@
WW2x@
^5
T4g[wrrZZTT<D^Aٕ]]ف))P%
Q̙rԋѭVLE^"t*9xI&Oq=b}%BVH\fzw}i~w{z Y
nL Uiw<u8=q^Ei{PjPn]vӀ
((NKsӋЬWMF_#t+:xI$Mo;`z$?TH]f{x}i~x{z!YlJSfu:s9>p_Civ9U:j\ik==T6N#-j^AT36dC@,*ݶ8Q_39*w:8XkEK[=.=)Ҹưչtz}|}(JC9_4K4'KT,T"
T(
 N;Nh[NE"sxt
.6-f. 8CW8
orkOb.QE-]]d Md*SkC
t&
ŧH(PSb_ghPsY6gWb7E9@7M( m"mh hooi )^
u{r|sv>(T+J~ff~JJ~ff~Jv

O
^ 5
-
 [

o

mTT{zTTs_
TT
TT c
4

g@@

To
m
To

mmjingr;<7
M7#?#77<:fimU
B4@ V7)0[/ 1 /^//1 0 #sEAA*,?m6"mF=(G`$.ƣ0
a
;;YS<!
/
sjiel{ppmoy,,yrrUg[giyxtq]um~~~~mu]qtyxgi[gUrry,,"
omu
pp{leijt t !
vL
TTL
@u^9v:p%"M$%MڑhiL
L
TTL
T&&&&@;$yz%:@
%%
iT
DddDWXYV_lw}v~v*AdDQ
yo6$7n	^~ )?cwrvy~x]͈}|*YvvTF 
+TT?
VԹ
TT+V``VS?
V+TT+
?
V+TT+
?
 
XvvuuvvHNNHHN>
+
				1j
j/V
qV
qeU>k.)$4S4
T
˪TGK4ime,,~V4T?
#x:4tT.H
pFF4KqHaZxuuvwtD6O'xODwuxaq\_II_\DD$2??  nzykjstz{ztsjmy}z{JlQeűťž̛{yn׭|zT|WT`
t4`Tz|
"
tFTGtDts"
4z}|yt
T
ty}s
tT4T>

F
N[cG=B^60
QEEQQE
]uI7#e  #7upjj_pB:'
!5ܾئ_Wc[7+447q

5!'
7Ep>
m;4U>
ua[w
RҢ&>
&
RD[apdu茆+
U;4mph]@
@h֦tFt

K=t
 B
K 
$4
(@twT3fM
V``V}~d3fTw@t(EQT]T)T'
K5!
O
h@@h5
t{
T

.4\
44\
4:Bpmצ^ 
\tEQ
< 
44K&T/T+ttT4
T/T4
T/
t#"KT|zKz||zKz|GT|zKz||zKz||zKz||zKz|3
F,d
 @^ 5
-

[
?t#"3
" >,kST?

K
+
K
ԪG+* G^U VT
^ -

[
)j
L
WWl2L
4

T05
4hZwrrlZZrrwZh4
!"""T[
4^
4̗
4

Tt
k=t4
4 B
k 
)tK
+4Kk44Tt+kkTkTs
TskkTkTt44Kk4
Ftˋ |g>DRTT˫kTTktkKh@@hTTi


Tbbc
c
4 

C
b
[M Z4
}]

}]
ZxxD
tI
I
D
4IIt]

}YYY
D
I
D
I) 
Y

|zY3C4KGfF
.K
)4ԏ
TgTkFGT
Ԃ
`t4+V`@Ӷ+7_
4
Ԃ
TG
TC3t

d_gg_
d4

TGTT7EQ7
 ԕ

 Tu
NT@"RDEQRDEQb@TT@QE`EQXx
~
3C 
@T5!'
1(b
'&G
h
 !*j 4a,t{ztC8qbbb{y{x{K  t44t)
)
4\<-7ʗ7-tD&c+zi0&H.0,-##s&&2iGz@@RQT+c&&t
 ^
d
tV``V
V`T*
TTTB
4
&
)^
|~aiEjVulѬo70 XDQ*
47mGGT4!

&
naxjigxi j(C(jgjixhi5' ==' 5G7
n5Y' ==' 5YihC ix7
T^
.T7)TT@
TTp
TTCR
TT<
;TTD
KL
M
Cyy
p<
ZE
)j
?p
G

t+t

G
4
  +

G

H G

 G

G

G

`++t
$g
f
`d
g

pjMPdioo '.<WN2XVuh
P
p$]UM'T6"W
NQ(YcjMPimpP~~~+r+UQtb3L?0X3>X@Qh
 @P
 s]OT4
T)&Yffff
zM{yz	zyz	%tJjZ!!
!"и$yf+/YkzX,Hn|}1d Z\I<PW3֩ÓWW}Ou[}zyyy}p~u[BO}a` 5_qUU5yw{z q~}mnnwmr
 4Ot~w~tW
tt=tt
tt
TTXV``VV`
`V5!X'
DMje!_NPZ|UzXrĬX5!'
DMjRjdMD dR쿣3>ێĬ TTTpK
=b$tO)
36mUzxwyysqggKgywxzpTmӨ'&h~zUB>>CnUU'&TUmC>>CTz~p5
y7O)
36$+=
}
K6
Khnnh
 T-
[
Pt-

tohhonhhn
S3@
8<
;|#&%6Nkj3hW@x}pU3@
@8<
Y;|$&%6Nli3hWy|p"9Iv]Yfh{osjeV]]nw uKJQT*FhltnݖݘƎqDA5%!*QTFhulstnl_a99:P~݀*Pk9okթ.

]]

DjD 
D$$DB
?CI9..9~`n

S
AENB^
 
T% 7;L9\XpqTT^5
9$9 j
#
4@_
T+}~|
~
knr]J'V{ke{ohc-#
/&|~T+ `t{yS;RQPIODwt{K6Ktqn;<-y
y
=vvkhF@8h
!!0
ZZ
ZZ0%

!!h
a!0
%

0ZZ
!!0
0
%
ZZ0ZZ
!!0
ZZ
00%
X!?6IY(uC XVYx\b66
PeSGQGz5:5'DN5(TKKT( T _
4O~~'1A3ZpT2
T7׷[v
,9_7XT5

 /
TZA1~P'
~e
Q1Q1.]
TTt
/
F
]]9
kV
Y
CyyE
66%
U
TU
TU
U
TU
TU
sL
-w|a99az~zzw|33z}zz99S h

<<<a<-wvttvw@+-

s
Z@@@@֋Y9ZYYY9Z@@@@Z݋ 

C
k
M tO4
6^
C3,L9{sYsn{xput}T4T~T6Tt}4TTru|utpxnurT}ynnA0

0gggg0%
 T(@WWS+}}F簰ɋf,,fMff z
q{ttz{j0
%
jxt~t 4G{zs{4O!mFNB9x*}}~5W]4x
G ttTc#$
yussu~uvqxTzTQJ
y7}TxvvxzT}xqvu~J
zTxqvu~ussuTTt@
T1
TR
T}yedyDs4>$0K_|h)!<z35#N2)+&hekIbz|P諌2v#O6'
I2
TkG\L9xs,'
&*b*&P[fdL"* & _DTz|}yHec$,Lt1HDU
\+!W)E $z ~jCy}6Ch&5`O?vk}6T+z|% e@1+%&?nPDbQ](E5UW+M3T)3w'T<|#
T6}ykאSS8x_uaz`{{sk=Vjb#&6$&@{_,1!T!1NH'
	t'
)&t
t+&tT;6T
T
NHf
@3uk1@:6zi4OG%/쎔|~}.)|}~}*1~|4
"C4
d4}3;e:}38i1..`zJ1Z.cbb.jjlh8ʟgk&wl`lK`\..H̢W/&~kSڡ#ڨZDpA4Ih
l,,}V``VS@?
V`h
,,}llp8V`V``VS@?
tTT(/
}+
|?
,
(/1?
,
2
}+
|t(/O5P5PT5TP5kO56t(/4OT5T6TTO56TTO5@s2
(/Ѕma@2
(/d 4Tgnohgonh4
5
-
.3#؋Gt
`aMPQOddlli`g]_Q+fjoojhovuf \#ͥȅ֤ TnhgooghnF
4
b
~)|mxrze`I3}y?z#\f LuOvhimohjoQ]`ldOQPMatGmqvin4^ːΆ̀ƏnX+}j{xtzj1HLzii|E;;]SHv|~}Iqzxcypst}qv5Hίp}Gq|z{t}ypjip~rx}xoddnyr~Wvuyi0izj60w7~Q[`R|R[~wߋƻő|ą`P805]A]|s|z|WW[dm}yrxq~jiqy}~rxndImpr|rv| {H lDzك{цԨ_~q|||||f|mm|t^]Z'X"-Ibgiwknv v}(]jvgrxhklm[2+* mxfwj]Ynwwy{hsfy\\hqxAzireV$G4]t~%]~smn}ft]fcqyJ>LNMMNwK=KQx<r<Q؃vLNMMNLؓŞzGD!MLM.EZ#xrh]^hzirxrdVCVdqiz0nwx}y0gs|rT 7yg}}~5T~~K}g|ut~$zmvs:ssA~Tz}xpMXlLy{q-gpLn}t"VOw( f

uvxw~~vu#,lu=-rutturr->Cu)k,##,)CrrutturӠ,#ˬ&~'+' }~~}}44W+W4tl4}*UJ*d&?K&>G5#p)qM)?==BRippiip!~b^^jcjc~9?>99>?9elleBel9Ble9Bd 2  22  2 v  < <e
		h
&]&8t#4#4-_G_G!r 9*Hb=gh`̀,ް5-"MM/8(x,(90KǲіɕOTOm̀ցQ\Y5Yy{))+)jxYhmG{IUsV7=o{vu! z'f@o&d1caaPEb4"f|aunO鿦ɯ˱nno5.OB\WQĦdRۛ~-aOpbKI2C@lU[s^Yoc`̄ƃ ~ƒΑ~vD,@aD1"@3byЀѐl"k"rbsIr3p1o1]_qewG1('$:er)n'y*ԧӥؘؒ6;2]zt[uns PDcl|P~_q<}Nx0k<Nh
pti"d-"`#69VѺDMV"TAK$ ~tW
 t~~))~t 
t tO t~򕃘t
~~t =t~qqPV]]tסжihhMD;ZQuItI[nt]FEQZ-[+@@*e-8;@@4uvǹߤp7ZYCYCq5( >>>-r>->j7)1auabtavzyvvzyu:uzyvvzyvLR]]SBR]ĸB]Sx*.NZwR]ĹwwR]ĹwǼ|CNGCCG|pNC!C,313, q|]RS]^RBR]Ĺw$䔻kiᦿůI7Y=+kt}n~x?z}}}b;u{{~  YP
K  S{TSm  {qiTAsFGKiwzw  o_ewkjZ ˒lshztu|Цy  u"5@ '\ϊ؊sqٱ  .&7e}|_g͗ 5|qD|unlaK]~d iqqquzw|wʎó^=~Şv}M,7QupzTS(pzKYN  GJ b/ѓcctup4K6gp1zy  yr7Y}{w\@  wxFis}txyoGqtsp^)X)iz=J<I
ԑyʂXjeˈ  𫐠{yM9<  IbquҏБZ=Z>Fdf|oL{1$+#~[G0`SQRne*wXjsIx[Ͽ^d7,vX9<DBcr~}\{zeugwTqtmqFXec_d 5dyq]ŉm]nr╠Ĩ  ԰= j<5x03%\QMG#K.<؃fff h8z_=K8^@mK#2'(hU5hKQy%."/b7@:,M%sysvn}||,#/!
@m_X-PuPª.MĲT2&&<_]AQS@QdXJ*13SsVQ~ys"k=OBmmYXX[J:3h@@h3:J[XXYm`
K||vpusrdopdadomnno&{{xojph_hmnfArkRhg/QQIs7z6ݺͰHfH́b44TT@
t1
R
t;4@
t1
R
t;4

tcMAAM[Pc|xxSw/F
TMY4TTF
/wp{K
4
TttT5!'
4$dd$
h
~mpk`YyuݶSHkpf1H!xHH-Ho{H遏+HH+HH-}%I3U6RH!f_xxoriB?z<
."to2|3A
CˬThn2~}
5
T-
l
.^ u
d
[
 @`^tAA
}
AAAA}

AAI't
t2F^wtpcsKcI>ZY
deҦt.tE##E)o}}4u{zu\O#nWvZh,lt:$4Zsj{rglb1XldvG'bQ^{yqa|x|{jjs}.Ӣѡ?IYKk.#4)sV
1| XRf
7n]Mw]^}ǟxwVo]ytyywyB A'!3EMM!#] ([B4WtImnxWxWtIWȇ$rzӎlQ3J>Rq_(%vv==)G/H{uAR6=zkwlkkwllaelj{RI7
A5ifsgffsh./gge0lF
h
miE#=[Z\Z#=EOiNQ@QyQ@QzE&}9ً܉{H[1N[GCJۋz"q*g2EKa"81&*a/rwxrrwT(v]*I0  3  30H4Tz|
4$T|W2
T
4$
T>
~~TzwwvxT24JY
7
 dp~
F47zw8,lr7RZ(x[ts[{+;f
DK^Fxukrlqv}K ?(&PX+)#JU^mmmjgenyiYW»ëP7iSպԤÎ˒rSppoG.B%r tTtTO4)
Zdz{

IT4+.
^
tO*K+Z
q

^
C3,L) 4՘ΖT˫KT]HAF-"K
g_yz}>Q~{{~؉}zy_gK飳ܩn_ZZp_bn:vkbA*t%ndʋ̫44m4tbm++44kkLJJl.d |{|8S"1ÞH=|}}6TV5wSL<JI<{{|4"U4wTL;KI<{{|31VPwcSM;Nۛ00VPwcSM:Oܜ-7OdٛT89OdڛS;@ǠL9"e
V``V
V`Hzu|KRKjgůɣYPOdq2P2R2QreL]]]Le303aSZó^Un2oE`+s!jmdfJ\e܌X
<bdaʵ֊یX
!z2vԀ<rqo=w5d:y.hO6&&&&&&&&)k
kkvkkkkkt
ɲ~=`Uf6@IV`b1N <:M@xi]'8 Tt
T'hnPelnhKleP;T
elnh
le	 PI{{{{{{Iy!~$~}}#M4m	eupb[^dtQETQEreĸ b$0Y	`	__	fdeggh1(', geffghaCN~WN;Nh[OE"iY@7M(7fWpb6E9	PSa_giOsZ
ŧH(u.f. 7CX8
~orkOb.QE-]]d Md*SkC

-GlG}ff>TT=g}}RIcZYccYZccYZccYZc\pcdwywxRj.j.Rcoͭ}t qZbZZcbYZc\LgSVIm
D
k.L.k?+llH\\HlZ釧鏼0K
K
kcthjz{{z7LvvK7isùĨwлQahaahhaai?Ul[Ĺ]SZ +)**MOvrqvvq 25 3+qv6!Mr34  2oqv*!)```NW{WM}|XLy R]^SS]TTVQ~ùù]SS]^SS]WQURTTl
4''tTTttTTtT a`aa`aMk`|8aMakap`a9M<97Ba|8M97Ba|gg[o+@+CG%:`dhbgbۏ֯Ȱ:%G?G%;adhbgbN;%GH 7@
QYr3FZXaXxwx_blkx B) K%Lo3BJwu~kuxuk?Oz!xyxvzAY
Ϲ[Djmhl|{{̡ԡԈ֊j8ч5T &9E
Z$j@b<r(B{]<6TY uZ|iJC^E,g_zsyubՖӪu^@q-1ݛzJ1jI1jgTiԻ EY}MF{M`@]~tvtz,~@Y=U/0Aqt  תdz}PPxvtnos~}mzVz-cObPru[NS=)id<&li@XsՍ0ZZ6:3W4U_U266WBN@	h[aj6GUv@cLj^HI,+T(jjc+,54+,mmZZ;ZZ۽+,33m0vH9*/o⩩+,44>4q{7$//)9wh	0m+,54+,44,,nZܼۋZ,,>'l4n,,44,,44,,mZ;ZZZZ;Z+,/o-D/#5>'}n00nm,,54,,44,,ۋZZ;ZZ+,jJѲ"^z}i{ѧ錐zss^myzSvnnU{uuwz~ڦLvewe:rnwt]R{ϝȹ̯\jtazm|}l~~nh~uN?MamJ}fg^%llI%uXBlznxj|Z6{&1~\NULܿI4'6kZ6nNwauT
t

`77lf,,fAV4
 O
W?tqB
B
B
44z
@t
 5
-

.j
<K
T
DK
T<K
T<K
y}}yKy}}yT8:8y}}yKy}}yT8ttpfeOefxxxxeOeffeOe8
  *`7Q `6w%	Y4W%*%	X4j% 1g6` Q7*` D4	Y%*&4	X%WT#EE#\[^hnT^\z.}TNNNiYT}||||}TYyi[U\`uTT+
@
8TjMQMQMQWm[FN$l\TT{zzzz{TT\vl]X$FN\vl]X4[^vTtR
TtR
Vo8>A,'>&&2uQeGWn!eq=s)b?ɽX/c o E`(yk2@	/POlAAe
	e1<fXEioB(4G#ɷRM7LMģ[?Qmkȥa3N@HF?AG!</0U @Y\@քd=6>j*.Nz+8a{z{aY%#y=<==<=<<*```^+LPzlX1Az/-6D&@I`_B 4
4!3}|~jk/k;j:/d;jkjL`,ThuY54Y\55\Z56\~   q@-&
T|
k        D>m2W._Z8nE 5<hLhLQRSu'/>0Agz8(ҒӑP0KC'ZL{o_uOn	ɋ#xW{DߥpBdȋeE)3+57wp	44tT~

~
4'V
.
;
.
:44 VT

K.
K.
:' taXt
Xta_
&'y&'Y

{
Y&'{
y&'{
bKHJjp̃Έb[
aouwr~'89{={mx<*e>okjqpi{AR*7}xE|}jp]VY0-|xp aime{}ld""p*}|blv\&A}xfa)!
po"_m3m"3s¿8~~}~hs׌$zctc^_Pvv~w~yf{h{
Z~}}}}}||{|Z}	z}{10df}itj\KMuTuzy~00h
x
x
x
<

!a!<Ǒml 
D4CPWhЌǌʕ|vw||ryIs7h3^1c:gJlXJU>]wD&_nr6Hgdalor@/K&``m}",y }z~|{@Ë)ҧ̞ȭBO`)y)o3hm^Zx:< 
4i 1J{z~v$${z~J1 E8)3y{||y38)E1
 
4gVQG ?33A HWT! 5|x$5!~
 
4t/|h7S.1l~gd`;!Ъwgvph

 
4'TTT(5!'
1




PfAV
S@?
i
lfPzz$ d
'44rn<j
H(vMzzy :(( $u6H!eDRĨnhhRnD
K 
4 f~:;5:;]
5E}}oۮhJto%]8%{~yxg(|{~rxjrqO>99l>SO~~zz
K 
4EQj1]

< 
44v{v}JJ}X}w}vw}Xe}w}JJ}wev aʁӎyLzzyӈzzyuYaaff6&̶QHyA~`Dޟ (#PgQ+<3%!!!S|BDMhߺ ђ.-.-.lHs-U7sH<JJJ?H&Urs&l~v~||||~v}~rrrr} d ^)[OK0-npqD:)rJ?t~rIFo9$"%9/iüIIR^rdclmkԧ2*:8)0\pFN[BA\ŸghgGDDl)3=A
t
D

jR VVVTPQSyVVV :R j VVyVTPQSVx VVyÁVVR jh@@hh@@hh@@hxmŁyVV jR 
 W
FPp6pFM
W%%%%v|y*|8G}AIrw-u\?	5'p$ PY84I5K G3#T1!I%>HGUB&- -%bbd&-JRprvQiu,t~՗Ӣ9RMgĬx{}ާEvhrjplJ- ?&n@5dbbI,ueui`M6 fXPljiijlPXlf`M6`ZiRuL};pommop|;LRZM6`m[[ƗM6Ġ|}+vjS&zzgMRjhed9oICAA~CtIo}d{fxgj;v+Iz5&o? mjhĬ7;jjjjjjjj
D
\O+:xOa_UTS˄@gftXRweWWk :{z{zzy"J<%wly}jhw|m'!+\!ոϡnMbx7tttpopyjef{ m~	Ǻ iii	yzyWuf^V]g`[[f_\ `Ujf#b'^ jTm4=yBF$3P:kS43g߫ޯG@pFAw@UMMM%O&iWtLXU_ogBFbWR?d/yH(#-:=;ra``^_^rrukedA~ R?wnmm(?+RVB=jȕwS<;QE>?F
 X`X4! 55 pqsa_^U^HKʲJpwm7ųu~`//:q~iykkkkkkgfhopypoon0
+(\fmjő¡CB{gtzldg{S)ik-z/Rɮ٫ސq,Þ2=5qnYVL9+3 zZ$;;#}MwzVqzvy^oyzz UggTUT¯¯gT{fggTgg¯ggUggUTUgTffgUgggg!Mm#[8ICnyy|죢Ԟ[TI& %7w
~~Tvtsrv61psYM
w
wpv~Tv~tsrvlUXqsk
%]ra
;;YS<!
tZ

t66I
 bXkC_}g555333g}cm6ﳽmv%f~~O~~~a}g767/./h~bn1lp.[Rh5kuZi/4oe
^Wf7h7jvWi'2nfz#zCpisL2r@;pEVP<Q<m+,4>;Odlwm
#>m
i
ƭ4tt ttT tth
7>jVRH%HVjRHR>7E##EجHE##ER

	++	
+	heXuS	+

	þuh	
	+	
++	SXe%	+
 9/ː/4Gj{fj}^11^rt|qj|$$P|jBGrbrrKK&	j	Sˤr(Ge~1~w~~w~1zz0v~
0KO+)
3ET=
@
+3<
+~w~10

ddD

mcFr@:}77:@ڳm-T0>2tM2V33V2Y&Lt>T0-KKKKKKKKTtQTQTQ@ 2
gn~Q TQTQ$ 2
H~HfW
T	 
gnT<}~}
2TT~}</

O4tOf
Y:YY%$~~$%YY:YZ$%**44ool8II8oo44**%$Zu*+uHd8lhTwwvym\_u5^/7hVfJC22C=+JVhX[<*N?Y3: ]#"S:Y3N%I%%%%F%"F%F%"mmm%@5z"mmmmFFVmyjjgwrPE]}~Su8ӗ)xm6
|uw}un]~')kp{u~y
nkuptogo>4y}Ϧ)Q4gyr=7TRyytvz3* WJttx~8tA&ysjmm}՗

v \
T
5d
 0fg
(  eepZp  %$
 B((BP! (''$$
GG(GGs$$zhl?9%$
_{_{W
2$

L
L

L

L
L

L
EQQEEQQEL
 
b

~$
 EQl


lT^_|_j-Z7BG:?)_ s:y8CXccs{~syyyyzyoto֎~@,="H(`dine|Anq˗Ǌܨ, +@מaIƁ8%m^9^9&^5LZ_mOMrqs7bh%7fUiU>!Vvj1	zA@LF){B90kMKpo}q4^i 4c2!b˱̩,|l-s|eW"}fڋ\GQ+L~bGDCd5.26J:#:t|mcUJmopmvn]TB4B@Dd$rvJL88˿}~=.|Նs=xzo<BY$lŖ/¸le3k{ut~irgk{ut(  ӥ`xnqx}p[!T77:_  \\]k]: rZwxo_(  |  MfmW  isu͐0  |u~Lvkcpy}  ~uz{y\ƊosTuwurl{~CBm]SbVBMjʞwywkws~~zqXIHI}Ons@WJ-E`Ǜx|}jx Ĩ@  6'r[vyo  _  |  MgmWisu͐!t~~yqWIHI}  !?|zvYaOD   Vhx/Ym1V:FMFVmY%0D  F/bbF9@O)nH4(nO9Y"Ω̵i&L̔+` ~tvqazpubw& SJZu\ek pkfY ,F):J\^GZgm n| @~~rNvƯri_z{wow{vy}psV1}nso(>}>ptlN[XKH[ͨ>"?4'::''::',Ah" ttLRAS1Sc1J @ֶgLXpjZ  =PBBPOAAOD=̹|ͻMV˹$QG̟^ͫw_BG.O`IΤwϓRϺT}c  3"  @"7<` ߊmQ1    ryt
   8spvu:@    rfqvu:   @r_F       /     >L6L!    +    Ohhhh[N    c    92;    1    y,    ((,     mm<}nik<ytgn(Bnlmv   2gW @   TPQ~   wez    u        Eu @   :PBBPNBG=_     "   Z*y@u !   _    M "   _H  D JiQwrSrNG2J   D t(     w\  D x]nrTrN:BNcTX.        ]^ggTW-|cQ    f   @+((+ll>vII<5YaqT;Qvy{Qŷ   bZ
Y`qT;Rwz{Q9RIPP(*/inW|ϊL/b\04]O__  @@e,l,}

v)@eiyz )
v?n
?r4
or^{g=Zip
*>薚=v*0n
9 r3
os^{f=Z@ip
E(J-I4i^xz xY~**)(!=xetpq@ tJ͉yiiylHXzdipsl_~UGJhsxyW9Yӿwyk]]s}zw~{mh7k>Yi{
ztdYgrn|oM򹓝gptx*kSk*kl1wGb_]aTfvst+*r\zheN;h_hg__hh_ilu~~$rfP|KEUf av,ɼuaaP@YT@A

~@7뀙v~6y
uT4*<씒<JڔoCjSR'"pG*J,)
pv~6y
z
49T8
T9T8
T9T8
Ttg
D7**~bELpCQ']VOnLE

3(``be!u!366I
&-~&`b z]A)F9:5$__;;A
EAbw}.$X'66poGb{
SxY-	q|k jouhyəRr	T_su#ff"ss~ki_K_"
ff#us_^TTTTOt
Z]ukhPUj=;<$=ӭ}(70!uc6rtv}raf'ZX,W
 
Yx
XXuxmihaX_)(XbhuXx T5!KTTTTTTK'
Tr
r
_hmx 



 

TԬIiV!!ViK
 
`OGo|ivdd}}TT44}}
v8W97̩uxtovwpEV3'(I6/H#@ _6s2rv)	7,u`melh@K(w,k/TcWBRZsZV: [X2;@Lp"
x#&|C@H#SQ4 + 2йyz{6C'r v'QjaNScI=λۊ6OFuɷayrv.Dxylu\eh[xO~|iK! 
c


zz
0	Nee%N0	zz
l

zz

c

DjDBwPakON(bXS9}^HtT 
DjD]]FJ{oQ$wv
rG
tKKB=vN;mYi)09Q]]
L
$
] cmgc`cm*umvpvvpquvp$i݆y"Z4x+4x$Zy;N9j



]??Te[R[ed\\dRjbO e[j|~bO [ee[\ejTSPe[PZ[ZQRT[ee\[eQZZZŅĀl94MJlrHm9	MqxtturJespszy}e<cHuRtyzuw BX@2ʳ8g^zp}UY̲nxvwww~zm# Ԓ,f~x*}-oAc2S3_( %Q,dFW<~gEWRCp|1$+s<
 T)0a_i3 DX;&uss9&%9l_nhY5Vk_k`1T<kOFw 2ϵZ6_g<jOFx 2ζZ6`g-~	L9wuz~\LyǞMyv}N}	ǜz]z7T   t4t4t4tt$rrd+
6**
6TO4+***4+T&drrZ\Jxk^kwwkkw^~|}T|zxk*kwU|zwk-jxT}һxjҺ\DE[[DS^mxH||T}.һһ\D.####h
'V''8Ltt22T22
22T22O
)$ xrOrmcqly|~"|yy|~  |ylqrkew}xt[pwtoptbptUkr#
$Uam}||} #V䕌OV P[d\R\D?G!cLm?J9_	lq1:KI<EQ88?E  Vws-1S]aA<Uiut,e#z_6 IclT7P7o7w>>?DB(DD(BzD)ANZȼxȼXN=h
:jTRR;;PPQ2<;5,$()MU]()++\TMqqz΂34ypm1
.oQke^'uv&^ek ex#B9o=9B]:#/ݠ"\&"iRexhBRXD@ _* pX@RchE:dM+A*[ $qf]]]U9pttp.ptqtoq

AA
lL6HpAOYKI++srs I0"/rIHqqIHrﷰg(7]F$gVd
p'7)28]8
j	@
j
j
j
@ o]"-]"-]".\#<]i|i|i|j|6
6}66
Fٯ
6Vg

<(
gwddddd;A  A@ !A@!!@A! @9ŵwvmQuLflD^A94 wHMZXaǂݏ,|)*))*)***)**)*))[OCPZ[P55ZPCO[[PP[(ǻ@:M`edeSO[/:~~|yw{
>g7.iczdfptð+&4Rl^vQBR{xxgd~y</Rc4jc'^d</gZ8%V  
\
j

F
nhnhV
  
z{{
F
'&nh'&nhV
 h-Q Nkg-``%`azxwwxzxshtT~Txu
x888
88
88
88
88
88
8811j
r
ڱ
898}
xyf΢{cEpH
EQc}{[hfKK8
9811j
r'mHP
j
K4T+TDqT1aa1qӌ$ӊ4FlGuj/>cvYXwrlO[MOO[Olr}twXPYv@c>kPS/k_`bjpN1kI7+447
c
uU)4S'-{:d@Gl
&zzEwvlmulchr]t
bFs^[XVvN;mЋD1 %/O,jF?j}yykDjDB'wsxx
l
DjD 
l
_>hjthhjbgSgT.

T譁bjh>n_KD;Df
`-
l2+
f

suS&yprxo)nrR/Eoqwn썍c@
";;dxpXBB}tq۽<Tdmlsur|jtZ
ttq
tt/t
H
]]
)\<A
4j
,
{uNvQ*33Q~Fu{uv+NR-XvT

vXRX,
*6xllsvr}jP
i
)[=)R~[~w~5-!/5
A
"~v_V=)[P
-uqu f!D! }qquur|jtZ
ttq
ttA
tt/tì|r	
PZ<:~
`Zvg
$gJAv<ֽYi<AJo&
)
d
0ulc
*5xlmxyv{?ZS4t9Mkjt9MkxxwJ11Z`wwxn=OvTJ11E`nm=OvS

Fܬ)
gN/#-teZ\i\hT
ֽ?#f,WS	
Z<:Zvg
$gK@v<~
T<@Ko&

ii@@@@==)\< ![
  ijA
4j
,
<4/49/[
^]}
^]S94Z
4j|ѡlsmdtK,

mv~^^
MMKj|ruslmdttq
tMM
^~
,
TA

T,

]]HҼ
\ee\\esVe\M|?S#`<`Rw<EDz8D^7E&SMX]Z-`LML<z=a3lxmqY*mSZ]eauжXp~v{}|[^s\IFFS#Jwaâ7z_%>}=af44	)5Mk4444i ;
;
TT;
T      l
T
qT
TH
4Ti

T
tTsR@6{@),\,)əEQT
qs
IIs~xxx{?+)])+8s~T@d
Tj
k
F
T@hh
d
t
TTTTT//TTT lTT!5(5!'
4a4a4 `Dqfe2sq4eessfjoFee2o2e
  d
״(¯#wmݿbt  @r|kj>Slst =Sls_tiqnvŅ3I`QnN^DyagTQ3I`nȜn;((5;!!6ryP qhn}.d9=k%)}|||{zvvuyyvvx}̖ҹ֐acrppxswzn}{wvvD  Ӎ⟳͂pTlZxeyR{  o|WbeVHquO  z|n*)j4_SnNe]_\]gwkrmn   nny{ŉZlvTdp@JI4X  @^xԉ  jwvw @ ~ny   yorpmue{`nY  npr@^rss~~xvvyv}y  uwz  {{|z|{}{x}~yz~~}	; ` ˉˬ7y88Siˎ ;	   Lp` d|jK='t<<vug|c |[ f  _&u1||~  yo9utwKrjR|Y%  ڬӢ [Q|+<cgvEU||zzЕ֦dBr;9WdIrPmu͆~//0//0//xyw`~"b|ьҋъ[[~![s'ҍҋӌl3zQR#krw:vtvv  LFTŐ{όxsx<ծ|DBF+D~I#6B7}IH_ID&\Ӂ@r  {)5?} @ zP  &#?aOC:)x{}.`A<~$!	z~|}}XXX}sruj~^at\C&ODIH}ߤ@	 rB00AA00BA00BA00BNpi4rT_		__		__		__		_D

$kt
t
$K`\buA
f
<<<a<-tV22VV22V+
'''+

b
~
g
T
1
TR
@;f
4g
3C@
4


 K)
K)
K)
T)m{zs{tq 6
SXk{E֫}]pc`

KHW-CCHKh @)4) @hKH-WHKh )j
4) h
W
^@ 
!  O
 
! 
@v !   
@   ! 
  '@l
 j

'u

 v-U  P	 @ " O
 
( 
 
@ Pv    @ 
  " j
    
  @@ 

 j
@ @'



''vv'h
Z444LL
xzzMMzzV``V

4
ժLL(fcsm- -yisn@K8A*,gtx^L p&{'%%{pVJ9$5EE$ݑͥr:CW*[_?P`X=[A `
kk(22I2(UJU2kYA
+
Ԃ
ԪGt
ԏ
t
44
ԪG4TTT/pE77EV@p4
U_xZ

 /I{
_gg_3
J7b  3
J7b%Xrzspps^?``^%_`b Z[z[;Z%&jWWj&[@"UzUU%XrzsppskG+Ph
K
xILLIILLIx^ 
tt
΄PH
ZVNqqr Hrqqrhnnu~t˻WL@mAN.
JMs^\lji!)tIK^0(H!wwx^B<``uf`WUAtttt|
ɽYM$
ɽYMwwx?)^cj]D=
ҳxk.a$|18X:b}}}FhXa"
KD ( 	  }}}|b81ittʓ
0%nllv
!+fzv
p/7chhk+^[THP}.}{{MYɷ7o_qccy4{H]ȣǦɽYM|%npzdcZ}!DR
\Zjћ0!XEdkdNYTMNX0PcXR}6~YVW
Ft
S'
kIJX%Ba8kf#Ef(b>[=:
Yvk2
OTV0OUƀF
ԫafob~hF
Swk9&&

gY8>%˻XM,ɾYMr}QQ|Q'%`em_Jppuiuzzwɺ˿gYv*ʹ%q-u*+? q8$@ q+)5x}2#xww;Q" 7=YjyJAkttTtTg[
MCΫ
MC1NNgZ´[VmJJ{K/oqwnb=
ѵvj+^
v
d^]  Kb[Քm)xyx^HCii}l\NJp"#kkgk
otc7/{{{
v
zf+!v
lln%0
ǓEt^+jffllɽYM{{}.}PHT/7qͻ]H{4cycq_MYɛǦsjZ\
!}Zcdznp% 0DRɹXNMTYNdkdEXÿ!0WV~Y6R}XcP^Zt|z+	za

}z!~q{yzp~"{}~{=UP?Q={~4Z]41YW36ЧubQEd]"+T&6/V,'
t
D
44'%YT84
9|2'8
(%XU74
9|3'9
4D

tt++UUttttC<<4444vTT
UUttttC++<<44f
aJZZZZ44cTSc++TS33ZZ
D
DORKPKaXWaaXWaaWWabWWa 45! 54! 5
4!-..-......-..- .. Xcc cccccc0ɂь8`a @aNdC9sbccc@ccbc X9XE-JF,bH5@Y&nË49HbFs̷N{R{	`_`_`_`_9''''pqD-A&aa-D`qX_1`AMtCC%&*)GGbbIc~c͋%)Gc͋cBս_h
3PD33DD33DjKgl:VF_-zMWSRn\nnnn\nZECSSnn\nnӾN+F:g˝VC&&ӋlgZG%%GG%%GG%%GG%%GP8 X@
6DD6srpsG4Tmmv)t~̩vVJk}ltu(vumm	 $O?$d`zw~y8Mva\tiN߶܎`4s~nkA["gwdLaG$lΥэv~{ҊꅮK-5%L.U <BB<GiЏ|r0+= E=w	yKoIlkhsljisQxK)]`J'R~×bB!-(pW}^^_I|Dc/ %)p}[De\]]ϚF|E/+'ǙeTGf{HB- *\mNNNNNNNN
D
f
t

@j<Z\
fzd?*1"0-)/!U=ITAIzWdd],O+2=q4{E)<A1t1j1(w;;;;;;;;	uR@@gL)wteC#B3B3CVj>|肙i54_:vx H|Q̋yPBCĻ*O8Qz }y2!v/>>>H>8  *`F"]E4ѡ+E(7S\t"6%Ws& lhf%H;F Bdx;s6S:6Sq%u?K	La) an

 
Y
T
|z
TYTt4
/t

KWWKKW#1bnZyOL/õB+
h'X=-k7yS[rWmK|CO]ew,i@RF˿WK7]o(Hq(H\^q(H(H_]Hf++AP[sHr8{3QB%W
0%$;K0Qfui{3iHw^Fyl}l
66xtm|cw&LL+dtjiJ4qq˚|O)xOpYpZ,,pWwT,JyIE7wt4vQ^6_
d
tpK
K

Wl
j
T
)

T
)

@l
TtTKtZ
ttq
tt/4O4
6t#
+PPPP]w~PPPPQPQPSPQPQ[
k#
]w~PPppiP#
f
Tt
5
-
.QQj
4tT_`b#v#b`_yyE
Ct33|
V22VN
'
!!yrr0K+
-

!!e+vTTTrryy!!!!"
@
yuw{{{s{sqvwl
zz
zm
m `mmf
t
H
@>
222%%WBS	qg@\LP{|@)҅%i@@@%%
\h<;v-;ݯ].Sg9G  FXVi_d:ftl\mM>U:\!-<F<C;D)Ե4C554C3.N$rjm2h
o
Wqqq4o
+j@8rr  Rr@LiO;{eSw)}5TԒ?>B	o-Bvˌ{bє~8wp@   W ] k             .26:X\gnu"&*/?J~%)-1>BF
 $K5:>*.QXr{		#	'	7	E	K	P	T								

	

*
3
?
X
k
v
z




'<QY]br{&FPlz$.9CH[clou17<BHLSZ_jp~*@LQX_dy/BU^cir{(-3;K[kqw$38<AO]fty(4@LX]dltzfAV
S@?
i
lfPzz d
4T"
33T&
l
ttpK
K

Wl
M
!33)
33y}}y33hnnh]]]]9/

TS6
V.
?
C<
KTGTKBKH
K\b
A_RI
<p
R
;5
-
hnnhhnc


}ynhK
)
|y}}yy}}y]w ʆiimdod$@~ Kz&w{yyw}| |}xz{wa&zK$|'˒a%%%%%%0:
.++
z||zff}lTlTlZ$
}y!T

[=r
T ,
0
w
+Z
+q
/+VT.
T?
@h`h
^OG
`E}n\>lF

,*T+|z@z||zTz||zz||zTz|Ժ
@4F
v
]b
.j]^hYE֊ׅB
?Gߩмqٴ̟'(͔͂z'w!q=wVF7HJ?xs]C$YPffEffM
}3CCNW }'
K&[ T% 		tkOE;wOVVOcZwE;ɦL1H:
>0v
!
1TTL
/
_^X*D44D*Y_`t!^ATTTT@
1
|A
j
lnl||}_zob^^bzM<M<v	o_}||gԊ5
-
!
`D9>!a>9UG
@M
V``V}~d3fTw@t(suwN5~w}+}PV
o{zF
(
rcrr3CC3jih
'''G

*K+A
zz
3')x~D&l&y;;Ky}_Ib	\;COLD|yz|ru{A0%!h
!hn
r]EQQE
1m
M
ff}'T6+
6
C35!tV`l
K
Tf(_

T+
-
T GCC8=<<8CGCV``V
:nh
O:
Q
Q
!
&&
H
z|LfeNzyz# u"=1?u՗
89\buA
Kxxtw~BTH
K\Ti

1
TMY;/a3g
5}+
h
&/]]1anhe
ZZrg+vvo@
ttttCTR
tt
Su4u{zu
-<<<<t;
[8h2j
%%~w~~w~


;`L< xra5
-
OT
d
zz

44
*<씒<Jڔr


@+XTYYE********
n4ԙ
4yrrrryy1
R
}
8@h&|z@+Tz|d
v<<,l"7o''&B@4i
B4@i
d
@6gid
N
z{8T(A(A(A
<
{tsoyx2
OIIgX!!gXg!BT4Ti
O
!
z~

!!O
Tj'

0l
  ZZ~rrF!<Z:W
ST?
l
o7F{2yqpV``VV`
S
F

}Vrrcrrcrr@{ttD

pttp&pt

@
^D$$D
yMQ^
a
-<<9!55!e11eBBZKSy@$$@!{
 }trrcrSTdJ,]շ49`uttu~w(DB%$AΌy'&qtOG
	 [0"WS
s
wrrcesz!$DD$Ez*6z*E!EQQEEQQE;;!
zyy/
''0cGv=<ag__gg__ghaahi`ah-
l
[
`V
 @ 	_$cXy6%6-Tt<
P@zyzNba]
@+
hnF
xd
F
RD
.
ip EGxZnyl
 d
d
1
_hmxd
t44tt`M`M
&)
y}T^&4
j

_gg_333vKR|
B~v>yT+
ɷ,$P++5 !4e
}yTfzz{ofZedZdH6*Ö)Wbit&m/nh
Z
@                                                                                                                                                                                                                                            assets/fonts/fontawesome-webfont.eot                                                                0000705                 00000206413 15242037122 0013703 0                                                                                                    ustar 00                                                                                                                                                                                                                                                        %                    LP                       ^ >                   F o n t A w e s o m e    R e g u l a r   $ V e r s i o n   4 . 4 . 0   2 0 1 5   & F o n t A w e s o m e   R e g u l a r     BSGP                ! YD
MF x>ޝ Ə)Y
ڤhDpjóK*0~71^{+rAPu;.3ռKğ?]:yf`o&d:ٌeDgKR% qH	:ф<Bt]NbfJH%М~SG؉8IaU-&q1󪫿#`U  WLgE qy:g$8eAV䂒3euj zi@ a=%ө0O\O "3ef0c@ψ$*qDE"(/Jv,^&N?'c-1f*}쀄	)k\eLe86QpfvX*XC;VeP CKWaZĹd?pKU<TlRTೈ$*QФYEeԌOIʕ!زFE]CE	r>sdW*0#QTݘ:b#@Ym̉{Dt!Zd΅SQv'xUL8996,
BerR+5ˊXWNJ _;J%$-nprtǹpLVĪ{@ L"7
B|ڰ7Jǳc*eKd=x|4!d؋(A`_os[0H^Lpa)1P8SAs6LDɢoÜKŪ$SDRIUW, u@:5WʬNFGgi<YFP`1%RIb>sµg1{LB#}aD0`C*Տ ؼ'/a9H}d#"4z@c15n@r67&	ZX06Ma]b*ß6.Ql|]x<ED0f'Bή_	'hA3w7@o|/J[s eދ/"RBmBk>&l@r,4 lg踱:eQǿ Z<#(t蒨8	PaL,nr'np8
`:*C(H2VfS 9jK;ה'"zJzY=5@涷	ad PAiC'%Sd}!ơr3 w!4qZ,.m#UޤL#	RC$rj72t} PP0f\KT,n\ĕ,D:1 7ZA5EY L\WXhY8`Lc<L	+v`XPhZ5^cPC4`VpRRXiڠ!e\X2-<Ws9Чf6,ylvLCT 9YKA
w;MW=xDDU9Kudu򵻞	!X/xX0g*܊ݠH(KRuҔEn>NBbMfŚaP֗rIo&DuE:uwzt?3EYzʞeʙE"戧IHse-Ek~bdB"=8/PN,,cp]!E˛A_]YkHFTme俿56;6~Jz /cY	P =Pk,t֮Phxz$N0:k[NZ8҅s~7d^+q[цEopHG|?>=>MJzW=C~4
ϑ2"XAQTWv)pHwã0D&Dܥz݉j{YRNYd\̽;eYM>ܰ( d:hU]T+Ց+GiUS
9pmáp&,	TH{b`H'I,m<Z0gO+
*YÂ-;b#he ESDȑ"[v %*(vRBrwԖqx/ppmsq-mN0FF 101LPaƖRvD44#O{6:UsUesQ\Buj[#'I'ʨ1/n;o?]WuJrNZbxyQߪ+9ffrc^mu^"K̚Xm[XVWgٌ$.zqǙt҆6;TNb~=q+#=BQY⺆ЗO*~}SdOg Kx	e!bFP#9u:ZX/iR*UH 4T@Wփ>N\+0cjDߖךt8*ݲ`
gi3:^ƶS׸?t^.Iʇ6J)AMwD@CciDړEԯW,;\>YmJmP\Gp%^z'&ggĊ1B^"i_]_+.s>:Ȯԅ)TFD< wVQ⧌LhKc(	ht]`#9PP"5Eq+3|{}":L+W'~	p8<bꟿj$jm`'V#|b6~g؉7WNgRH	ϸ\7/,w+ƶ?0^prJ)R`"p3
"7zр.SD4ᰖ̳`}˲ݟtGe')[IplQ֬
(x[$|d[+	H$ƠF"5<![j#2͞}ĮH!	gF$]9u\>i!gFNYX'2F7	3'qy|JV`[i6o$whOk0gz[6jG8Iۀ}YL)]#z)|\{񖃭>ogNВf/`zC^!keRFBDtPbUZZf2"bflRyIyGY@1f1/TMWn`~@'Ѿ:I-+rE`a	|󗍌h3%'"p9mi <[ٝI@zu}!Dގj0"<S=;VҮQzz-y	[GzXVT
1)LbhMU{7JQ)n"\RU44Hɘ$
AB\^^
	?')TmQ(o$V;"5_e;rïn@8{v"ߢ:1͈+ V*؈z'TsH8ʰ󣖷¨]jy	|z{KlDxXya9(kɎRڭژ.apj,B`u
vA799n>kRؔ
<像v7|?9D	7G`aacB5PAza\J;k 0fKc58X@/Nؗ@8y`>wo(j^0}G``JU k[@nXg:؉pH_v"-* Ry%κ1r0H&ʤC2+E|q/Mc/
njA&rMɡ?]5[9qNe}ᙐcp	qF)u.u`n)d`Z04;[A
֫WF2!,}jQDt9fA2 ݬާ[5+(!DN/2 3`;1cB\zAqMVwWmmČ)<ݳ.9wHlv*%i;PSBQ^DׂLO_d _P"X{#qw۸DF^Pf>)2]8;j\ͻh>+QSbJ3AnI`i{9Bc`8mam?)ԁ)QͽiC9e}6!BƿUzelvZ*t>jBlc|8Ca36 9NM!jw5Zķoh5!뚲Sr َG ߺ:.DfFFpEKҍ%k͉?յ;=2Ʌ܅( P	B1Py8 n(*Dbڣ<cpѐZJ)I&,1S{"Ha24L=ި0Q4TuF-B4FBǄ8~#$: ڞ'(|_gi51(߾U=!bt_FC$ePzJN1#F:B:p;A Z1lUMP^m=vJD3y_
qW0&vAEyU4޽T) զcݤ	D\#ƪ$9AP?TSFxS>DHK(jczl|K@2khidj0I1:\Ayo8DHҕ\#(jwiR2eCR#t$H\܃ݹ[H9Q1$-Ps\wO%3(vׅh\xskؓnhҚ׵Aq :Y+ѡ߈@rcF#<ή0z߅(}CA,s5ӌសkUOClml>#S~p=Mxr7y'Cuޏn
9KA$zhQ"mτ> B8%0{lmp{(3pTfT'hbC:Iɉ2o3.glORʫ[}X0t7ߍdjs1:E}nv5p1'/V['5Uv@}$bhPtjWV&ip/J>s*+.}wdG.f	ML.w&E06l~A;9}Tgk뽡x:jm{z``-BU^9PZ`iH4Dђ	#C `#MR楡UwgP3Y>C.d+!pU?bZ(=GbBpN--*s,	2(1I
lp]
E#|c\dJ4n\rіO&nBc{h 7|M= <Vߢ9sD{ְa YOTBf^3D!dGh>hcYr#y7fа`sS0}1 ćHLZ(8d$ooD\b7Qs!^$b\	ƓYB~;XX ='mG7 f]mC48.zm"D-HKǦO{,4ڦ{HٮF*"0px4'JUxIo!*LTee1.L.֓S`MO+am|V YR'_Ie*8@v۶R8JcK[-"}e*:h"ĬANz_h[Sax*f
*D4#]UyA.p dsêђZ*Gڀ%C%W2UU ?~N5r	)گڀⶦkkvjmB^6psc8BW'JM\h2dU~!;D+$"&kuHr;1	?L84P#3)j07-+LKA[z'."fG.܏dlKO$ޚ1PWlzT7,xr m.8
 ,8
on[a\]םxi,RF~035/\ֆx L]2Wpvclxfd!Y3QSCWdPEEo]p7BvBb[vCyX8\ӧ:u"^?t:vo"5f4!
(,8dZzrM׌rXï(v?!@l	SƆivDNɸB67n*˼S]@<OH}&FL'N$
5ВZb=l=VWݫGcńQXgA@RASa~Gҧg8>3pCMJ @<Ks'FA2.$'ǎOLbDó;@eGqw2fc*,fFהCmvƝز+P:VBdKwB?H"C cclq0'ʢF_2d̰z<E
u R=o
Bc=hqXeE`o6뚀B	<aNKplCdR,YlH+O,B-N&jBlLN670iL9D1, 3^)܇.CV?1@5d >$SMB|,ݷF۶4K}y%T=zjc!9fԶľa9:!A8^}Nx0ʕ07qUN:`t%N{ #m"30	>ͭ9lL(ٽ'H?FOEu6Ȣn/eh-KۅE1\a6D%Зu#r(a(C)(["zZb7$ g
7Ggv5A4
Rl OW@}an.%9NX\9-y5 `%zQ E1ո>,BZdTܸ:cF0+>L)eF򑮮{hR@!j)h1(!D_XX eI<7xrN'o0R[NЗسM
8CYyu]ŚhzN	x42x^O-	(b@"a@ԴG)cH$'HJC&,~+Rb[ZtpQ6B2C|SBD4 ~D%V\3NR/JrB@_k9*Y oͯsŧ.`,v[W	@šQ^ -BX:y<6&նS;dbt\2KTpA
Z+1@P'Bi|j@uu_MGۻhy!NXhF@_09Rq=7Vu!XpA2,JkŬX B^Ƕ XTR TPb<C,:[RSMXL	/tu|5 8V%?D
sȏG͠ap;g8	O5l Į'_)/
&^/D"*(9C~s5C俟"2Ac]ac­2{
"C$4rix 噇l$#QXzH5C+X;d9ҏnL1:S  g,t%,[ƢʛT<IgQdsA&eS֔Bj l'3b(OWVacr	*Je5Dd<|R&_@o8 "4hhi48b	|Vy;A'D;R>3v>: oʻlc'}{_]IaFV8V_WqUrF-{
^I0Z7zIh|T"{"׊4y.1Mx)=]PZEߏبQ9-!'JU[8V)y4WaʈW,D1MѺIyZ'[I)>N,8.<յ'0DÚ }Sp~WHYVVFO(Hvo77`Sv	dSqRZY kyKS+:&+8&EgYx
;!B"0/SE/sA)MXSIpD;L]C4HՇeVv]9AFrv0x< rؕ^DEt jBC[c;BR~3|5,d
wҢr&=@܆2f%"mbk9"h׊ Z{4+>'kOz0
ĦlP\V)6@i>XOCf	e zCTwgY^0@y=¦=(J0x	ǩAlD8qOag.`qa`zoZ#̀oZf%lwwB/S rb~"ugh]l)ga [+&vc~a"| DT8Wg[>b}=eZrY=ƪ<9h";wOMRiUMM,y([yt	RDl!?7!í_ZDA\o~dZ9xeȦ@U ҕ`djJ]Cw-U"1R-/_>Qgɲhh$MNe}	ㅵiSu /|ONmWyG4*eZQOD	G>iWA(~YTZ[G45]Ҽ|#ȟ> 5EYA)}QO08vJ%!/d#FHa|*c.]+@8.,*<O*jjj#,40IWp+˪Ia+E>nryzsn,zfE^D׉&w>X5U)͡3A)5( zȅC,, n@>9[uE"
*
 9q@LTnUk8 I$+/ KxVܡK9k9+SXDς^	3e2),<lJWt|43섀TӠCϡ\mr}3i)d6[-GuASY\d[78)nfݝiRс	_~-bt84ܗWzpUHIeRR Wޣ^d~}7/%ďKrgéMe_Cq~asli\7$KD[5G)p|a9_4
 DDIS`2+^CA7 04(!"Ŝ6"q wHm!5P>noұi,[!F`tl]KM{5ȳckZaN:{G.t$vG9x(f>,6r(ȭjnr¿\5^yaGJ6ꜞdԼxEXbPx
U"eZoƙd0t-df6u͢^GX1LHv&h[]0%bESAL3):f]ġխt:rK0;?:չ!tV1YJ%0RecZ n@7hN Qqxf0Nt2t!yMQ jE\igdsn]?5JϖT$[O
;W3;hu 57np+Pq%(pP79BD0hR>֞g͍LH6Ns|HdhѤ6Ӊ5],]6לJT.![a
"3ƼCgMWq` i0Ws^kҽC< /8)H|
|'ŒSdlKk42{fYۊ%hv2T5ӎճ$)8\\zG;-I^d4#](ײNCh
f4,M=@a 	O,ȠMhN&Yh}< 2c7Fq_ہsǠv|pZܦ`=P2ZFޛq#Ո,i摶PruY3Lbo qj/m V@DVʨ"tL1AMه,k=ّt^^dYQ`HݢpW#u""@P@i()l]<<I	H)A>3y倿$)NzO@q=|/H@m?p\0PѸ"a 4XZon?n?? eʐF?QRƷ%<RNSFy<
\m0`ykL᠂.e2e:kľH i0Z
rɠ8FibėFlXϰ.2rѢĢ%QKuu6=Q6	*9r`4"V_RH&PO_ 66=*'#+,k(HBx$ƺZؙxo^m{&.[߬D%@4;KK^{n)T$G̈́UTgC[@
qA2"%)?0;dMT
gj4oVіKPZ=}aa~	&Szd'<X5h&.QLz8},E5|tLǠ`ӝAe`u71jvK
-"UCn7 7A3	P4݉,"DDH[QC3rʸhL)Mn&-_De 3Cfl[Έv5.kRJ$N%8rWM5IB¾?KHVOl]1 ^#o}p/+ .cIyلŮW*?`sY)I0Ҏ	p`P>IEj(FhOpJ, Xn/밙*WBL5J97Z}zvܬ<HC%#3$IH4YЅ"^&3i$mV|Crc֑)a6 ˩0&enBLa=DrU?GKK[ʚ?rD)ŎpYtRIԓ~uRM0(~^7A,dOJaM	l}H+P[a|ȬL3~H @e ܛ_T^RO:s(Ohlջp/siK0Ul?AcS03~D^Ӧ^<N2QRNIbmZY_3sk^D*`N4mciV6@`!p)L>&ǰμBxˎynמc(#ih)q4g'ph­xY;#ߊ@K.of#Mx{o?%eR 1YEdqRzPtv?kŎzhD@xP/0"Ł|n9%)#"RC~2#fhZN̬T!];BsPB-D	x+pr|2=~siq*G;HO^=B*KFG'XQUmNַL UK%zcЭ:oA(:|iev_Fr8Q '+VCU E) I=t¼S4XR̼CU*ENϮQӮcW/RfvqRF̎eOWJqT*	5cXXJF-Q*+<?qjVG0|i!?݌vk3}&R;BAiEP\-g|ӈL28i@5A8Yܾt.Eiug(h> " t3bpV&Bx6hE|;O9&qp-׃B,*O4%R\:bu+c&[y?)qm! A!# Ȉ "
6Н
i!`Y bΧ	XoϙF/W9w|*e|UL酁yRI^3}Vvu쟳]DXh0-πԈ%8_gw{/"NM7-
>N@S!ᜪm1GicDAZ2d3Ĥ<|$9xHYEi]gDl	:%v/%/EHN>Q/̪`*[(7?Y6 #S!Nfk_gm_v bw	*3	;cb.t*-%f'8d#"k ɻ4JVZve:2pː{t`\Os}W8t:4;Caw/Jqi{@5lC߇b`}'F~1Rkcr{C薣@Q0;
L!՜%R<	i<l	:12,D2n'2"v3yC 0
Y`Z7<_}~E&n<!9Ƕ*DA!W%DyP&sC/4uҌƪhBэHvhrs B&{$5D 3ORpq>eh ej#XV5<C|++ݘadD#0=PG:tm(J`_5X
7)s*J(ya+!\@	 >oQ(L	i4!D\$?b!掀a#iW׌q4lG;Oe3Ad<=#hE{.-4yw$s m^=TD	0hgJN:;4J0/(Y iKpG1{ȗ r
3.vXк/	'7igkLsK ho.2#	Q]~S,4n㻚ˬe	*%Tm%FRd`F:̀CS3? ,aC`S볯J>:΢11o6"K.Q2lr\(`\5}TSf2	Zzͩ VNfvi5KNSi|o,Sc,h0@y ׬p4<>x
2{:A{fȈ..(9+i_V0]p
fdqbEjYh6eKiȂ /f\o~r`Ӈv7U@ĘBc!f$ۺ[7Jht 4[fo1islNb?ԔG8!8K?Dm *`i@SOSpnt9 \Cy?"-"He7=@)J!,[2v'֔RH;ͧdh<zfzA<>.cĀaxFY9eBieb9<xj]\WV	]Aô46U+H8z.WbE"q	S7`9G# ͍S"^j.wgB3oYV03@~)HQ_dVm!b>-lQ9/+,lQ{22ی3HbGZoE|Z?@+hvd$S¤BY+0Hu>1Ҋ^<{do@؜pf_Jo??da=S[d|L7cd{3Fyw˪/n_HgiQ*s{x%,Owyg ^F9,F{>]2<
˃5\Y1
6B-5/1 eU(u
Ŗy`f<jS1.Z@FQ=A,1H+/Q[h\d9k.f@!l4f<*"q$
J=PQ:#s ""<ڹ{M/{~jxkoi6jbhnya:1@[@:OƑmR:e cEVsW UF|'	ho*SM닩 *7OmHֽW@Ơu ^t~uP:2ɭA(<VRh(Va}GIڅѶʣm}N#وꦷHVlRE)) KSJ<wSONAFX*tadtOȪT3`=UD_o
ǒf/q1N-,@5iɃ\ixءB*xGe$HK:X
4tyML?}yAP12U#? "5~V~1T^C-9w.sWGS^舣)|ŊPj]AWO20	׍Q|J&:k@33sLhfm/cyƶvόf!Fy9P3ey-1pEp2vjZ-}!Fm,	$ҳ'^Nt I_R 2DY*.KE餙$Nmw=;a?CXw{C.xRerd`rzb0am˂XZM:Q6@pit2)UX_)-'y`w ˒JV{ irȬ;X
f8#;75^ I86!cRckHRd*jI]h?O\7X&,Q	E" `EUͭrٴQD0kTeWA)@TBJ@GTCjr~LheRp(!ӫ};Ru>٧=9-N_nx<&=eJa#MfB{gJ3<zd lq9"y<s]D6GBE!	dE2(VݱAL/f|
3zz,8ZwYoxFl.+Be&_H|%(ũTjk52T2ܫ ib 헩BA9fHm'>;kgW{;`#X	U|ŧbB3&.s{U_lHNk):LΆ إ)шTA8B uLra?Q2ꪚ`ULb0DBZu'{jܨr-	=˃eVnpB|Y @NUܨTkF[Q
Nx	xÀGi@dpA&nr]2%^֬x/E"sZ\]H[gVl#hY+F$Rk'RFdXVlڽ.075;dĸIn0Ӛs4R)i}1/\- ظƊ4Z>H-ߑ[N`S:˜Y2@Hqp4Ȁ;\4V܀vE3嶖}nyEq`B%a?~(q䢨 GH1k
^R%f-euK8[lߺMZ?\['ZsQe/Ra~@:!X_14͔un%P5 bu9C!zΦrt,8kܭM,Ŧ%ժ4Ft4\+#!/xmd*z݈EuÎwsq؀rj"YNOy$h|BhQp {"(yR	+!On=:9?H_JyB}k*[P74h)TerW$'smO<J8$=SR* g к@9P)x<3_X/kr_}>cޗ1v3NuO 	PIDx ݭtE"ISGuT!
ezvf K%Rv+ZZst:jac!u{\9g[0IZ[\T+ƕSRs\0s]]UQxL<IX]E\b;+qBH)OI1J`vF*=ws{ 1NײaCA8	^ba+0 D/+\;=bcE7fŴQlohHSO"^_)X#=<E4Jc3q$}v͔J~1kKŒ1a|,LcC LcrsTAb6W=iy>ԂaAPc=$S4<τmomy :޿i?J@&!<R)[2Xk!}POA_al(3-+}i Wbq^ EP
YQDxLy!K;P*yX1B ~a[ :hɟ
'E]m'X/uy` R}6Ɛ`/KB`P >(V
z"IEgx$4ETBX P;}b4,#Je`R DXA{3lΤ/|pf蓍>/_@豇"=pAE@\dqJ&B"ߕdOM\h"гsy.5An -(3Xy!PGn>; GxJBp=dOmOLRE*ʪ1Vۑ
_VҊX3!Pל&YF%_SD"(楈:f_C[(H >).$@ŋ,yLF}ӪfۢA8Ȧ]	]_]::K㋂a쮨:!5b-91qqZMJD4ψ5SIz%\A/aEE`>;Y8't%bk=f\o<|!dT{C\+20)O9
3ݗPb/a	9ͯqyEkNl(qJVTe@@~Pj9!;/NRfTjcʁ!3W&#`R.J3iRMHMAJd?X8-AVzcB)J7cC$:rZЊ8@&OI߂pXBg+a4pJ	*dR8>9^i09^ېIGceMl<QQi9٢$11ocDŏJ	Q 	Kd؟.J!c dynl-н<kT34{t ʗe^S$ wO٪\筑LVy3+
5ԦeAi-)	,C{5`E
&/9Ɛ|1FɀW (paƭ:滗\hgB VX$5D/&Tl]`6.]sVg2l>	B<'оs>O1[ 6]woSqi/O/j-=v[, УeQ&,52M5
J	O,jk.Rə6ˬVq^!V&kW@qaP<^b? ;<7Ԧ =ʌrN)Y.,-a8Q%,\	l  HaZFEedB}l]@i&(CʄǇ;{e8;( *@*q
wK8+`CO}tH\4&2ξ$z.0@NGobXu#lc2$|ӕ' $L{PmL$:KG)Z`r#-6%>QBBDMlQBw[eJћKS9O4fų KAvQzUHJw\w\ll~ݒHd)JJ(=4srN,% Ā(	b%Y:=oLpGF	^^׫{}%O% 5`Q{ (ʮ=רKz7I7kCA!~BMNQxuKŇAlp+w~W,NʖEd-LUD6ϋ,E+OO|(eۓj4ixehiU9G[O2y]˸ OSŀ6P7j?Z19_̖;S64&P  e$u6Nm ƈٞ_I^1V L#S$T.WN
7앯po,prXT[1{"AЖE$tY竣UL31Q$G>@b4{@6a8~GdVfu4Oa,.bn/# >i1舞(̶!^"G0[YW)t"ZI\E}Aks0ѤR(qϓPldyU!%P f?a6%Fn7JHX7_x cScM~Pr1Qju}fuނ~®'TeqI^dP95;`x%:E4ؤ\D>^
SjIq|eT.2 D9!LoHD"gd\h";Y;\Bn>`h		.s=epN5ђwӄd7r	P5#axMɀ3coLDTg|pW[l!5zAP _N= b8mߜ!d)B˔F9Lpẗd0+A$Erӄ=1s=tLǴFՒe7AgO8rdM,G`j|N.h͐av2E͋IåàCDP|b
B2y63Ѓ$-ã1~R3*Cxkk=TO1c&z!ŀIwotb$nwo@fcnirfJ\ƐXK%vwN^p?8,kP_xyIt;
i;hI7oH7r(_-?oNfZD>O[_tDш<(5оBf߇9Hb'fmhjp{pc
!|Qy&"Č{9v+02$hb8Tb%X' S\NGm(0*Y[xd[4MYvj.EA=l.S4xExn(b4 X ̀'Db	D.$	6H"1-5 PW";}Yr">U' oG tard2ב3'ax	.bش*k}s_zIgJspc?SB&DR #9yQBwyFc. (8fH0M-H6DwIl.D=<HX5_K&BAr];13'%p(uĿƸu?nv.Jd`#+'.`i\lEMK62ݤpU
OM3aZ*+>-iIM{d=hNlt}03aK1z%bfB&RgE*+?(:D%uڈ4MOx04 [,1}pAޞ
Ø)47j77N`eKz	1䥶aA=X
B+JCjAbp |/R=֢2;_T5JyBԁ94ҭsp3鷁#&fs\Oj+Vw!ejK@)9"0&q\K-3@FyO:街`]HC0[bL:( 5-ܘBVo2^&;XCKZ2_B$
a'Kr!V埴F8	MXE6pl0hQF2_`91pm ԂUW7(;iqV2`_7)ǃ.(T'ږNi
P(4fo@?"l;y(uItV/ohם0{27[

Q#vnNa'(#~@m޹\(ׁ?3{4"[ @L)bYH;XյՃUG?I㏽)a0+[ZS4ө%"iUD'\sx }n1a d&pa/G %@?pNFq[uZQ';|nў6& _3a72&c5lZ5'!i3,KIBɒ40#ƈ@X(U4;kCCGƪJcCrk	(킼%ʦBGpλ}N!"uRD(@JH*㾻
\֛v$ȬK61W	]00yO(r"Snz7Pf%EK=yG]6L>h(H$_+htfK q5Lvhz
pi8UI꣤\#+h
X':ÌJ3E4u<^nyy7ݑg˱3o~+$[Xh|ӑg3h!N]m.*!z3Rk04ld66q?k?~d`pIɜYܦu1	NU!Rr=BPI>O7?b4u&i5	}{n yx
<A1	PKaEj$6h1.Lli#Yu2Q>$Q")zEly@6
QVřbBA*Zv[,3:{bȥ4Hؓ9b_,U|"&d߂[1a~䔂at Nh mDIQd?_^c[-؂_/X|S8VR1[8D^XJڦ.:	Һ*80zs%InmM1~{7¬(Q*lb$BY4`@oaG!Lga;k ~9W 7 1*FNYi7,вBDeOP1*ҵx!</yAg+^T$@fN8ߓ⅀0J]GY偒Ttz qew4+r+=o( T
o..&Uz-@LՋUJ4UJR$t캵n8>LɄd%yľXL.簐}X[ڞ ک+\wՍKs?Y "c3vGxL/8:M#q?A=.|M
9n{, S`N*o-ⲽ|6Zrr"ɉc7Hopb7IYH
as'va,@N̤e]=TD9rq'zz2 fOۯeS?)l3[tg#5DƇ~zQ1,xȂca:!bѱ,(z/BjЧYSC:#
e>͗(ޕ\n<eH3Coio\}5TK6ˀɗg[%$,daOn ozHJklݠªy.Ȃ/8iXFh$y/Iic|L&Ym3ۍDeAd<lt4+P(v:|ƀ;e UP .<} ye'> )!,"[T),~I'n[L#b0MO3<a;1pm7"˴*OB=Y"lTt,BX@Cۋ%{Y$)",%Xf:a)	YQ\d_9Ȗ"pR@-I0C'@85`;&kꋎUp"bZyrNezij؞ኇ4O#.SK%ggOt	ly %haxƟ։ |ߐtFŞ*M(OdD11M"hAtۮ=]xw/pVgl)R\'jBu$H^S=o'~y\ӀSEXCH'Iݞ65:(׽Lh	\\\ڃ^	HPEo*#R-nN/}j,T9 Qe֋ CGYXè) NPDEO	eD\ų4K	ĭ?\K'Fnxg&B,15=^B&(h3}i,$uq|P텒\ge֬H ]Bkv9Q[P4m<# kbdIN3/V[2#IbyƝO?vQ£Ua+f$}:&-gLH!P/%ܼ
Դ@׺H2*_SE9V<C@ƸRha8֦)*읡[wdF#3TҼ"a!1̋n#0V{*f.@(SMClTcX$+
1*GFZm+n1 $vKAJG5ȟ!W"ೱh  *x8ulZ%Y	'0ޢnF~o[qm i ђ7@O,*\LD=C'ZR%8
OZ{caVV5:<ZC[_=9,Y@4'p`F\a.e2Y*cbX e`gY*4cU"s`"4llo>G"//β\¿0ln&
f,Bnh=4p+5R)ھN!x*379œ{THHº	UzIPi3ZMwRSbu͹TD C*з =%BQ}[`QfG9cj]eVMvRG^d}`3$Q{rE<+$n-rΐ_z+NC	~1:PSogf84H 
vBaؘz\
	doX8jz[IЦy_mZ(y_Ա|vFaJaY84KԻ {}"dA@JP^_$]w&礂|y;6p6ԝDrLJs_	sVGˠ5>; 5~NUZ)`o%DYjP8 D4rI|&w@!o.nrE^^<jiRE&"CdT^6/AhOLfԃ/[	6!nɬ@iq?:t
\2><D_EVٛ2ĥY,?&JY$X*/Cs|		Ve"V<tgwja:d|ǰݝx4\c}TX`NrFfL?UfWF#|epzdQ;:_~JϷvV|@Z`ϡ*nI&XA@@4]MxZ,BA&kBYVj>b'R`Em\O%\$`3K"?.94hlfbZؘkըb+I|ZEhBP0PR,5#w;orˆ;8Θ,6؉@x(P'$	Fsߎ,	Jp=7q|,I J/<{;rZ(5Ƅ;B]u<rB<P0t5<Qֈ /S)$6)%1=Rl$00Y_$tTd`QhvVfN=={8#Uչ~%s%`S(!#wb0J5`qoC0 Am(BT)9P-zV`CSz1?a'S;D-H
^f DFğN 	X8M+1zA^P_	/ yY@o\,6/Bdh|M&8($P	mRΆǀôzד@ǓT]_)@
r ٬U` 3Zw-	)&ТGi('߻Z\-"U#Z?đ>5p1Hf,E,/fI3)f_fVNXZ݋(C&-4:7¥I#8P*HsI\y4864(H
Ob
(dUm/Y&98עm)Ilin_U4Sj,>[ƪ	/%K䢎sH1~rI۔($EHa+es9F0/7'iJ~dĖP>3)h"IF]bXNO!9 ХP飏 `NE%qG1˝:/,Xr#Z+wʺEǻNRX͊^e5A&
f0 nlKQ[Wq]3ӑ435MNQsN/[Ye0Xb+6I4F$70=˦NCtGؼ+vޡQPƈcaU1 3lx?⎗teZF[=Os'hlCrSVLۜexdxxs?iE7G	uB.d:؋E/m	
  -E8<;f뎈?WIHjڪ?L.g9bt4`é1ɑ@!I,Fُx'0;b`A}hKe	/*Cj+ȝPXq	)-6~]ld2-OL>qN<3w{q
r9q5	W!No(Bfj=j/ P +>8cqHSq& tI|^vSF	DNkLE_R֍2#ݙfg=k('B9Ĭ\CVa)>D^( [Ƹ8!gSpg׽"q	S(R00EؓXHgPTvit}vV38&bQ #h4Dnw埍IO^(.X8 iQkANR245R.Jw ɜM5tz@^Z۪m[m[i_:* 6K맡H|zBЬ,A1fS`$
<.Hii}nqGmhH`1p;ŜY~q ɠxVTd^ԶWy0c7""S#zfРhC}dشnMw=DDKP)_ñ<mؽ:+\ZJ`;A}?'\Ѿ7+GH~(HO cBH|
06C	 mD60{xt"ZRg<C{Q
VܔᦵC(fc;33(˥Ե=`UA# 	{{JB2ʢ!+,h{4Z"@%-)B{UXnws	BX>AOJ.-oՄI`<A펝֑ (XQvݡ^a={]XR&%9Ä)ŉ4=ۛ4WE|`8tlowC*Y3xp%
m=;v(0:`	fcQq 0熤eH7
+OJLj `Ưj\i4zj$-U?_7Ah1kC!{5ЋXZ[mI^:8 Fwk8G?huvPpH6bY^ 0VVH50έ+q2#T`	 ㄵ@πJLƃ4vnh>+dWu[KɘPz>Ra:rJ#+v`F|^+`z4TßaggL]rl&62]9@t&dYl&$'a3sZ~J#&	JvYC^Ox!2QI>Ke&&<Sꨄq7+<2]Y 912(c~*C}qO-p_cZ+5ݤtLekN!ChW{2J&{RP*%8a8'F*nscoQqSHp)Orؾ
ie?yR!>IrWwtsp@C`7+=ܺnhm^ށ:m34%i;4zz32	K <RL _S%/5əf(zD'KXR Wxi' 0dĭ8SZyVa -7#\{p;uׁXɷNYcްKh#,=S1
K\3p+X?kFdn]q3F؊E13R:Ch!΀"\&w>He5,1ÆGÌaxc(a.2Ѝw98D!SY,#<=V -CՀT{4VrT|DSc:;YQ<f]ũ4|e] }nft2F8̟?\To%WnҀP1	P훙b+$z<mC%Q XH`q2ddäLW3:8A4>KAX:UfT.$XT8\<#7[@|meBͨuV۴e3B[8ViXi#,5œAh謳Wj, 3Z  Q],«0lCVDڒ$Q7<Hc`N@)nX+0#q9N
Pփo{-O4TJjwLJv3Srx?P2n31cìLa+MB2E^/e@&OgPGNd}^rP$I
~:0 0{1zK H%=#Q8Gtcl#+NT1*H>\a~8TYtߎԒi=5LS}=ADczv >ArJ!,%R~xMpQm5@ df1|Ũ&쀕qi4x=R!¨2ow)8C "`#;"hgsP=hW[gӿ0=^뢬1,.]vpqVMf߉BN`<`^'t.̴WY7wd='# YÇf޶K	CN,@kEԐR4H	=)D`Z=,r:I5'T7kܞ(TLffW+lZ;-<b]	yAdXZ ,"Q9ƌ:Iz
	XmiG2}+8ikƇ+_3hp4Eh xNf\Wz\Aʩ(J}y6'|p׭XxWψT"4("0=.=5͹em6tjٍlӢU>H&,rϋ9GP߂M:e8˗Gj~y5-~PIN'b<m
-s'hX\M-hNA`2
{8b\\CB'^h],-J|漃G@cz$2D_@FLǛe[*XRX֋֒2x
  UHPqR[*v	7mA(gp46(312*-w&ID:-/>^:i|eB PU.{$6{\@*t ,Lv֙;B;F	@ztjE┉5K(r!fiĶI|H(,ҁV}q3n؆ِġ(SkPuN=aqR`g )@T̃펖90atW85crtיev]y?0*uJF
Y܎4ląZpv䥸C_'-0/5Y5RĊRaVB4KL~$@iK+>3w4u?._2MK@E9\G8^3#ڐ\HqNRW 9+.-4$O;8si8voLyUlo
Ó҉fs#4j1+klћ%"t̗b&oIRj}F(W_Sm&	b}r x]ZBFEsuWi}BygC	MuZIB&TbX09==.ɱ9T%.hȯ3v ԢJRrM1 gmS*-4@#\^O:(;
_oῇXE`pk7 i=D7RhLQ>	֥nÇ@7l#o֌w	a8Ł"8&aZ(/*)	TzáC+PPWc@H: .SrВw*SګX: %[%Vz^H?E08OD݉j|oT
H>~UX: PJc-xi2`1ڗ<?լb,10bK~#Uq_&LUcZAN@N9 igX9j>-B7Bzc0J?;\'{ArѸ`U>E&~& ~"4S9us2a?AYUbJp@}B=,Ns$/hwy/^WWUמDfPHYoZ9MB[H1 ]5G"R4hC@/tKx2=e fd.\C{-ugWH6$32L*\f8aT% 7s`VYI$e_-Uj( Ҭ|RJ(#S{d&$?5H3X]k*E8)1%)HN8 ˌ'h?/(;B:abxܔuH`earHL${Ckײ1a(&m7@^;"&-O Z@Hh@:%*PAܥ$+ ѡya+e˝	UIL, UsoԆ.O\Yʲ3/#8aOdM
;1RpquPʤB2S48RDNUu#9˫D,Zu7ԖB퓨AT-VIHRa-zmgaO+ёV?LM	X*/)`UU;ws yh~T,b}EB} Cr/,ɻp,o^v@=]0{vo[4~0LMej0p*I"i0]o2I"""
\؟`M@Phbi^֙r3	x(ŁfR>m`k=Pne*S<\.И_Uŗ*1kOjb6=C*@kQBcyDePBCBKfv^8h[Lx=Xǵ$"Zndi#	1da+{{Z<=;ohO=$AV㒝E4Ar͖mkn&5cve-8M	-(77\>c@/ސ]^.,^(W`:Aϭ֚&9WxP2ږ24P;j=*]#f^LE-0{"Mh+ ob,&MI1it%ˏJ	cXɊd0v$=9\s4Qs<)3ez^		^OնopzJH[ٌfDjI8r%ZSq@{b RǴ'2M#$,ax_6+檘3)HAgԢb< {02:?;RՌT0C"磐eUOdnjɍ9Qa{nQqyoK4T3Sw數ʬ~cJW&`x|rX>v4`k,KW J;L''F ZX-恭W8w*$0&2(61YJ7œy|	"
k)T:ܽx0ng+
<`Ծrs٧RQE칑~+>|U-iL{ŪŊ+Z 3DՙQ^BW]Pr5.YUE'$k51Y0mq;G&9X[~Fb̏=	ئa2 B/H;Wt+NwFg1u)ˬ:@ZBgf	&[\Dgg )
j<e/uF/!*jdN;3%>ަa.)H'pߤ kNAw5&K^h11=O5lL±'l/$+(izzAhTL.ۂŋ@C8cƛ^eCv"as2bXF";b6/Ë,mT~][L=2R$@+Y@pW
ymf~CX:~T
5JPB,6wָ˯FHM9Axa %4|559||r-ppO 0Nfgz+1(=!Fvo3OqFтc)#踥½PmW>;٩]Y	SC"YG@TF~6^Fx^?ʎ1l 3l/Qņ֦B$>hTA@	}`3	 Ӣ kx&\A^+>aM^u"
@[	dC]81O籰7!m-->\LFDDĈCշN	bK7E@nlb'*ɕ	R[T&*)c KF	/`E#w	ۯ޴@R<;,(~qaRMpE&9'ĄC;LUU0g7^XS{et)"o@"qfa/.#b>CxI sɓrsGT:a#h+ F!N@)ȝFnI<Zr^]9/) E艸:ޓl^䇖vͽ:vےa!ݻ$$xIX:	zH$8B1X꠴f^>wuc3qIixk{Єc{mcFK5/f:n`
V<Ȗu8k[jBԴNPr+:1<vhsNj&n14`~}Cv,dKJ$#`{FfZKZ`rs֯DkF5üusP ի
HoY\xvljxjTl:;!tJe<VBWtH;)X;0I{4MCwly4
!Q0UshV]- IY\kJ/+MJstJ&XiGʡ_a^6h3kzVb}^`rQW̱Hz5.7ۅ_ύTCaئ.8%ΩL͞sZpP-Iwv!Zխ,MP8c:5rڢ)jTHnڳ	(b/)AzV~9bSmlVz>jQEe	gF.6{&F(䰂ʶs״h AYFMM3	$

=f	lN+h$^2ܾ\+Zi-@Wj/kk-H =0gUni%k1`>HK\3*K|1N@67tN&[MEhd@:owIce?Zs	]9^MT`KxYX	doXPu%һt`>Fîl/-2*`:R>cE> gbl|bw4h0mT8]-)$d'%>o(1*^EaG֖YtFj`>\<:W^'fb,erʏ!\}5qGr͎XfțlMgM=ZT?_cJ:=rH$*5t򳐷8'(<&0=
3r^I.TύaR7KZbc?ڛA< oP,(9Oe1Q,ZXLN1|p 
C/2sy(,DDN$cM`OuBp1/*{/:Wdג
rVxW*3~S)Q;;'5ZxDn2pc	Wf)y+\NXöNJ5zl^ X'IK]`Xe>ܱ?^;JKw/gZhO<z\ 0_z>ώvGbmIh'kDObHWض؅e.kp%'I BnN"n$_P_AuH+-@=?vu&{ޔ`?N)K"Hp|
B"E3q)+Ґ;Y vzD> '2ƈe>>:uY;Hmh`Sˍ`|C<jse&y5'bgV%."Y<Dy{Д^0nXn&tx6IA
GEz!-)z)X]	r,9XΏ6'h菁{mlI7Ro&iBN/^n΋f]
HSy]|м S'`TD	JD@I$T)2k0waԄ'*W[q6NyCʺM1)*K56kyMbn{4<>VqVu9K	Z]<#a }ck6Wjއ,,dN!M>muV*"U43OrG %x+`xJlہmhS0A$0+
G/mx*2+ (mmn.4>ޢ8<Τ1sVd<5S7WIHP@g!RCx
ق`Ywޘ	ێKꮕbxB~ #Mr/
EKA8TL|ks\v l2A9w ]HtK k՛pw!Iq1;gbtQV*'瓮^[]_6-mעρȲj !oi.cM MoDD*|96(+?¥l%"zɑ#C(>xckiQV	6+-KfϽZ82;8PuPbMTaZ6}਑NXDUf?V[2c (*0J㝙1)LvU<j)^Y	"95)T!@DE*BCya<Co\P1Uls좾MYD&=62[dD7QInl,wkP"GHJaegf!M䣱fpu֫9Q,0dTSFni)1`͹w-%
RXB.5̒=2[big!m3T?<<5lnω,	lg,>΄P-<x&UTY ?WgqѸ
͝H,S324o)W!1IӠ:etm3+KD=M6p2	+dЫPpUr(;!Tj	KvΪƴurYs54jB*D]d:B~A{h3(@iny<aݐIXďCۢcށThDfBRf!pseɇ.2$=O<J3zCBN*W)q;z)Vf0Gft Uu:ZBT`]K>V\)-G]yDY犬CZqA81.;5I=r㌉8AYh]/J{2F@.Z&r9dqyaHeQϑVר(ҩn (ˈ뎋<<"olqU+?$i
ݷ͞K@(Jvm#~ɡa
 77x WLV-bjT7/1bJ%ky/6fj"xW9UNV'!z3(U0aYb`TOt)(tWIi`,wh(@yoDȚʉ¡NGRSrpR ɣ3Vg6IM{@BH n ܽț,O\JrJ嬙M2IGdXUӥEOQu>lUnJQhRa;b*lWHmVIJBjgNEqt-^͏}'آ䢦Z0@*B,^%s(ɑ<z 4T8[X/]D@rM<!p=S4un8SkP^
T>m~驡_Px], 츻(dW-ycI
Aދ3WC9g@0jҁ@mA;\+~3s`
	QA@2IQg	kK ,dC@u~ӪL2Uuqg$BN#DE{C&5k㯵;R_֒[1uĪS/e:nQƋq;p1ker;.	SCxA/Gvد2cX-P `F(ᛦU~܃k$@%F2 B<,t|b$ٓbE @	lWV YT@c]%TO0tl@b3R=b1C"S+js~A`dcAn<GKL~w qZ2sN%rrM_KFkR90q-YdmP& ȓh7$"ƌ,"ŨǔP."h̰w`"JA>R1/@+5@8k
1"%&!l{&˜[TDQ1itire)XѴ1@kFh`@9 Gk(CM
IPp3	Bxg D-z c.y)ȽxCжз['X.d50AL4GL|_E4|h<?fao>W2Ħ\CnLQ-rFE}I~jw@0jEOs%yQe+#s	C1']i!apL69Y5Ծ=0!Y"Y8i
T4e/sTL3sOjBz-?dh9xΥ3,9ЛpC[Q>eN^(Hqqe$;C2^֘v^Ej5,O3,@LOh7eQ`t=M *J4+-*'b]~՚_Z4׻_kmf3W¬$᧢jug#"_حpalVě7CL9*3&k6W4}۷BmP
[a/i"7co@(!Wss̗EIB^HA*`z/$6[7wp2sGx9{C䮸RFX܋b4n0ٱ9[iB87+Ve,~l@{ 0 =jfV36mA91:o6w\ ًaxJ6<MӛOu:Rh[ApˍĈ|Bnl zf5+ jOC伳IK)%ί\hRo'_Xl%Jys>Z%.馝ĤNáQI0 :3]Ϝ>}&@KZ'5(
$R1ly',d5|WAҋ6P/ڦޕyoa= q;hJYi(nZ㹗\n71Fum	>mAfoO]:v ODbQHݹpށ6톈;Xb'~A(q9*P,@3	~jlv<6~":~Ź"N@ݤ<V^e0O5Bk!,6siS)q H?&`'|LY+?NU+Dk?v7B)FLa0'
(FbyD2"t(8Vs֊̲[$`OB6XjH.\%ˌ$/f&Ja6BNH	AyMBa˭ͯ^D
 ndɆ#xzK!hd6|
dV^ ބԘdum ː ?M])H<  nXɀr#g.eQJ[*HDoX
/k@tC<+6[Fg*r	; ūHSYU&Zu%Q&Fu:@{΅ڭGth&.dJ)ӕ4)S"o.b>5Glx)"1mbd}st4` Sv[iǝ\KBr d\}M~6\
y3kp=`ˎV`l5~\=G8ۿ|`uMtFtV9Qh-<+,Hೊ;%\h	ҢU9YJ3aQBC8qBC>.x>~ˇ~?p"by&B@Wx`c6B<B%G=(]u>"-fo&	/i/[;>ca8pt/\5zq9TY5Kw!#]RSs	G,]zXm/E /Ҭ/j"-%qA|E4B>o9H>IrʺȪWϩdExbjyđ ~i?{^9Nw׏2jJf`	8|#o	 l~T>*l?r]"wЈ]QUp;,=~!wB{SX.*-">%(T͵l1]9v@{6.-M~=`URzj5Hi!\a^1ja~g4FiH6rY%wbu#bs; ?_jPmspZԴ̤
OӨ	CcK*z1,>ՁQnh	>;ԂG!Tc^*Ѹ c RJMb	+|EY	B1˔Ng}U|C$m46}Z9$̆s1oQ_'v#3%a%5sTi~qS\u]v%	J?355@>;]!㑱X,
5Cq&'fxPv4	v_v(bcn}g| ;6?cx
KG5rSd	:\_=L =,ˑdDnzH;7B8<ثq0hY;5r}9hت -Ƚ:;P۳<yF
W>FLŶ728X_8p%~EHm;HMVm8@\Ʉ]Gil#]v>ӵL[ÔC	
Ăv `L_E1#P~<o"Tѣ=rLB)'3b#`Fĕ";=Sꕳ24aW=!/mwL󶛐g!uI4/	Ǫg)֝VGobh?%X7 VG	Z V<p514H#=ᔃ;ۀ,2B>P,!e` 75PHOڪ*#Ҷtt-J|iZΒl*bNǨQV\.fzYt.ǝ{HQP7@d@
%S@(jl7@7$(XK*`d\ki1p,D1#1^5I~SbYwe'4^>EO+ W.9eFkD_n8JuKf y@hzCӓ4앢21߷	 YF+*GTs"*%,:	)=17bs=ʽR#WD\f"W@e􋙿B*5dj=L^!ox4\(^A=Ï'A}"w4REtZ)#5MG@PncwgEELrĆҁԃ_SbhX"INLBBG4mtJ@b7A:Q=K/H6IVYh! DjZZCω̥j8A^5UD8*ZHOwJһKxvZO@	A( |\܀s "gM9fBVaq<٤0D,KVP4gnq,vl,}Ƭ|Nj7<~CuC;w^Uahҕ;0U*%)Sk^#L5c-Rn1#jIԍ~hvlE4bzǅHnE/&v×S jMoW"tfYe`(`^A< eW-8K?[qM/{V˿z}	!t
@#9Ml}Tyh1֪IP사S":}ld>8{IIO7Q?G8x%7x[6bEUX/ TfF-&UQ^FtK&_kA MD/+sۜ7w{?OO֝GudP۽%$kQUn *V>wwaX"H?'cÆ
z%Vs9ca/(3p_l7_AS$\pT^s%;Ayj(`>4A`ge,>K&cK7Є"h@AA
CQ0`,!/kavOwBB<n?eb[`]`=z?nDHȃq4<rk4w>2@@}blIe#h@I9N"I(()NUǴvNk%kljMd` 6HuzAZu$_l^=mF#iY`f~<=`Pyn(Bހl	@$(hԫr]JtF4dR- 9ד!G4j	4K69VPDKQ8h	٦,@jðexG&^`hȝ	C"Gh@L`: 9qvlRAyv"VsSCz4@ Q h?ݒI]B]a?g xKWDDBp_:bF6/T!pH.)xUp/9L<T`pǜQ2"甥*lQż`7SSrnݼIɦ~ [H89 
i
&C4DϮdEu)LhIVduAsol_(F9KtXA@,4Y"x4lF\;;dp2	,̪ҭ˳Zstvn`:!/B/-~BJ-l(K^iYFV++1=*`,X뼈ã]Zz*䦙`u)r
G e{Ivv/:	m8bT Zӌ	]^6,k> 4x`K=O#=îLʴB#F\RFh$j9E(-5hC:U /^iT $J
p<R4/A'qR_aȹZ@#Ⰳ֒^#pEW o@0qsx!2?RpH͵Ghkyowf̗L5tڊtB&U28khf\(D"Ds;x/4ws4Xr$Ib@O$ɨ#|'/L$.3#3^vQ6KCQ$F~-;/IotZSQ"bCtPrdVvpzo=懪AY?SULQ 	H !K>Kn	!ulhuG4!L8BI]/FX:5(M!`A<.#͒3\<FeAݴ^:djGW]U&_='~[q?[nwf?爛Ð1ucm-]qxa_͋#B"8^sՉwymzҶ6t[hD4(+6t,]X(jE7ĤLzz D]=zTCmu?0V/LfA2iZB=]#
19*ErsN]Ҿyu+My6di9r
~.)c"ݱ+mzLCxDl-f0IjYԁ*~>img%pTJa!>IS*{X~kN wL<1_8{%5zEB@qO2%	Uo {ұ=PQ29Y0!b	;n<9T54!>}4О1U33RNa}bŕ)jv*^nl%KiV "Bjkʦ͓>$,pƉKg ńÃU!q/-O%>*[.`mj#gcU;ߤȒx^̑le\[LĐܖ<w|ЁdWȩ9P_A[_xOl(o*ّN8Yɡi)^Jvp}=jx3U(.s<hdH`-ۍG)K,=F8>totKpV<Os~xיJ0Br6'`&Cc$CzWFT-.Rtе:?Dx}SjʗP8_[H|4%;!&;?=Pޕ{VwW9fO`,Jȹ1Rǖu	U]%nayD8BeQl{giz7`-]pd8Mlu18D Қ?DLG{PJ1HB^JQ
<8n_y"픴BAП,İ5xN8((a c p񞎁"{MqSBRhyܓEh_\: rp81)ۆtC,	vj6u[KVʹV-$B{9y2`"P2W
~M(Tf6V,U-n'{cAa-&9>s>\2DJr$$4,	Jãi:i"/N?9j]?D`T	w1ӎ!
: cFQ)`!yUzJN\RQLSVդaʉ[~B:0PR&[$ؠs.{lŮZu]MD5j Wyp2.	juO=}L[j\?Uw\>DGӛPS)QxpyXˍ/6SVM-BixQOjcnJyl(3y?6`N,>uJDbMC8,S<J S&%!x)#r8HPf$Ǭ|76t b\=k_mf`!b^ئ1S1c
Ypa@ɷB,~!%ES=ЂˑFy.r!,s(%:/d$5<(!ּ`͋*@$w8caX1<][xJ}&.7,,#+c̈ZQ1Mt?ݬ1;@Ǹ:)ρ'
үmf12$pC!}*VTe C~KҬ+L̀6hל$`Wű)O'eJtdlKz=Tͦq"\>QG%n0'3)w=!/fLeqG=eܟΞ_HuX~[XvүB.؎kcnVVfs*	鯑B0q2ZfmRvVJeЋ#"oDÈSI`:jwT1}r85Y4ưǨ`.7
O&V$FT_qʀ,Sk<ou<=m۔'$PH/%l]Ƨ"ejHgJ^:u10h_2ݟ_E8EsKs+5K-º)3{0V9%:=CX$,"B*|n؎a$Fr2HZyb
R+E]>QPF%1en,Z04f䆀o_'W΀x751y[SF<a\sas=},|䂟]sG]r4]nguHܗO[R=7d_\\$8Jk_pRnn-G5ӤEQЭa:>={WW+m {ClZN0;\.㟻*^d*ѤIy.\&i:*O_@!;٢JZ87g5iM'z]}, (ym"ǏGU_ $*LyQTܹI2-o`G!_ODm̉iJH 48t)fI`=bYOշJ]%-]w
0 j	a]]TZ H,]ό0 ؤ$K$6ߣtez9sy< A+j5fun+x08bgq8M>Uu7\h׃d 'k&#רZ]ɹB]t;(	L^AboM攞g9r,Ө5)a\(Up8D 6M+ieN c@ZU,e<\pL*c 6ˁ'/@&I4:NFծՁܺj5=fd-O7J;2wj%Cp×G4^E
H`/	V"=`@IWx07Iuj2fCc;kVztC^W$iwI-@bzUwhH
sBծLCk5#JYNPSwwTK{>,!8KPSPٿ36T.XpOyu6e4赜lIp1P `6*6<>|)7V1+ĜUIb/QÅR?4娍jTy/D21A4Z FGLC:uƏqP~{19@:/MYI;`{]>	*hbƻ-`[,JA&
3Hk=@%.YF*D2(d޴둒-Vw+$آ|*'%{K@0&\(KRgMP^rG~s?9Q5Jh|B(xȣ#AV08h{2  xD&κ4WcxRNM=79IK(v@@6ƪ{P!U7ulLO2^:!n^]rlXAp}] )O#-\m*Ҁb^B&"K+"L#&6pZ!!o#)лQML!K\mMv4<>VCNe?!:NMea7YqyOBs˱37؎B0?"0Jlʂ"O^zZRp%Q WC2bld@h|6%yPRu1g,Sx9 JeOK,ɱxJSbSBR4.L6Uดk.6{> aᔹ%
otϲSԦhI)A9aa9r8ĉץE0QOZsFGF
af"=[,f{ql3ч~AatC]z8[WE;meR2ޡF}1G-2!˫p۱t @yR-N|RtC#r2ױ~/bwμ[+D )LwKTCCW
Llg,qHByUզ!VVj'_6+,C11;8ɏ7Ȭ"\GR%  pvk7BD뽱ecqBQJth
b<i2펳f@'^-Yoi%,AI/~)rs$X; (&uP~$lI	XР4m7u@2M;qHqu- eD3oyU?ݦal="Y pB-Jy>iq(P
UP@Ki	t;u׻TqbXہ:+|UmF@)Z^'E1I`^dU|@mFiL*MӏOcd7=K]&ECMIsG`$+hkBvDYVC+!zѸ)-Dig~P
6co1k7G
(D#b6]IɴۡhacJ>Go(ߣ*^H&bökhbr,m@4j%ͷ|"gm}-EADj&d#MVXAWpQV{f=,klXe|H E4FrXpm~1f,m;׃P\(Y8r(> PU$OwD8IMsh9^U,MhQȒ,՚ozbXs >ڛ4Vؤ(WJh[Q\c3e/ޮi\wT_4# 8447,6[M577wt,I _{K9A!H7"lmɈ
Cnd26wcStn.$Ih'ԸO'{i!Z|x.60Ur߻et~D"aރvd<8VepE@p)z6NmBeqEBÑ)嚡)!惡mIVg=*I%lp"2tJ4HdO}PC.(-,r2	dd3IөLꆰsJ/uXwpFK tmd]ŗ*}8ngOvZI a
J!F'UR^y/%`p$堍eSv>XPKǆgB<X>fH>#0(J	p[:%5;=-*,La8jTA8b0ݹ(hDk:s,\JFׇ0L%`^~T^"xKWHqo$o*8eAF?
@B|sz^xJkÆeb?d>L(-sh-
M5	q"YY~*$
#5d*]2]0!_-,N俺Rb% )wrPInxs4d)q\}Kÿ!7BD5b2-"hICzMwBxeuG[xxKWx`?}	ow"7ֳG%fJ-E@rD=MG]A[(`ŌJND0GjgPnZe%ڍjcʊXo?ŌP.qtiij!.љPy=xJZOwGjHRߥp@4m'N52/c,Io?¿efB]X	S]g2/13C
gP2`:an
>Y#YOOEM %9lOМe{V#c4pr7"}Y*8-y|N4Tx9s)GK<)Pt9U*}7ۄ*\챙,4j#v}efY iJ#(gX=i;lҋJ0I{'pC")Gqs2~@w^sxqB uFR5@༏	#B7[2b1!cG9#zq兵юĪysPE_U8oI<	T;KP]ĨgTY9I1[1O5k`@A446mNrd&Yܥڸ_+Eh~,.;r.DE7m5L:lIz:'[DY蝳;9Ks
'O jDՌPM!!b;,
@!dTF}=М pRochcU^ok@ة9BA1D|?mf猠;ݍ?fdW^aV?In+&
NчMfYkM)cc[3EsTZ|SKmnbIX4]~1~@?Pˑ'%hAx{(eʮ :yE`ƯÎSWԞ!6hCRi=t>ǁu`GHAxuQ;FGybm]W[',?#L@x]h}O{aUJU1L(	AlnKO Ϸ@kjB[h3 F3pgt2zDg4<h#d+ ٰAaq,9&
H&<͞=88 xt謅\P@Dǜ?4'BV[Oz
`g*ieHJLg]
VlrS"a9oeR1mtE~WbAxc)**qCd9c4=CYSMծ~X?_<`Wzv5A\TI6mMNtXpFAHh wňm*=-\zq4,s,#H#}b2uiJ%VVdjNx{.Q*04(jBoL3p4]>^jLR-oIC?ɯ;r=%JviM#{w2y!;<};rG u/fSy:צߊ?K|WF7sl#I0<Z׃uIulNI(m-7\4H-s8mZag3lcGADROfA+8!+8郌xV&"?{r&fز]!f bW	G_giCòzs,of?qr3JP~DDDϾuf%.UUy63PRUCAߢ^P]C@|fd[stV@給5"@aFŠP,ab" jY(Ph#JԣOXz~Ki>+/O>
o;\P$ПN*\lH24Y6e|#гabJx]0P׆#WoEoB'([.-Kv<1jEEI dZ*2Ie$)LF{l50	Z*GI`&e\Ŕ
5LWfOcyF`xBûvNRY<#U ]PcHLs,!'9th1hWgDɄNp3vT9BD 8Շ,A
dc{\ɫXEOKP2}wg(-uV8%X\N)6w3X,(+f&滷-B؎Q-s/$5Awz%ND)lQQq}RX*H\O* s֊ݜ(£*["%JXΙ x 
ȑ :??4&EB
hX!
'P'ÎY)w\8:lz
բ hCՕLTW?,;$YQsik!c(^bJH/O7z$SrT&U2'_*沨bV)HuY`NΧYGY10v$%-ld3vu(8SO09fN~;$Ȩ]102ɚ!
n\Z_Aj L(Q-+*H WR K*vtD,D05@EW=w1	z͂+oOe)P2&-qβf)yZꀤKu-5s42OnCu׺:C{5u\Ձ,0̀>;`#Y n
AE!vu"A;{@}5Ad. EҺ{C:$OMJezT)g2IX~@Qqgl/wxlz"1!g|5J©q	t:"ᤳIn|HE|$;EnE_/ .@GPɶ)p	PTo+}J4v@YFNl|,$xM%!(3E'FCfER("2ia|l
7#X7FGZQ@>&0/+3jqw闈
rH=d^	r2^XPy՜@w+NXX|/i6=\WBސ(1")0]FD#	tjDcݠ|?GkXТAGwGirb1h~!m)-R/JJFl_ƌ4	ԉJ4!RpMᚖZD`7zs̟b0P_wrjy6fKSyĥAgYThYwN>	[k6/f]
__ƌ-tAG(G(A㦭~&l^(V90SpI4WMk|u[zj>DG?mGXtE':Կ',tdm=;h~.""-Shxzt/&CW<-64_bNѕ=ܶU/nolv\A?yzN $1qVBOBt1*pȭ"
`~:HFA*NҲ1^E陭"uJQOL%!Bӷ1o	CL|?fXA xL2j<,wY	*6QtBi lg.^l[`p-HH/?Gu@5,)啛W 4r(}.*IH  FY7/T0Ǜ*U悀"FR쑏;yZ+#}{蠳0dYLTP]pЖ.D\BZ!N2?"A\AUHͺ)*&O-v|D)Wٔ[H͔-7yƊVƣWQ26Tbf/Z	P,NE;(;5E⸮A5lO#:i\BQY{I#a)A35H+ao@337Ќ]*u00!©viS/$n9 /
Qֲ}R*"@ZHmBGIQ5/6j^kiѺs"߲If!nYI|8ءk ^(Jԟ͘vPWvl0!qȵӦ Kug^
<.w
E6Ug+{fDN^%`rt1c>Y_V"_,_ZQal{@ЈIUbjynOX E=0(ԘFG	P<kcQnhhd$Yl;Tq<(	q ŷ>B(#P	FQV0Bq-vPt6R8(RI1#/dW4f	HR&^6򈗢jOɄ\ֹP$'z2NE5!>	72^2I!2&P!r8NYh_Q=[awf:!P-II8@;&X	L!a\	5̨$V6G3t!<I,9uu2S2Tg{[vjK
It)I{-H%0cd	$o2z8W9Qiȳ \;bSG
Խ_7P_U-{(耔XErHO.Gi/Лţ\㾗ؘUDAPpQ/kvVZg}1wˢI%u!U6ҭT)'L{S'o K$^pʰE_BH'([0$Ud+8<w5Χjrcq0GMQBڣjǊ.gLwۄBƓH)N7G;rx32<Rӵ+8#$@DvI8Q}	Zv]=u%%\L:O99=oІ5;	i}ŭ ٶHac3DځOS \.U_<y9c*H @/IⱧ^zC ]BU(MYn1UI?`M.
\6:<c.Ѭ*32aa1K#?@ώ< {ݼ(,ByA'ңoi	ǕQ9A~Bk(*R4G>c[BQ-O=A%"SbWZ,*6_0KPt$ū$GZ5Xqȭo'l-	\:DH,qFP\:gp+ө"P<]`@$""9إu,&p\YIX6 M"Eoą!ru@Wo򸓙[a`HK 8Lf\x4lґ@^=80	a
?d{Y$"B@0^)DkSj/1z'}<$Lf ۝`"BB٪JD6'!=ULQL!w&[AärZp |ʽt(#kݏ}KÂH[eՁ
|ZN$iy>˺%j&%[Uq1XaB"*vTgC K;  m
QN(O&h#!!0w< kWSWy,QCK[R/UU<BvC$ DO	Yup($f>)P O1<gDK_!rMcz	QLb,8Q'2y~>18"& hcu/BI)!ңƦIu6wHONC؞.pr`"vg3W8`ص8:X/Q7:UF_OuN+mtlxB_ڃQUR<k]]JR5_0ArUEγnTUlȡ,>Hۼ@ 9n-e`)"5	B.P-h+YCߟn|.{ﾡ=U%($˒G3S|ЄJ'g͏بE!הD+A)hr3rV*5}/!
'QTߑlZ(z{7`2E͠J>U,nIA2!38cK "FS[7ʼ>JDF.{Wr?jK\-͕> p#l"װ-$)itW7  {Adt,q5,~S+И
&CorӃpة, \#Ǔ҉%]@P7VE'1z]Z{._SP֮?u)Y\P4NLO恒	>wǱTCoWe}\9#_8͝6J7A9Q1meTۯ*]#eq}7Wl9Pbfj`3=eN}6QqI΄r(IrZh̄Bj6FwH]fPd_680@twW&KEFF{z*w`V~2
,`졢`GDQyodk40ݲx\d*t2C՛F!/@3qFUC5ȦJ4mM*y4>b5#&LK8s	)Rd-ִY5ܐNq2low~ls$k":LD)S $/NA]*Έ8Fv4W ͼ
?ꇏl̯KÆIF@W.u:@1M n	g\_F@S^Nb8QU$-"̙!&Bxw%V!($#vV8МV_X?@,om%Kkbʲi
{)&z~V	QEe4tAvQm,z@|8'^Irs&80-LAwT/)M/R;pPK  \8JqUD9?	EᅄM+? a
C%xv3q/M`jVb!P΁ .IB@1 ?~BAi2!ߌȾ$~_	p<VZG (J@$"	S޷ȪtlۂW|Dh5ة-fIrh<WZ1!\	t}L.C̋x	okhS ٿ
Pfm;@4҅R6 j)&ױ2¨4f":ͮJIIVD;%yѶ.y[̋ErBGFޕs$83gfDSiu+HSNΒQVzf>5itWf81Lm7ʊ}jN .sluKxVAf
&	rmr<B6s<<pi$ĐK*LNxBAʵ307)|G4R7n0^̼^icD*2RpE%6$R,ZwPv6%TT'[hH($h9$LBbeB	Cv
4qGCXA'  cY3@DDsD=vF,Dۃ)ab<NrȆLY:&0(F*`i?޲(T6$#h/:he 
N<b'4|LLbaʹb@\w)@\2d!HX/9żtv<A`d@NBr5 ѕ,T}U{@l%ѢEdؽ4UG)ݲ_g ʝͤbgS}Ҋf4.G ,A_g0{PeHD,2=h9=>>Tt +_I2<s##q''sIm{W/x9߯#bC\Lb*|#ve8nR*d"死dV
YB_P%.UWt\e0#ȞYR 2iF_unjv䞊qha"03 ,Kb L2ݡ'X)/ߊc1@ #l
$Ϯʵ$3Ғ+JKŉ//`ψ( _l-G-ړ4kM+Cnؠi/kXTƗ"d OyI*
K|av𳞋iC1ĴB,YRŏ6R$C"e 7A)fb0 Q*T>l0uXg+	{^`B?$s~Vo 3'A2E R,"J9F+-d(v˸M%-h~
lЍZS֠3Ru8"2n'h̳ƣ8L:9\󶨗MεÓ]Ɉ{S)UNkP/AOO2%_0 z`Tf;m\zz
'-OIA,21xѠ8?N^wUIIȖ8웙xdM~ZOg6`bf%W'u`GS!%ٔwMńl<	!.݂N,W+Wpx4jEw6"g"ikD7m@0߻]=;};w7Le3")e?7S)Z%[k%A sJVKdvˮ,N@n0Vǂy-Jj;cu>t:
-u.m]
zK*V	~.;jI٘Г_ N-6aza^):Rh4n#<5#羣$C)XƚbbLc~G+֒ T.#"gH"̤8Q	 ChWIb=w \ip*63x&>tgojv}(>Lc冘JmG+PQ+tH'L(>{j<8DR
ylG̬X?r #* vc|:Tb}P#}@m2ΫʺubA?}M~lLQnt;;IA1E&,spVaicԹNs\ۜ֬{-A'ŀMR%FkuYC&}:/,Wb N.ApMw50 - 1%'¿{	bK7pn~90ېums:B<6jiP͛J-(fլrj!&hcv+v0D锔!/b9gբ%1^!-
lQ>wY5ãRj~_
X [Dϛ\?<wG7l*ỏٸM}_fzaӞViae$UWq%bs'i@$a&l.$?YV7=V4|Jjߎ/{ѿxe.'+++R[&=sEF>.),JD">ހ [JАUBՀE9HVy'^e'^ 4;H
N9=%۴Nx	{rWZX"GSdAY5Hj~;% Vd#lzbE8b+By<p0~Oom@v
JSMoqճP!x4Hz iT#+Tg?H!iּ?&hƟG_Ājxiȷn04P0xG(i#&9 =nL:lLv()+Wjd:67Uh
<TM@D{,TAewH'|*[hX+AbτȂ,tjhZ96S0P"cwv"r+C4?ޣ|eq!?+rulpD'swUP(Wl86yGAhcX}G[|"aᔯ,$<EbmuM}/L5 i9F$] dְX$F߂4xZAc¢t87wt٠W1Jz~6Ԡ%UXFk^Ppûߛ=^gWY Vxl&ѼsCsL!t20'@Vlxb:$NYPgޖ3STT !?77[bnޞ
U6saY%S*:C qJBr@^LԻ*("uGY/]ggRB~ NQWSk.̦DT''JN%Յ쨀٢K$W*vձK7;96mD	[kt^FcA>rkؖeFxYro$" 3XJa\M'H}h&@*[gtXݹLJ=9Mˡe  8#͊oRpqR	b9P"(Kù4&:qq7AyAGы x«čD} 鑋- i,+	 n '#Eɵ~C>8OݕPBg	 Xh>evjI ѷ$
- C&Is$LI\p!yCtyo
h&>uIpl;P3nvgPQU1JM0_Q0VNP|G^.PX~˙a8Iwhҽl0<	rnEF>9/تV(CqU!&XRT%y[6bM`V9
nIFu?(%fG5Ӌq55C_
䕝Y1iI h\8SB%}F%dK%[0S!) mLfG	x} @D$l7"9yC%B]p:Ɋ/95$ 4ЭYO0zM4VFYa_PH-kCgp^sqն
	FKDrÊ-fFlq܂T}zN7⍖Q{F'sgiVi\_*f*16[^^23)QQY8}.<2OO,z*}	(qdv0{L* ;3_ad{W|7YGM-jH!}`W[ \ELO$UρbʼR3mNǓqM@JV|040Lcoe/t{Je1^W$a7"QM1\QEtԑL֘PR9}ls.,ϞUL%&o?Ҁsgi~Fq7z}L91@=:ޝg|q[,<К/eKh?d"Z]|0"X"6j0tI+\^aKJ5^7y)䎪NQ~r;3J"W,ʟΧh%v|w$'KlseuN{dϰ9U@'8M%]<l0- zp:jb,vzHuHI*+2?Pԓ29=jil,PuK@5ɏF>Ǜ` -Ƙr+Mx#50("}*bFbH?72ﲸӺᰝKP7Ժ:&^7kH}+bI Z?ߟx@Z2>>GOXse^o-9 0}6Y+v} &>XMpw%Cee
lLE=s6|@!BOFb$0#H- Mc,  ;e0ǹb_)Dӵ(졁%;FuiN։:]U,{IwN*(MyB:A`&Q0oٙcF-cEnm\8 iG 5rlٛ#gFCLdU0U5]ZkܬAP2.m_]*4{0pZL^Z9A7lo/"o]LQ`LPە	}`@N+u& W N{hqgGw`3ڟs|?S0DH8:9@!D$	T^7 p<zY{פ	:'6hztt&8L&}/? Dc))9Ya4<j<قgH'NA<Qo{ /@Q}({y{mzɰd@>%8Q1Ώ;yM62U$ZQˠ@闶v9{Ї2>(xL\- ðZ=PJaxY>ie@
b$>7ȯq̒f	'IaƁ2MR!!%:mݔ||lE7#'#mtVfa[2)ka#Xe;>jhAbBAU/!iizC"{QgG<@d:0	Ĉ*wG(Tvc!-KgXre&4Xg?
#r,I JP&+"`AP1
}/S5wB>}{HT!B*$}q&/jd}Vsŗ51OS5ǬFf#Jîq	H:^uUYk8r\	l5*UPj-kos@SY4@fFlcUiKrg<W*N|'%pe)7B$v z"ʿl;"Q'q璞|ӸTv\RCF#\(YE&Q]Z[0BbPbgU0wyWuK%j*BL0ˠ*nZЕY <ͭw@xby Eopy*P>J0*p3"!XLcG|Eg~d_|iIF75
SVy̞_*w	N{&vN8(C3D*,eiկ҃c3U8oL7&XR(6@㎿Z(9G:j:8/F͋]w@;cvYYl<pbWЊYwobZC?4mҿ!{ӏ#(ry@zkͲ.'r\nO<mI  B6ڿym2;dR"-Zq6fW>΃VFTT1@Cbj>'큞uK<Lsr.=
 *ySsAFAR>9!hG?Nf1Ngh$)6HuZtK8	=Tw9 WȀe,g(͉h$ߖ۹{fZС\ދGM*.j;w$t94,ԩzH\𛉷{~yTUN ]uxB՜!3 ܘ*OL#9j&ȍgd!l/c#DpGO1,jrVo1d5zlKrIv6YÚbGuscGjc@|+A(kdX**BW(43p`mY"
AC6`JfQfGU8.F(xrDv߄3'
~FL@cb3^RmXC`ZFNh	3n:[hd_~~,NWPewӋ+pQfr&$^`7-xxݐS78MOV]A)%))T{ÂAE}U>%WVJ?>gǨx H$0m/BfZ̀1jz⾭ @@,;oIknI<05{?̐ʓ]Xnk]9~;Vo`鞭x~F'0cPUIHv~4`YvpHpg!_P~r`Öy(&~qk/͵R{r=չu] bF|R;"4PMIR,;9TK!4WęR{	xz@@RkKȐ#)H!̆G 29spT.
p|ƃG.=pC|胦u1ÆGQF2eq&4lqh#i1FpPkv
x)PxEǊ(4QG@*UصL"Åk"CBDI( G !^$LLq:nDĜ	':gp\faC6R,t0A܆6VkbhOO=Ng@	@ @ @R`"3H;@A	p `z`#pF( ]A~2SA`
!D dh8(0@3@6` d  S|G̿
Uǟ9|GWӟRyw_}WK_ G^_k>{+#x.o=W~fx޹w}tdL~]wΈwoF^R{/ϦC<lCpz+NB\8=T@ />/r\nԘ/$mbiM#an}2l.Fs&d"6&H$a*z<R@4 nMi$;8LsB*CSPZ	B%	d#KB/9֋$hÅh\m0yzMш-|~n(0-SG+x.ݼ4Xe{v+453]y1^!3͐ͲY|D NN߽ؿ_a/Xz#a*"@!>'E\kDpV fܨu;͕XOl_/1AF"/rf'#,`_CF$0쟚4lߪRp{(/ؼH*y$T(Cn>ڇ}^MV%a!堌`ljxՀG<~m^kPh	Iy	to y 	5kEV \hG3R	. )NPHi5٢F- 8MU|6!kĽvdBM$~bǒ5+V&e:dV2+7o	'\vl¦3n'::oTgr#xCٮVYN|l\rkՂ)G)A: P]Gu>)"R[C$Nq`Pd	9^If˰_*	γ$<6tB"Jx/UUDE&EaR'\]4\p_bsSnQ@ i%Ⱦ /8Cጊ٠8{ё|NIzh%0VR+l|0BtĔ˄z%2IC,u:9G1J*6/3i4դYNc	SvO#74[$;?Hs4(P>%p :[7HE:KM-gBJ^DAL̥GCʬg)ȄXVCAcw7
-ݛpACťe#|yH6:pn^/);*fG_bަI=@3(,<W"fDn#˦|>>"J1
"~:_<DvnIa;"a 6;JrZx?Fxd6
:yi(g.}}MhOV=xSܱ#wrP@ hG5K SC*"q!pQGתβ=tHF<!M6%Qc{s@*]q5o૤y T]pB 8	ļD-sHPjg5IqQoWZJ|-X4{,FDB`5~Eհ%ԲJu&o>pyج`аeZvna6	DyO%#W1?8Vt >rV̙O hdJ-㯀J0..ȰYoO	Qi)O@VͼS(mX}]@AŒS;7p?IQ	X2S5PCZDd-4KnApȈ%s>T>i$e0bI&
m*,㰄<1/z\)uBɅk;V M&`a0d=Q[	HN&kt~hU;Aߥɖc!}_V4LT=SRHCBD1Dv9 Y_9XZ`##+3#a,1\"h]z-#AOStw֋epaudٲtBVV0vioo%e$MF3;5o]4xmIr狅L+X~#q^}n2 3t*vvE45l^0]X33\w :7K~i!I&w:vn;1y ^ҟ%_g -b-{BҸB-$T>ؚBiiP΄z6ߡX/!U"!TB~dX&}4IX,srޮoZ] =%
!mYfSPRRc:DH"a0|;?@aMą180
4M9V?`>aڛ]Nta-FE<AV#:ۤكjj?6k[p[4ԧS<NXAhXҼ%\R	j}eRҗwgK%z)i	2JK-`_NҥzTqX혋iQ%\	nhs=Ki J9qwpN%γN\7 2n9nIeمT
f	;2dyeWCxS$)SaTUpG*pHxR<'Újr&?)$WV'"D0HYEw&                                                                                                                                                                                                                                                             assets/fonts/fontawesome-webfont.svg                                                                0000705                 00001267215 15242037122 0013723 0                                                                                                    ustar 00                                                                                                                                                                                                                                                       <?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" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1">
<metadata></metadata>
<defs>
<font id="fontawesomeregular" horiz-adv-x="1536" >
<font-face units-per-em="1792" ascent="1536" descent="-256" />
<missing-glyph horiz-adv-x="448" />
<glyph unicode=" "  horiz-adv-x="448" />
<glyph unicode="&#x09;" horiz-adv-x="448" />
<glyph unicode="&#xa0;" horiz-adv-x="448" />
<glyph unicode="&#xa8;" horiz-adv-x="1792" />
<glyph unicode="&#xa9;" horiz-adv-x="1792" />
<glyph unicode="&#xae;" horiz-adv-x="1792" />
<glyph unicode="&#xb4;" horiz-adv-x="1792" />
<glyph unicode="&#xc6;" horiz-adv-x="1792" />
<glyph unicode="&#xd8;" horiz-adv-x="1792" />
<glyph unicode="&#x2000;" horiz-adv-x="768" />
<glyph unicode="&#x2001;" horiz-adv-x="1537" />
<glyph unicode="&#x2002;" horiz-adv-x="768" />
<glyph unicode="&#x2003;" horiz-adv-x="1537" />
<glyph unicode="&#x2004;" horiz-adv-x="512" />
<glyph unicode="&#x2005;" horiz-adv-x="384" />
<glyph unicode="&#x2006;" horiz-adv-x="256" />
<glyph unicode="&#x2007;" horiz-adv-x="256" />
<glyph unicode="&#x2008;" horiz-adv-x="192" />
<glyph unicode="&#x2009;" horiz-adv-x="307" />
<glyph unicode="&#x200a;" horiz-adv-x="85" />
<glyph unicode="&#x202f;" horiz-adv-x="307" />
<glyph unicode="&#x205f;" horiz-adv-x="384" />
<glyph unicode="&#x2122;" horiz-adv-x="1792" />
<glyph unicode="&#x221e;" horiz-adv-x="1792" />
<glyph unicode="&#x2260;" horiz-adv-x="1792" />
<glyph unicode="&#x25fc;" horiz-adv-x="500" d="M0 0z" />
<glyph unicode="&#xf000;" horiz-adv-x="1792" d="M1699 1350q0 -35 -43 -78l-632 -632v-768h320q26 0 45 -19t19 -45t-19 -45t-45 -19h-896q-26 0 -45 19t-19 45t19 45t45 19h320v768l-632 632q-43 43 -43 78q0 23 18 36.5t38 17.5t43 4h1408q23 0 43 -4t38 -17.5t18 -36.5z" />
<glyph unicode="&#xf001;" d="M1536 1312v-1120q0 -50 -34 -89t-86 -60.5t-103.5 -32t-96.5 -10.5t-96.5 10.5t-103.5 32t-86 60.5t-34 89t34 89t86 60.5t103.5 32t96.5 10.5q105 0 192 -39v537l-768 -237v-709q0 -50 -34 -89t-86 -60.5t-103.5 -32t-96.5 -10.5t-96.5 10.5t-103.5 32t-86 60.5t-34 89 t34 89t86 60.5t103.5 32t96.5 10.5q105 0 192 -39v967q0 31 19 56.5t49 35.5l832 256q12 4 28 4q40 0 68 -28t28 -68z" />
<glyph unicode="&#xf002;" horiz-adv-x="1664" d="M1152 704q0 185 -131.5 316.5t-316.5 131.5t-316.5 -131.5t-131.5 -316.5t131.5 -316.5t316.5 -131.5t316.5 131.5t131.5 316.5zM1664 -128q0 -52 -38 -90t-90 -38q-54 0 -90 38l-343 342q-179 -124 -399 -124q-143 0 -273.5 55.5t-225 150t-150 225t-55.5 273.5 t55.5 273.5t150 225t225 150t273.5 55.5t273.5 -55.5t225 -150t150 -225t55.5 -273.5q0 -220 -124 -399l343 -343q37 -37 37 -90z" />
<glyph unicode="&#xf003;" horiz-adv-x="1792" d="M1664 32v768q-32 -36 -69 -66q-268 -206 -426 -338q-51 -43 -83 -67t-86.5 -48.5t-102.5 -24.5h-1h-1q-48 0 -102.5 24.5t-86.5 48.5t-83 67q-158 132 -426 338q-37 30 -69 66v-768q0 -13 9.5 -22.5t22.5 -9.5h1472q13 0 22.5 9.5t9.5 22.5zM1664 1083v11v13.5t-0.5 13 t-3 12.5t-5.5 9t-9 7.5t-14 2.5h-1472q-13 0 -22.5 -9.5t-9.5 -22.5q0 -168 147 -284q193 -152 401 -317q6 -5 35 -29.5t46 -37.5t44.5 -31.5t50.5 -27.5t43 -9h1h1q20 0 43 9t50.5 27.5t44.5 31.5t46 37.5t35 29.5q208 165 401 317q54 43 100.5 115.5t46.5 131.5z M1792 1120v-1088q0 -66 -47 -113t-113 -47h-1472q-66 0 -113 47t-47 113v1088q0 66 47 113t113 47h1472q66 0 113 -47t47 -113z" />
<glyph unicode="&#xf004;" horiz-adv-x="1792" d="M896 -128q-26 0 -44 18l-624 602q-10 8 -27.5 26t-55.5 65.5t-68 97.5t-53.5 121t-23.5 138q0 220 127 344t351 124q62 0 126.5 -21.5t120 -58t95.5 -68.5t76 -68q36 36 76 68t95.5 68.5t120 58t126.5 21.5q224 0 351 -124t127 -344q0 -221 -229 -450l-623 -600 q-18 -18 -44 -18z" />
<glyph unicode="&#xf005;" horiz-adv-x="1664" d="M1664 889q0 -22 -26 -48l-363 -354l86 -500q1 -7 1 -20q0 -21 -10.5 -35.5t-30.5 -14.5q-19 0 -40 12l-449 236l-449 -236q-22 -12 -40 -12q-21 0 -31.5 14.5t-10.5 35.5q0 6 2 20l86 500l-364 354q-25 27 -25 48q0 37 56 46l502 73l225 455q19 41 49 41t49 -41l225 -455 l502 -73q56 -9 56 -46z" />
<glyph unicode="&#xf006;" horiz-adv-x="1664" d="M1137 532l306 297l-422 62l-189 382l-189 -382l-422 -62l306 -297l-73 -421l378 199l377 -199zM1664 889q0 -22 -26 -48l-363 -354l86 -500q1 -7 1 -20q0 -50 -41 -50q-19 0 -40 12l-449 236l-449 -236q-22 -12 -40 -12q-21 0 -31.5 14.5t-10.5 35.5q0 6 2 20l86 500 l-364 354q-25 27 -25 48q0 37 56 46l502 73l225 455q19 41 49 41t49 -41l225 -455l502 -73q56 -9 56 -46z" />
<glyph unicode="&#xf007;" horiz-adv-x="1408" d="M1408 131q0 -120 -73 -189.5t-194 -69.5h-874q-121 0 -194 69.5t-73 189.5q0 53 3.5 103.5t14 109t26.5 108.5t43 97.5t62 81t85.5 53.5t111.5 20q9 0 42 -21.5t74.5 -48t108 -48t133.5 -21.5t133.5 21.5t108 48t74.5 48t42 21.5q61 0 111.5 -20t85.5 -53.5t62 -81 t43 -97.5t26.5 -108.5t14 -109t3.5 -103.5zM1088 1024q0 -159 -112.5 -271.5t-271.5 -112.5t-271.5 112.5t-112.5 271.5t112.5 271.5t271.5 112.5t271.5 -112.5t112.5 -271.5z" />
<glyph unicode="&#xf008;" horiz-adv-x="1920" d="M384 -64v128q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h128q26 0 45 19t19 45zM384 320v128q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h128q26 0 45 19t19 45zM384 704v128q0 26 -19 45t-45 19h-128 q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h128q26 0 45 19t19 45zM1408 -64v512q0 26 -19 45t-45 19h-768q-26 0 -45 -19t-19 -45v-512q0 -26 19 -45t45 -19h768q26 0 45 19t19 45zM384 1088v128q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45 t45 -19h128q26 0 45 19t19 45zM1792 -64v128q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h128q26 0 45 19t19 45zM1408 704v512q0 26 -19 45t-45 19h-768q-26 0 -45 -19t-19 -45v-512q0 -26 19 -45t45 -19h768q26 0 45 19t19 45zM1792 320v128 q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h128q26 0 45 19t19 45zM1792 704v128q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h128q26 0 45 19t19 45zM1792 1088v128q0 26 -19 45t-45 19h-128q-26 0 -45 -19 t-19 -45v-128q0 -26 19 -45t45 -19h128q26 0 45 19t19 45zM1920 1248v-1344q0 -66 -47 -113t-113 -47h-1600q-66 0 -113 47t-47 113v1344q0 66 47 113t113 47h1600q66 0 113 -47t47 -113z" />
<glyph unicode="&#xf009;" horiz-adv-x="1664" d="M768 512v-384q0 -52 -38 -90t-90 -38h-512q-52 0 -90 38t-38 90v384q0 52 38 90t90 38h512q52 0 90 -38t38 -90zM768 1280v-384q0 -52 -38 -90t-90 -38h-512q-52 0 -90 38t-38 90v384q0 52 38 90t90 38h512q52 0 90 -38t38 -90zM1664 512v-384q0 -52 -38 -90t-90 -38 h-512q-52 0 -90 38t-38 90v384q0 52 38 90t90 38h512q52 0 90 -38t38 -90zM1664 1280v-384q0 -52 -38 -90t-90 -38h-512q-52 0 -90 38t-38 90v384q0 52 38 90t90 38h512q52 0 90 -38t38 -90z" />
<glyph unicode="&#xf00a;" horiz-adv-x="1792" d="M512 288v-192q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68zM512 800v-192q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68zM1152 288v-192q0 -40 -28 -68t-68 -28h-320 q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68zM512 1312v-192q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68zM1152 800v-192q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28 h320q40 0 68 -28t28 -68zM1792 288v-192q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68zM1152 1312v-192q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68zM1792 800v-192 q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68zM1792 1312v-192q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68z" />
<glyph unicode="&#xf00b;" horiz-adv-x="1792" d="M512 288v-192q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68zM512 800v-192q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68zM1792 288v-192q0 -40 -28 -68t-68 -28h-960 q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h960q40 0 68 -28t28 -68zM512 1312v-192q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68zM1792 800v-192q0 -40 -28 -68t-68 -28h-960q-40 0 -68 28t-28 68v192q0 40 28 68t68 28 h960q40 0 68 -28t28 -68zM1792 1312v-192q0 -40 -28 -68t-68 -28h-960q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h960q40 0 68 -28t28 -68z" />
<glyph unicode="&#xf00c;" horiz-adv-x="1792" d="M1671 970q0 -40 -28 -68l-724 -724l-136 -136q-28 -28 -68 -28t-68 28l-136 136l-362 362q-28 28 -28 68t28 68l136 136q28 28 68 28t68 -28l294 -295l656 657q28 28 68 28t68 -28l136 -136q28 -28 28 -68z" />
<glyph unicode="&#xf00d;" horiz-adv-x="1408" d="M1298 214q0 -40 -28 -68l-136 -136q-28 -28 -68 -28t-68 28l-294 294l-294 -294q-28 -28 -68 -28t-68 28l-136 136q-28 28 -28 68t28 68l294 294l-294 294q-28 28 -28 68t28 68l136 136q28 28 68 28t68 -28l294 -294l294 294q28 28 68 28t68 -28l136 -136q28 -28 28 -68 t-28 -68l-294 -294l294 -294q28 -28 28 -68z" />
<glyph unicode="&#xf00e;" horiz-adv-x="1664" d="M1024 736v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-224v-224q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v224h-224q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h224v224q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5v-224h224 q13 0 22.5 -9.5t9.5 -22.5zM1152 704q0 185 -131.5 316.5t-316.5 131.5t-316.5 -131.5t-131.5 -316.5t131.5 -316.5t316.5 -131.5t316.5 131.5t131.5 316.5zM1664 -128q0 -53 -37.5 -90.5t-90.5 -37.5q-54 0 -90 38l-343 342q-179 -124 -399 -124q-143 0 -273.5 55.5 t-225 150t-150 225t-55.5 273.5t55.5 273.5t150 225t225 150t273.5 55.5t273.5 -55.5t225 -150t150 -225t55.5 -273.5q0 -220 -124 -399l343 -343q37 -37 37 -90z" />
<glyph unicode="&#xf010;" horiz-adv-x="1664" d="M1024 736v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-576q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h576q13 0 22.5 -9.5t9.5 -22.5zM1152 704q0 185 -131.5 316.5t-316.5 131.5t-316.5 -131.5t-131.5 -316.5t131.5 -316.5t316.5 -131.5t316.5 131.5t131.5 316.5z M1664 -128q0 -53 -37.5 -90.5t-90.5 -37.5q-54 0 -90 38l-343 342q-179 -124 -399 -124q-143 0 -273.5 55.5t-225 150t-150 225t-55.5 273.5t55.5 273.5t150 225t225 150t273.5 55.5t273.5 -55.5t225 -150t150 -225t55.5 -273.5q0 -220 -124 -399l343 -343q37 -37 37 -90z " />
<glyph unicode="&#xf011;" d="M1536 640q0 -156 -61 -298t-164 -245t-245 -164t-298 -61t-298 61t-245 164t-164 245t-61 298q0 182 80.5 343t226.5 270q43 32 95.5 25t83.5 -50q32 -42 24.5 -94.5t-49.5 -84.5q-98 -74 -151.5 -181t-53.5 -228q0 -104 40.5 -198.5t109.5 -163.5t163.5 -109.5 t198.5 -40.5t198.5 40.5t163.5 109.5t109.5 163.5t40.5 198.5q0 121 -53.5 228t-151.5 181q-42 32 -49.5 84.5t24.5 94.5q31 43 84 50t95 -25q146 -109 226.5 -270t80.5 -343zM896 1408v-640q0 -52 -38 -90t-90 -38t-90 38t-38 90v640q0 52 38 90t90 38t90 -38t38 -90z" />
<glyph unicode="&#xf012;" horiz-adv-x="1792" d="M256 96v-192q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM640 224v-320q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v320q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM1024 480v-576q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23 v576q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM1408 864v-960q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v960q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM1792 1376v-1472q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v1472q0 14 9 23t23 9h192q14 0 23 -9t9 -23z" />
<glyph unicode="&#xf013;" d="M1024 640q0 106 -75 181t-181 75t-181 -75t-75 -181t75 -181t181 -75t181 75t75 181zM1536 749v-222q0 -12 -8 -23t-20 -13l-185 -28q-19 -54 -39 -91q35 -50 107 -138q10 -12 10 -25t-9 -23q-27 -37 -99 -108t-94 -71q-12 0 -26 9l-138 108q-44 -23 -91 -38 q-16 -136 -29 -186q-7 -28 -36 -28h-222q-14 0 -24.5 8.5t-11.5 21.5l-28 184q-49 16 -90 37l-141 -107q-10 -9 -25 -9q-14 0 -25 11q-126 114 -165 168q-7 10 -7 23q0 12 8 23q15 21 51 66.5t54 70.5q-27 50 -41 99l-183 27q-13 2 -21 12.5t-8 23.5v222q0 12 8 23t19 13 l186 28q14 46 39 92q-40 57 -107 138q-10 12 -10 24q0 10 9 23q26 36 98.5 107.5t94.5 71.5q13 0 26 -10l138 -107q44 23 91 38q16 136 29 186q7 28 36 28h222q14 0 24.5 -8.5t11.5 -21.5l28 -184q49 -16 90 -37l142 107q9 9 24 9q13 0 25 -10q129 -119 165 -170q7 -8 7 -22 q0 -12 -8 -23q-15 -21 -51 -66.5t-54 -70.5q26 -50 41 -98l183 -28q13 -2 21 -12.5t8 -23.5z" />
<glyph unicode="&#xf014;" horiz-adv-x="1408" d="M512 800v-576q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v576q0 14 9 23t23 9h64q14 0 23 -9t9 -23zM768 800v-576q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v576q0 14 9 23t23 9h64q14 0 23 -9t9 -23zM1024 800v-576q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v576 q0 14 9 23t23 9h64q14 0 23 -9t9 -23zM1152 76v948h-896v-948q0 -22 7 -40.5t14.5 -27t10.5 -8.5h832q3 0 10.5 8.5t14.5 27t7 40.5zM480 1152h448l-48 117q-7 9 -17 11h-317q-10 -2 -17 -11zM1408 1120v-64q0 -14 -9 -23t-23 -9h-96v-948q0 -83 -47 -143.5t-113 -60.5h-832 q-66 0 -113 58.5t-47 141.5v952h-96q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h309l70 167q15 37 54 63t79 26h320q40 0 79 -26t54 -63l70 -167h309q14 0 23 -9t9 -23z" />
<glyph unicode="&#xf015;" horiz-adv-x="1664" d="M1408 544v-480q0 -26 -19 -45t-45 -19h-384v384h-256v-384h-384q-26 0 -45 19t-19 45v480q0 1 0.5 3t0.5 3l575 474l575 -474q1 -2 1 -6zM1631 613l-62 -74q-8 -9 -21 -11h-3q-13 0 -21 7l-692 577l-692 -577q-12 -8 -24 -7q-13 2 -21 11l-62 74q-8 10 -7 23.5t11 21.5 l719 599q32 26 76 26t76 -26l244 -204v195q0 14 9 23t23 9h192q14 0 23 -9t9 -23v-408l219 -182q10 -8 11 -21.5t-7 -23.5z" />
<glyph unicode="&#xf016;" d="M1468 1156q28 -28 48 -76t20 -88v-1152q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1600q0 40 28 68t68 28h896q40 0 88 -20t76 -48zM1024 1400v-376h376q-10 29 -22 41l-313 313q-12 12 -41 22zM1408 -128v1024h-416q-40 0 -68 28t-28 68v416h-768v-1536h1280z " />
<glyph unicode="&#xf017;" d="M896 992v-448q0 -14 -9 -23t-23 -9h-320q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h224v352q0 14 9 23t23 9h64q14 0 23 -9t9 -23zM1312 640q0 148 -73 273t-198 198t-273 73t-273 -73t-198 -198t-73 -273t73 -273t198 -198t273 -73t273 73t198 198t73 273zM1536 640 q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
<glyph unicode="&#xf018;" horiz-adv-x="1920" d="M1111 540v4l-24 320q-1 13 -11 22.5t-23 9.5h-186q-13 0 -23 -9.5t-11 -22.5l-24 -320v-4q-1 -12 8 -20t21 -8h244q12 0 21 8t8 20zM1870 73q0 -73 -46 -73h-704q13 0 22 9.5t8 22.5l-20 256q-1 13 -11 22.5t-23 9.5h-272q-13 0 -23 -9.5t-11 -22.5l-20 -256 q-1 -13 8 -22.5t22 -9.5h-704q-46 0 -46 73q0 54 26 116l417 1044q8 19 26 33t38 14h339q-13 0 -23 -9.5t-11 -22.5l-15 -192q-1 -14 8 -23t22 -9h166q13 0 22 9t8 23l-15 192q-1 13 -11 22.5t-23 9.5h339q20 0 38 -14t26 -33l417 -1044q26 -62 26 -116z" />
<glyph unicode="&#xf019;" horiz-adv-x="1664" d="M1280 192q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1536 192q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1664 416v-320q0 -40 -28 -68t-68 -28h-1472q-40 0 -68 28t-28 68v320q0 40 28 68t68 28h465l135 -136 q58 -56 136 -56t136 56l136 136h464q40 0 68 -28t28 -68zM1339 985q17 -41 -14 -70l-448 -448q-18 -19 -45 -19t-45 19l-448 448q-31 29 -14 70q17 39 59 39h256v448q0 26 19 45t45 19h256q26 0 45 -19t19 -45v-448h256q42 0 59 -39z" />
<glyph unicode="&#xf01a;" d="M1120 608q0 -12 -10 -24l-319 -319q-11 -9 -23 -9t-23 9l-320 320q-15 16 -7 35q8 20 30 20h192v352q0 14 9 23t23 9h192q14 0 23 -9t9 -23v-352h192q14 0 23 -9t9 -23zM768 1184q-148 0 -273 -73t-198 -198t-73 -273t73 -273t198 -198t273 -73t273 73t198 198t73 273 t-73 273t-198 198t-273 73zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
<glyph unicode="&#xf01b;" d="M1118 660q-8 -20 -30 -20h-192v-352q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v352h-192q-14 0 -23 9t-9 23q0 12 10 24l319 319q11 9 23 9t23 -9l320 -320q15 -16 7 -35zM768 1184q-148 0 -273 -73t-198 -198t-73 -273t73 -273t198 -198t273 -73t273 73t198 198 t73 273t-73 273t-198 198t-273 73zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
<glyph unicode="&#xf01c;" d="M1023 576h316q-1 3 -2.5 8t-2.5 8l-212 496h-708l-212 -496q-1 -2 -2.5 -8t-2.5 -8h316l95 -192h320zM1536 546v-482q0 -26 -19 -45t-45 -19h-1408q-26 0 -45 19t-19 45v482q0 62 25 123l238 552q10 25 36.5 42t52.5 17h832q26 0 52.5 -17t36.5 -42l238 -552 q25 -61 25 -123z" />
<glyph unicode="&#xf01d;" d="M1184 640q0 -37 -32 -55l-544 -320q-15 -9 -32 -9q-16 0 -32 8q-32 19 -32 56v640q0 37 32 56q33 18 64 -1l544 -320q32 -18 32 -55zM1312 640q0 148 -73 273t-198 198t-273 73t-273 -73t-198 -198t-73 -273t73 -273t198 -198t273 -73t273 73t198 198t73 273zM1536 640 q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
<glyph unicode="&#xf01e;" d="M1536 1280v-448q0 -26 -19 -45t-45 -19h-448q-42 0 -59 40q-17 39 14 69l138 138q-148 137 -349 137q-104 0 -198.5 -40.5t-163.5 -109.5t-109.5 -163.5t-40.5 -198.5t40.5 -198.5t109.5 -163.5t163.5 -109.5t198.5 -40.5q119 0 225 52t179 147q7 10 23 12q14 0 25 -9 l137 -138q9 -8 9.5 -20.5t-7.5 -22.5q-109 -132 -264 -204.5t-327 -72.5q-156 0 -298 61t-245 164t-164 245t-61 298t61 298t164 245t245 164t298 61q147 0 284.5 -55.5t244.5 -156.5l130 129q29 31 70 14q39 -17 39 -59z" />
<glyph unicode="&#xf021;" d="M1511 480q0 -5 -1 -7q-64 -268 -268 -434.5t-478 -166.5q-146 0 -282.5 55t-243.5 157l-129 -129q-19 -19 -45 -19t-45 19t-19 45v448q0 26 19 45t45 19h448q26 0 45 -19t19 -45t-19 -45l-137 -137q71 -66 161 -102t187 -36q134 0 250 65t186 179q11 17 53 117 q8 23 30 23h192q13 0 22.5 -9.5t9.5 -22.5zM1536 1280v-448q0 -26 -19 -45t-45 -19h-448q-26 0 -45 19t-19 45t19 45l138 138q-148 137 -349 137q-134 0 -250 -65t-186 -179q-11 -17 -53 -117q-8 -23 -30 -23h-199q-13 0 -22.5 9.5t-9.5 22.5v7q65 268 270 434.5t480 166.5 q146 0 284 -55.5t245 -156.5l130 129q19 19 45 19t45 -19t19 -45z" />
<glyph unicode="&#xf022;" horiz-adv-x="1792" d="M384 352v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM384 608v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z M384 864v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM1536 352v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-960q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h960q13 0 22.5 -9.5t9.5 -22.5z M1536 608v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-960q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h960q13 0 22.5 -9.5t9.5 -22.5zM1536 864v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-960q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h960q13 0 22.5 -9.5 t9.5 -22.5zM1664 160v832q0 13 -9.5 22.5t-22.5 9.5h-1472q-13 0 -22.5 -9.5t-9.5 -22.5v-832q0 -13 9.5 -22.5t22.5 -9.5h1472q13 0 22.5 9.5t9.5 22.5zM1792 1248v-1088q0 -66 -47 -113t-113 -47h-1472q-66 0 -113 47t-47 113v1088q0 66 47 113t113 47h1472q66 0 113 -47 t47 -113z" />
<glyph unicode="&#xf023;" horiz-adv-x="1152" d="M320 768h512v192q0 106 -75 181t-181 75t-181 -75t-75 -181v-192zM1152 672v-576q0 -40 -28 -68t-68 -28h-960q-40 0 -68 28t-28 68v576q0 40 28 68t68 28h32v192q0 184 132 316t316 132t316 -132t132 -316v-192h32q40 0 68 -28t28 -68z" />
<glyph unicode="&#xf024;" horiz-adv-x="1792" d="M320 1280q0 -72 -64 -110v-1266q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v1266q-64 38 -64 110q0 53 37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1792 1216v-763q0 -25 -12.5 -38.5t-39.5 -27.5q-215 -116 -369 -116q-61 0 -123.5 22t-108.5 48 t-115.5 48t-142.5 22q-192 0 -464 -146q-17 -9 -33 -9q-26 0 -45 19t-19 45v742q0 32 31 55q21 14 79 43q236 120 421 120q107 0 200 -29t219 -88q38 -19 88 -19q54 0 117.5 21t110 47t88 47t54.5 21q26 0 45 -19t19 -45z" />
<glyph unicode="&#xf025;" horiz-adv-x="1664" d="M1664 650q0 -166 -60 -314l-20 -49l-185 -33q-22 -83 -90.5 -136.5t-156.5 -53.5v-32q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v576q0 14 9 23t23 9h64q14 0 23 -9t9 -23v-32q71 0 130 -35.5t93 -95.5l68 12q29 95 29 193q0 148 -88 279t-236.5 209t-315.5 78 t-315.5 -78t-236.5 -209t-88 -279q0 -98 29 -193l68 -12q34 60 93 95.5t130 35.5v32q0 14 9 23t23 9h64q14 0 23 -9t9 -23v-576q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v32q-88 0 -156.5 53.5t-90.5 136.5l-185 33l-20 49q-60 148 -60 314q0 151 67 291t179 242.5 t266 163.5t320 61t320 -61t266 -163.5t179 -242.5t67 -291z" />
<glyph unicode="&#xf026;" horiz-adv-x="768" d="M768 1184v-1088q0 -26 -19 -45t-45 -19t-45 19l-333 333h-262q-26 0 -45 19t-19 45v384q0 26 19 45t45 19h262l333 333q19 19 45 19t45 -19t19 -45z" />
<glyph unicode="&#xf027;" horiz-adv-x="1152" d="M768 1184v-1088q0 -26 -19 -45t-45 -19t-45 19l-333 333h-262q-26 0 -45 19t-19 45v384q0 26 19 45t45 19h262l333 333q19 19 45 19t45 -19t19 -45zM1152 640q0 -76 -42.5 -141.5t-112.5 -93.5q-10 -5 -25 -5q-26 0 -45 18.5t-19 45.5q0 21 12 35.5t29 25t34 23t29 35.5 t12 57t-12 57t-29 35.5t-34 23t-29 25t-12 35.5q0 27 19 45.5t45 18.5q15 0 25 -5q70 -27 112.5 -93t42.5 -142z" />
<glyph unicode="&#xf028;" horiz-adv-x="1664" d="M768 1184v-1088q0 -26 -19 -45t-45 -19t-45 19l-333 333h-262q-26 0 -45 19t-19 45v384q0 26 19 45t45 19h262l333 333q19 19 45 19t45 -19t19 -45zM1152 640q0 -76 -42.5 -141.5t-112.5 -93.5q-10 -5 -25 -5q-26 0 -45 18.5t-19 45.5q0 21 12 35.5t29 25t34 23t29 35.5 t12 57t-12 57t-29 35.5t-34 23t-29 25t-12 35.5q0 27 19 45.5t45 18.5q15 0 25 -5q70 -27 112.5 -93t42.5 -142zM1408 640q0 -153 -85 -282.5t-225 -188.5q-13 -5 -25 -5q-27 0 -46 19t-19 45q0 39 39 59q56 29 76 44q74 54 115.5 135.5t41.5 173.5t-41.5 173.5 t-115.5 135.5q-20 15 -76 44q-39 20 -39 59q0 26 19 45t45 19q13 0 26 -5q140 -59 225 -188.5t85 -282.5zM1664 640q0 -230 -127 -422.5t-338 -283.5q-13 -5 -26 -5q-26 0 -45 19t-19 45q0 36 39 59q7 4 22.5 10.5t22.5 10.5q46 25 82 51q123 91 192 227t69 289t-69 289 t-192 227q-36 26 -82 51q-7 4 -22.5 10.5t-22.5 10.5q-39 23 -39 59q0 26 19 45t45 19q13 0 26 -5q211 -91 338 -283.5t127 -422.5z" />
<glyph unicode="&#xf029;" horiz-adv-x="1408" d="M384 384v-128h-128v128h128zM384 1152v-128h-128v128h128zM1152 1152v-128h-128v128h128zM128 129h384v383h-384v-383zM128 896h384v384h-384v-384zM896 896h384v384h-384v-384zM640 640v-640h-640v640h640zM1152 128v-128h-128v128h128zM1408 128v-128h-128v128h128z M1408 640v-384h-384v128h-128v-384h-128v640h384v-128h128v128h128zM640 1408v-640h-640v640h640zM1408 1408v-640h-640v640h640z" />
<glyph unicode="&#xf02a;" horiz-adv-x="1792" d="M63 0h-63v1408h63v-1408zM126 1h-32v1407h32v-1407zM220 1h-31v1407h31v-1407zM377 1h-31v1407h31v-1407zM534 1h-62v1407h62v-1407zM660 1h-31v1407h31v-1407zM723 1h-31v1407h31v-1407zM786 1h-31v1407h31v-1407zM943 1h-63v1407h63v-1407zM1100 1h-63v1407h63v-1407z M1226 1h-63v1407h63v-1407zM1352 1h-63v1407h63v-1407zM1446 1h-63v1407h63v-1407zM1635 1h-94v1407h94v-1407zM1698 1h-32v1407h32v-1407zM1792 0h-63v1408h63v-1408z" />
<glyph unicode="&#xf02b;" d="M448 1088q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1515 512q0 -53 -37 -90l-491 -492q-39 -37 -91 -37q-53 0 -90 37l-715 716q-38 37 -64.5 101t-26.5 117v416q0 52 38 90t90 38h416q53 0 117 -26.5t102 -64.5 l715 -714q37 -39 37 -91z" />
<glyph unicode="&#xf02c;" horiz-adv-x="1920" d="M448 1088q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1515 512q0 -53 -37 -90l-491 -492q-39 -37 -91 -37q-53 0 -90 37l-715 716q-38 37 -64.5 101t-26.5 117v416q0 52 38 90t90 38h416q53 0 117 -26.5t102 -64.5 l715 -714q37 -39 37 -91zM1899 512q0 -53 -37 -90l-491 -492q-39 -37 -91 -37q-36 0 -59 14t-53 45l470 470q37 37 37 90q0 52 -37 91l-715 714q-38 38 -102 64.5t-117 26.5h224q53 0 117 -26.5t102 -64.5l715 -714q37 -39 37 -91z" />
<glyph unicode="&#xf02d;" horiz-adv-x="1664" d="M1639 1058q40 -57 18 -129l-275 -906q-19 -64 -76.5 -107.5t-122.5 -43.5h-923q-77 0 -148.5 53.5t-99.5 131.5q-24 67 -2 127q0 4 3 27t4 37q1 8 -3 21.5t-3 19.5q2 11 8 21t16.5 23.5t16.5 23.5q23 38 45 91.5t30 91.5q3 10 0.5 30t-0.5 28q3 11 17 28t17 23 q21 36 42 92t25 90q1 9 -2.5 32t0.5 28q4 13 22 30.5t22 22.5q19 26 42.5 84.5t27.5 96.5q1 8 -3 25.5t-2 26.5q2 8 9 18t18 23t17 21q8 12 16.5 30.5t15 35t16 36t19.5 32t26.5 23.5t36 11.5t47.5 -5.5l-1 -3q38 9 51 9h761q74 0 114 -56t18 -130l-274 -906 q-36 -119 -71.5 -153.5t-128.5 -34.5h-869q-27 0 -38 -15q-11 -16 -1 -43q24 -70 144 -70h923q29 0 56 15.5t35 41.5l300 987q7 22 5 57q38 -15 59 -43zM575 1056q-4 -13 2 -22.5t20 -9.5h608q13 0 25.5 9.5t16.5 22.5l21 64q4 13 -2 22.5t-20 9.5h-608q-13 0 -25.5 -9.5 t-16.5 -22.5zM492 800q-4 -13 2 -22.5t20 -9.5h608q13 0 25.5 9.5t16.5 22.5l21 64q4 13 -2 22.5t-20 9.5h-608q-13 0 -25.5 -9.5t-16.5 -22.5z" />
<glyph unicode="&#xf02e;" horiz-adv-x="1280" d="M1164 1408q23 0 44 -9q33 -13 52.5 -41t19.5 -62v-1289q0 -34 -19.5 -62t-52.5 -41q-19 -8 -44 -8q-48 0 -83 32l-441 424l-441 -424q-36 -33 -83 -33q-23 0 -44 9q-33 13 -52.5 41t-19.5 62v1289q0 34 19.5 62t52.5 41q21 9 44 9h1048z" />
<glyph unicode="&#xf02f;" horiz-adv-x="1664" d="M384 0h896v256h-896v-256zM384 640h896v384h-160q-40 0 -68 28t-28 68v160h-640v-640zM1536 576q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1664 576v-416q0 -13 -9.5 -22.5t-22.5 -9.5h-224v-160q0 -40 -28 -68t-68 -28h-960q-40 0 -68 28t-28 68 v160h-224q-13 0 -22.5 9.5t-9.5 22.5v416q0 79 56.5 135.5t135.5 56.5h64v544q0 40 28 68t68 28h672q40 0 88 -20t76 -48l152 -152q28 -28 48 -76t20 -88v-256h64q79 0 135.5 -56.5t56.5 -135.5z" />
<glyph unicode="&#xf030;" horiz-adv-x="1920" d="M960 864q119 0 203.5 -84.5t84.5 -203.5t-84.5 -203.5t-203.5 -84.5t-203.5 84.5t-84.5 203.5t84.5 203.5t203.5 84.5zM1664 1280q106 0 181 -75t75 -181v-896q0 -106 -75 -181t-181 -75h-1408q-106 0 -181 75t-75 181v896q0 106 75 181t181 75h224l51 136 q19 49 69.5 84.5t103.5 35.5h512q53 0 103.5 -35.5t69.5 -84.5l51 -136h224zM960 128q185 0 316.5 131.5t131.5 316.5t-131.5 316.5t-316.5 131.5t-316.5 -131.5t-131.5 -316.5t131.5 -316.5t316.5 -131.5z" />
<glyph unicode="&#xf031;" horiz-adv-x="1664" d="M725 977l-170 -450q33 0 136.5 -2t160.5 -2q19 0 57 2q-87 253 -184 452zM0 -128l2 79q23 7 56 12.5t57 10.5t49.5 14.5t44.5 29t31 50.5l237 616l280 724h75h53q8 -14 11 -21l205 -480q33 -78 106 -257.5t114 -274.5q15 -34 58 -144.5t72 -168.5q20 -45 35 -57 q19 -15 88 -29.5t84 -20.5q6 -38 6 -57q0 -4 -0.5 -13t-0.5 -13q-63 0 -190 8t-191 8q-76 0 -215 -7t-178 -8q0 43 4 78l131 28q1 0 12.5 2.5t15.5 3.5t14.5 4.5t15 6.5t11 8t9 11t2.5 14q0 16 -31 96.5t-72 177.5t-42 100l-450 2q-26 -58 -76.5 -195.5t-50.5 -162.5 q0 -22 14 -37.5t43.5 -24.5t48.5 -13.5t57 -8.5t41 -4q1 -19 1 -58q0 -9 -2 -27q-58 0 -174.5 10t-174.5 10q-8 0 -26.5 -4t-21.5 -4q-80 -14 -188 -14z" />
<glyph unicode="&#xf032;" horiz-adv-x="1408" d="M555 15q74 -32 140 -32q376 0 376 335q0 114 -41 180q-27 44 -61.5 74t-67.5 46.5t-80.5 25t-84 10.5t-94.5 2q-73 0 -101 -10q0 -53 -0.5 -159t-0.5 -158q0 -8 -1 -67.5t-0.5 -96.5t4.5 -83.5t12 -66.5zM541 761q42 -7 109 -7q82 0 143 13t110 44.5t74.5 89.5t25.5 142 q0 70 -29 122.5t-79 82t-108 43.5t-124 14q-50 0 -130 -13q0 -50 4 -151t4 -152q0 -27 -0.5 -80t-0.5 -79q0 -46 1 -69zM0 -128l2 94q15 4 85 16t106 27q7 12 12.5 27t8.5 33.5t5.5 32.5t3 37.5t0.5 34v35.5v30q0 982 -22 1025q-4 8 -22 14.5t-44.5 11t-49.5 7t-48.5 4.5 t-30.5 3l-4 83q98 2 340 11.5t373 9.5q23 0 68.5 -0.5t67.5 -0.5q70 0 136.5 -13t128.5 -42t108 -71t74 -104.5t28 -137.5q0 -52 -16.5 -95.5t-39 -72t-64.5 -57.5t-73 -45t-84 -40q154 -35 256.5 -134t102.5 -248q0 -100 -35 -179.5t-93.5 -130.5t-138 -85.5t-163.5 -48.5 t-176 -14q-44 0 -132 3t-132 3q-106 0 -307 -11t-231 -12z" />
<glyph unicode="&#xf033;" horiz-adv-x="1024" d="M0 -126l17 85q6 2 81.5 21.5t111.5 37.5q28 35 41 101q1 7 62 289t114 543.5t52 296.5v25q-24 13 -54.5 18.5t-69.5 8t-58 5.5l19 103q33 -2 120 -6.5t149.5 -7t120.5 -2.5q48 0 98.5 2.5t121 7t98.5 6.5q-5 -39 -19 -89q-30 -10 -101.5 -28.5t-108.5 -33.5 q-8 -19 -14 -42.5t-9 -40t-7.5 -45.5t-6.5 -42q-27 -148 -87.5 -419.5t-77.5 -355.5q-2 -9 -13 -58t-20 -90t-16 -83.5t-6 -57.5l1 -18q17 -4 185 -31q-3 -44 -16 -99q-11 0 -32.5 -1.5t-32.5 -1.5q-29 0 -87 10t-86 10q-138 2 -206 2q-51 0 -143 -9t-121 -11z" />
<glyph unicode="&#xf034;" horiz-adv-x="1792" d="M1744 128q33 0 42 -18.5t-11 -44.5l-126 -162q-20 -26 -49 -26t-49 26l-126 162q-20 26 -11 44.5t42 18.5h80v1024h-80q-33 0 -42 18.5t11 44.5l126 162q20 26 49 26t49 -26l126 -162q20 -26 11 -44.5t-42 -18.5h-80v-1024h80zM81 1407l54 -27q12 -5 211 -5q44 0 132 2 t132 2q36 0 107.5 -0.5t107.5 -0.5h293q6 0 21 -0.5t20.5 0t16 3t17.5 9t15 17.5l42 1q4 0 14 -0.5t14 -0.5q2 -112 2 -336q0 -80 -5 -109q-39 -14 -68 -18q-25 44 -54 128q-3 9 -11 48t-14.5 73.5t-7.5 35.5q-6 8 -12 12.5t-15.5 6t-13 2.5t-18 0.5t-16.5 -0.5 q-17 0 -66.5 0.5t-74.5 0.5t-64 -2t-71 -6q-9 -81 -8 -136q0 -94 2 -388t2 -455q0 -16 -2.5 -71.5t0 -91.5t12.5 -69q40 -21 124 -42.5t120 -37.5q5 -40 5 -50q0 -14 -3 -29l-34 -1q-76 -2 -218 8t-207 10q-50 0 -151 -9t-152 -9q-3 51 -3 52v9q17 27 61.5 43t98.5 29t78 27 q19 42 19 383q0 101 -3 303t-3 303v117q0 2 0.5 15.5t0.5 25t-1 25.5t-3 24t-5 14q-11 12 -162 12q-33 0 -93 -12t-80 -26q-19 -13 -34 -72.5t-31.5 -111t-42.5 -53.5q-42 26 -56 44v383z" />
<glyph unicode="&#xf035;" d="M81 1407l54 -27q12 -5 211 -5q44 0 132 2t132 2q70 0 246.5 1t304.5 0.5t247 -4.5q33 -1 56 31l42 1q4 0 14 -0.5t14 -0.5q2 -112 2 -336q0 -80 -5 -109q-39 -14 -68 -18q-25 44 -54 128q-3 9 -11 47.5t-15 73.5t-7 36q-10 13 -27 19q-5 2 -66 2q-30 0 -93 1t-103 1 t-94 -2t-96 -7q-9 -81 -8 -136l1 -152v52q0 -55 1 -154t1.5 -180t0.5 -153q0 -16 -2.5 -71.5t0 -91.5t12.5 -69q40 -21 124 -42.5t120 -37.5q5 -40 5 -50q0 -14 -3 -29l-34 -1q-76 -2 -218 8t-207 10q-50 0 -151 -9t-152 -9q-3 51 -3 52v9q17 27 61.5 43t98.5 29t78 27 q7 16 11.5 74t6 145.5t1.5 155t-0.5 153.5t-0.5 89q0 7 -2.5 21.5t-2.5 22.5q0 7 0.5 44t1 73t0 76.5t-3 67.5t-6.5 32q-11 12 -162 12q-41 0 -163 -13.5t-138 -24.5q-19 -12 -34 -71.5t-31.5 -111.5t-42.5 -54q-42 26 -56 44v383zM1310 125q12 0 42 -19.5t57.5 -41.5 t59.5 -49t36 -30q26 -21 26 -49t-26 -49q-4 -3 -36 -30t-59.5 -49t-57.5 -41.5t-42 -19.5q-13 0 -20.5 10.5t-10 28.5t-2.5 33.5t1.5 33t1.5 19.5h-1024q0 -2 1.5 -19.5t1.5 -33t-2.5 -33.5t-10 -28.5t-20.5 -10.5q-12 0 -42 19.5t-57.5 41.5t-59.5 49t-36 30q-26 21 -26 49 t26 49q4 3 36 30t59.5 49t57.5 41.5t42 19.5q13 0 20.5 -10.5t10 -28.5t2.5 -33.5t-1.5 -33t-1.5 -19.5h1024q0 2 -1.5 19.5t-1.5 33t2.5 33.5t10 28.5t20.5 10.5z" />
<glyph unicode="&#xf036;" horiz-adv-x="1792" d="M1792 192v-128q0 -26 -19 -45t-45 -19h-1664q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1664q26 0 45 -19t19 -45zM1408 576v-128q0 -26 -19 -45t-45 -19h-1280q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1280q26 0 45 -19t19 -45zM1664 960v-128q0 -26 -19 -45 t-45 -19h-1536q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1536q26 0 45 -19t19 -45zM1280 1344v-128q0 -26 -19 -45t-45 -19h-1152q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1152q26 0 45 -19t19 -45z" />
<glyph unicode="&#xf037;" horiz-adv-x="1792" d="M1792 192v-128q0 -26 -19 -45t-45 -19h-1664q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1664q26 0 45 -19t19 -45zM1408 576v-128q0 -26 -19 -45t-45 -19h-896q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h896q26 0 45 -19t19 -45zM1664 960v-128q0 -26 -19 -45t-45 -19 h-1408q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1408q26 0 45 -19t19 -45zM1280 1344v-128q0 -26 -19 -45t-45 -19h-640q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h640q26 0 45 -19t19 -45z" />
<glyph unicode="&#xf038;" horiz-adv-x="1792" d="M1792 192v-128q0 -26 -19 -45t-45 -19h-1664q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1664q26 0 45 -19t19 -45zM1792 576v-128q0 -26 -19 -45t-45 -19h-1280q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1280q26 0 45 -19t19 -45zM1792 960v-128q0 -26 -19 -45 t-45 -19h-1536q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1536q26 0 45 -19t19 -45zM1792 1344v-128q0 -26 -19 -45t-45 -19h-1152q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1152q26 0 45 -19t19 -45z" />
<glyph unicode="&#xf039;" horiz-adv-x="1792" d="M1792 192v-128q0 -26 -19 -45t-45 -19h-1664q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1664q26 0 45 -19t19 -45zM1792 576v-128q0 -26 -19 -45t-45 -19h-1664q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1664q26 0 45 -19t19 -45zM1792 960v-128q0 -26 -19 -45 t-45 -19h-1664q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1664q26 0 45 -19t19 -45zM1792 1344v-128q0 -26 -19 -45t-45 -19h-1664q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1664q26 0 45 -19t19 -45z" />
<glyph unicode="&#xf03a;" horiz-adv-x="1792" d="M256 224v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-192q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h192q13 0 22.5 -9.5t9.5 -22.5zM256 608v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-192q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h192q13 0 22.5 -9.5 t9.5 -22.5zM256 992v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-192q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h192q13 0 22.5 -9.5t9.5 -22.5zM1792 224v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1344q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1344 q13 0 22.5 -9.5t9.5 -22.5zM256 1376v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-192q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h192q13 0 22.5 -9.5t9.5 -22.5zM1792 608v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1344q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5 t22.5 9.5h1344q13 0 22.5 -9.5t9.5 -22.5zM1792 992v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1344q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1344q13 0 22.5 -9.5t9.5 -22.5zM1792 1376v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1344q-13 0 -22.5 9.5t-9.5 22.5v192 q0 13 9.5 22.5t22.5 9.5h1344q13 0 22.5 -9.5t9.5 -22.5z" />
<glyph unicode="&#xf03b;" horiz-adv-x="1792" d="M384 992v-576q0 -13 -9.5 -22.5t-22.5 -9.5q-14 0 -23 9l-288 288q-9 9 -9 23t9 23l288 288q9 9 23 9q13 0 22.5 -9.5t9.5 -22.5zM1792 224v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1728q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1728q13 0 22.5 -9.5 t9.5 -22.5zM1792 608v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1088q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1088q13 0 22.5 -9.5t9.5 -22.5zM1792 992v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1088q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1088 q13 0 22.5 -9.5t9.5 -22.5zM1792 1376v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1728q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1728q13 0 22.5 -9.5t9.5 -22.5z" />
<glyph unicode="&#xf03c;" horiz-adv-x="1792" d="M352 704q0 -14 -9 -23l-288 -288q-9 -9 -23 -9q-13 0 -22.5 9.5t-9.5 22.5v576q0 13 9.5 22.5t22.5 9.5q14 0 23 -9l288 -288q9 -9 9 -23zM1792 224v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1728q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1728q13 0 22.5 -9.5 t9.5 -22.5zM1792 608v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1088q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1088q13 0 22.5 -9.5t9.5 -22.5zM1792 992v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1088q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1088 q13 0 22.5 -9.5t9.5 -22.5zM1792 1376v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1728q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1728q13 0 22.5 -9.5t9.5 -22.5z" />
<glyph unicode="&#xf03d;" horiz-adv-x="1792" d="M1792 1184v-1088q0 -42 -39 -59q-13 -5 -25 -5q-27 0 -45 19l-403 403v-166q0 -119 -84.5 -203.5t-203.5 -84.5h-704q-119 0 -203.5 84.5t-84.5 203.5v704q0 119 84.5 203.5t203.5 84.5h704q119 0 203.5 -84.5t84.5 -203.5v-165l403 402q18 19 45 19q12 0 25 -5 q39 -17 39 -59z" />
<glyph unicode="&#xf03e;" horiz-adv-x="1920" d="M640 960q0 -80 -56 -136t-136 -56t-136 56t-56 136t56 136t136 56t136 -56t56 -136zM1664 576v-448h-1408v192l320 320l160 -160l512 512zM1760 1280h-1600q-13 0 -22.5 -9.5t-9.5 -22.5v-1216q0 -13 9.5 -22.5t22.5 -9.5h1600q13 0 22.5 9.5t9.5 22.5v1216 q0 13 -9.5 22.5t-22.5 9.5zM1920 1248v-1216q0 -66 -47 -113t-113 -47h-1600q-66 0 -113 47t-47 113v1216q0 66 47 113t113 47h1600q66 0 113 -47t47 -113z" />
<glyph unicode="&#xf040;" d="M363 0l91 91l-235 235l-91 -91v-107h128v-128h107zM886 928q0 22 -22 22q-10 0 -17 -7l-542 -542q-7 -7 -7 -17q0 -22 22 -22q10 0 17 7l542 542q7 7 7 17zM832 1120l416 -416l-832 -832h-416v416zM1515 1024q0 -53 -37 -90l-166 -166l-416 416l166 165q36 38 90 38 q53 0 91 -38l235 -234q37 -39 37 -91z" />
<glyph unicode="&#xf041;" horiz-adv-x="1024" d="M768 896q0 106 -75 181t-181 75t-181 -75t-75 -181t75 -181t181 -75t181 75t75 181zM1024 896q0 -109 -33 -179l-364 -774q-16 -33 -47.5 -52t-67.5 -19t-67.5 19t-46.5 52l-365 774q-33 70 -33 179q0 212 150 362t362 150t362 -150t150 -362z" />
<glyph unicode="&#xf042;" d="M768 96v1088q-148 0 -273 -73t-198 -198t-73 -273t73 -273t198 -198t273 -73zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
<glyph unicode="&#xf043;" horiz-adv-x="1024" d="M512 384q0 36 -20 69q-1 1 -15.5 22.5t-25.5 38t-25 44t-21 50.5q-4 16 -21 16t-21 -16q-7 -23 -21 -50.5t-25 -44t-25.5 -38t-15.5 -22.5q-20 -33 -20 -69q0 -53 37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1024 512q0 -212 -150 -362t-362 -150t-362 150t-150 362 q0 145 81 275q6 9 62.5 90.5t101 151t99.5 178t83 201.5q9 30 34 47t51 17t51.5 -17t33.5 -47q28 -93 83 -201.5t99.5 -178t101 -151t62.5 -90.5q81 -127 81 -275z" />
<glyph unicode="&#xf044;" horiz-adv-x="1792" d="M888 352l116 116l-152 152l-116 -116v-56h96v-96h56zM1328 1072q-16 16 -33 -1l-350 -350q-17 -17 -1 -33t33 1l350 350q17 17 1 33zM1408 478v-190q0 -119 -84.5 -203.5t-203.5 -84.5h-832q-119 0 -203.5 84.5t-84.5 203.5v832q0 119 84.5 203.5t203.5 84.5h832 q63 0 117 -25q15 -7 18 -23q3 -17 -9 -29l-49 -49q-14 -14 -32 -8q-23 6 -45 6h-832q-66 0 -113 -47t-47 -113v-832q0 -66 47 -113t113 -47h832q66 0 113 47t47 113v126q0 13 9 22l64 64q15 15 35 7t20 -29zM1312 1216l288 -288l-672 -672h-288v288zM1756 1084l-92 -92 l-288 288l92 92q28 28 68 28t68 -28l152 -152q28 -28 28 -68t-28 -68z" />
<glyph unicode="&#xf045;" horiz-adv-x="1664" d="M1408 547v-259q0 -119 -84.5 -203.5t-203.5 -84.5h-832q-119 0 -203.5 84.5t-84.5 203.5v832q0 119 84.5 203.5t203.5 84.5h255v0q13 0 22.5 -9.5t9.5 -22.5q0 -27 -26 -32q-77 -26 -133 -60q-10 -4 -16 -4h-112q-66 0 -113 -47t-47 -113v-832q0 -66 47 -113t113 -47h832 q66 0 113 47t47 113v214q0 19 18 29q28 13 54 37q16 16 35 8q21 -9 21 -29zM1645 1043l-384 -384q-18 -19 -45 -19q-12 0 -25 5q-39 17 -39 59v192h-160q-323 0 -438 -131q-119 -137 -74 -473q3 -23 -20 -34q-8 -2 -12 -2q-16 0 -26 13q-10 14 -21 31t-39.5 68.5t-49.5 99.5 t-38.5 114t-17.5 122q0 49 3.5 91t14 90t28 88t47 81.5t68.5 74t94.5 61.5t124.5 48.5t159.5 30.5t196.5 11h160v192q0 42 39 59q13 5 25 5q26 0 45 -19l384 -384q19 -19 19 -45t-19 -45z" />
<glyph unicode="&#xf046;" horiz-adv-x="1664" d="M1408 606v-318q0 -119 -84.5 -203.5t-203.5 -84.5h-832q-119 0 -203.5 84.5t-84.5 203.5v832q0 119 84.5 203.5t203.5 84.5h832q63 0 117 -25q15 -7 18 -23q3 -17 -9 -29l-49 -49q-10 -10 -23 -10q-3 0 -9 2q-23 6 -45 6h-832q-66 0 -113 -47t-47 -113v-832 q0 -66 47 -113t113 -47h832q66 0 113 47t47 113v254q0 13 9 22l64 64q10 10 23 10q6 0 12 -3q20 -8 20 -29zM1639 1095l-814 -814q-24 -24 -57 -24t-57 24l-430 430q-24 24 -24 57t24 57l110 110q24 24 57 24t57 -24l263 -263l647 647q24 24 57 24t57 -24l110 -110 q24 -24 24 -57t-24 -57z" />
<glyph unicode="&#xf047;" horiz-adv-x="1792" d="M1792 640q0 -26 -19 -45l-256 -256q-19 -19 -45 -19t-45 19t-19 45v128h-384v-384h128q26 0 45 -19t19 -45t-19 -45l-256 -256q-19 -19 -45 -19t-45 19l-256 256q-19 19 -19 45t19 45t45 19h128v384h-384v-128q0 -26 -19 -45t-45 -19t-45 19l-256 256q-19 19 -19 45 t19 45l256 256q19 19 45 19t45 -19t19 -45v-128h384v384h-128q-26 0 -45 19t-19 45t19 45l256 256q19 19 45 19t45 -19l256 -256q19 -19 19 -45t-19 -45t-45 -19h-128v-384h384v128q0 26 19 45t45 19t45 -19l256 -256q19 -19 19 -45z" />
<glyph unicode="&#xf048;" horiz-adv-x="1024" d="M979 1395q19 19 32 13t13 -32v-1472q0 -26 -13 -32t-32 13l-710 710q-9 9 -13 19v-678q0 -26 -19 -45t-45 -19h-128q-26 0 -45 19t-19 45v1408q0 26 19 45t45 19h128q26 0 45 -19t19 -45v-678q4 11 13 19z" />
<glyph unicode="&#xf049;" horiz-adv-x="1792" d="M1747 1395q19 19 32 13t13 -32v-1472q0 -26 -13 -32t-32 13l-710 710q-9 9 -13 19v-710q0 -26 -13 -32t-32 13l-710 710q-9 9 -13 19v-678q0 -26 -19 -45t-45 -19h-128q-26 0 -45 19t-19 45v1408q0 26 19 45t45 19h128q26 0 45 -19t19 -45v-678q4 11 13 19l710 710 q19 19 32 13t13 -32v-710q4 11 13 19z" />
<glyph unicode="&#xf04a;" horiz-adv-x="1664" d="M1619 1395q19 19 32 13t13 -32v-1472q0 -26 -13 -32t-32 13l-710 710q-8 9 -13 19v-710q0 -26 -13 -32t-32 13l-710 710q-19 19 -19 45t19 45l710 710q19 19 32 13t13 -32v-710q5 11 13 19z" />
<glyph unicode="&#xf04b;" horiz-adv-x="1408" d="M1384 609l-1328 -738q-23 -13 -39.5 -3t-16.5 36v1472q0 26 16.5 36t39.5 -3l1328 -738q23 -13 23 -31t-23 -31z" />
<glyph unicode="&#xf04c;" d="M1536 1344v-1408q0 -26 -19 -45t-45 -19h-512q-26 0 -45 19t-19 45v1408q0 26 19 45t45 19h512q26 0 45 -19t19 -45zM640 1344v-1408q0 -26 -19 -45t-45 -19h-512q-26 0 -45 19t-19 45v1408q0 26 19 45t45 19h512q26 0 45 -19t19 -45z" />
<glyph unicode="&#xf04d;" d="M1536 1344v-1408q0 -26 -19 -45t-45 -19h-1408q-26 0 -45 19t-19 45v1408q0 26 19 45t45 19h1408q26 0 45 -19t19 -45z" />
<glyph unicode="&#xf04e;" horiz-adv-x="1664" d="M45 -115q-19 -19 -32 -13t-13 32v1472q0 26 13 32t32 -13l710 -710q8 -8 13 -19v710q0 26 13 32t32 -13l710 -710q19 -19 19 -45t-19 -45l-710 -710q-19 -19 -32 -13t-13 32v710q-5 -10 -13 -19z" />
<glyph unicode="&#xf050;" horiz-adv-x="1792" d="M45 -115q-19 -19 -32 -13t-13 32v1472q0 26 13 32t32 -13l710 -710q8 -8 13 -19v710q0 26 13 32t32 -13l710 -710q8 -8 13 -19v678q0 26 19 45t45 19h128q26 0 45 -19t19 -45v-1408q0 -26 -19 -45t-45 -19h-128q-26 0 -45 19t-19 45v678q-5 -10 -13 -19l-710 -710 q-19 -19 -32 -13t-13 32v710q-5 -10 -13 -19z" />
<glyph unicode="&#xf051;" horiz-adv-x="1024" d="M45 -115q-19 -19 -32 -13t-13 32v1472q0 26 13 32t32 -13l710 -710q8 -8 13 -19v678q0 26 19 45t45 19h128q26 0 45 -19t19 -45v-1408q0 -26 -19 -45t-45 -19h-128q-26 0 -45 19t-19 45v678q-5 -10 -13 -19z" />
<glyph unicode="&#xf052;" horiz-adv-x="1538" d="M14 557l710 710q19 19 45 19t45 -19l710 -710q19 -19 13 -32t-32 -13h-1472q-26 0 -32 13t13 32zM1473 0h-1408q-26 0 -45 19t-19 45v256q0 26 19 45t45 19h1408q26 0 45 -19t19 -45v-256q0 -26 -19 -45t-45 -19z" />
<glyph unicode="&#xf053;" horiz-adv-x="1280" d="M1171 1235l-531 -531l531 -531q19 -19 19 -45t-19 -45l-166 -166q-19 -19 -45 -19t-45 19l-742 742q-19 19 -19 45t19 45l742 742q19 19 45 19t45 -19l166 -166q19 -19 19 -45t-19 -45z" />
<glyph unicode="&#xf054;" horiz-adv-x="1280" d="M1107 659l-742 -742q-19 -19 -45 -19t-45 19l-166 166q-19 19 -19 45t19 45l531 531l-531 531q-19 19 -19 45t19 45l166 166q19 19 45 19t45 -19l742 -742q19 -19 19 -45t-19 -45z" />
<glyph unicode="&#xf055;" d="M1216 576v128q0 26 -19 45t-45 19h-256v256q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-256h-256q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h256v-256q0 -26 19 -45t45 -19h128q26 0 45 19t19 45v256h256q26 0 45 19t19 45zM1536 640q0 -209 -103 -385.5 t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
<glyph unicode="&#xf056;" d="M1216 576v128q0 26 -19 45t-45 19h-768q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h768q26 0 45 19t19 45zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5 t103 -385.5z" />
<glyph unicode="&#xf057;" d="M1149 414q0 26 -19 45l-181 181l181 181q19 19 19 45q0 27 -19 46l-90 90q-19 19 -46 19q-26 0 -45 -19l-181 -181l-181 181q-19 19 -45 19q-27 0 -46 -19l-90 -90q-19 -19 -19 -46q0 -26 19 -45l181 -181l-181 -181q-19 -19 -19 -45q0 -27 19 -46l90 -90q19 -19 46 -19 q26 0 45 19l181 181l181 -181q19 -19 45 -19q27 0 46 19l90 90q19 19 19 46zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
<glyph unicode="&#xf058;" d="M1284 802q0 28 -18 46l-91 90q-19 19 -45 19t-45 -19l-408 -407l-226 226q-19 19 -45 19t-45 -19l-91 -90q-18 -18 -18 -46q0 -27 18 -45l362 -362q19 -19 45 -19q27 0 46 19l543 543q18 18 18 45zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103 t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
<glyph unicode="&#xf059;" d="M896 160v192q0 14 -9 23t-23 9h-192q-14 0 -23 -9t-9 -23v-192q0 -14 9 -23t23 -9h192q14 0 23 9t9 23zM1152 832q0 88 -55.5 163t-138.5 116t-170 41q-243 0 -371 -213q-15 -24 8 -42l132 -100q7 -6 19 -6q16 0 25 12q53 68 86 92q34 24 86 24q48 0 85.5 -26t37.5 -59 q0 -38 -20 -61t-68 -45q-63 -28 -115.5 -86.5t-52.5 -125.5v-36q0 -14 9 -23t23 -9h192q14 0 23 9t9 23q0 19 21.5 49.5t54.5 49.5q32 18 49 28.5t46 35t44.5 48t28 60.5t12.5 81zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5 t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
<glyph unicode="&#xf05a;" d="M1024 160v160q0 14 -9 23t-23 9h-96v512q0 14 -9 23t-23 9h-320q-14 0 -23 -9t-9 -23v-160q0 -14 9 -23t23 -9h96v-320h-96q-14 0 -23 -9t-9 -23v-160q0 -14 9 -23t23 -9h448q14 0 23 9t9 23zM896 1056v160q0 14 -9 23t-23 9h-192q-14 0 -23 -9t-9 -23v-160q0 -14 9 -23 t23 -9h192q14 0 23 9t9 23zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
<glyph unicode="&#xf05b;" d="M1197 512h-109q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h109q-32 108 -112.5 188.5t-188.5 112.5v-109q0 -26 -19 -45t-45 -19h-128q-26 0 -45 19t-19 45v109q-108 -32 -188.5 -112.5t-112.5 -188.5h109q26 0 45 -19t19 -45v-128q0 -26 -19 -45t-45 -19h-109 q32 -108 112.5 -188.5t188.5 -112.5v109q0 26 19 45t45 19h128q26 0 45 -19t19 -45v-109q108 32 188.5 112.5t112.5 188.5zM1536 704v-128q0 -26 -19 -45t-45 -19h-143q-37 -161 -154.5 -278.5t-278.5 -154.5v-143q0 -26 -19 -45t-45 -19h-128q-26 0 -45 19t-19 45v143 q-161 37 -278.5 154.5t-154.5 278.5h-143q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h143q37 161 154.5 278.5t278.5 154.5v143q0 26 19 45t45 19h128q26 0 45 -19t19 -45v-143q161 -37 278.5 -154.5t154.5 -278.5h143q26 0 45 -19t19 -45z" />
<glyph unicode="&#xf05c;" d="M1097 457l-146 -146q-10 -10 -23 -10t-23 10l-137 137l-137 -137q-10 -10 -23 -10t-23 10l-146 146q-10 10 -10 23t10 23l137 137l-137 137q-10 10 -10 23t10 23l146 146q10 10 23 10t23 -10l137 -137l137 137q10 10 23 10t23 -10l146 -146q10 -10 10 -23t-10 -23 l-137 -137l137 -137q10 -10 10 -23t-10 -23zM1312 640q0 148 -73 273t-198 198t-273 73t-273 -73t-198 -198t-73 -273t73 -273t198 -198t273 -73t273 73t198 198t73 273zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5 t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
<glyph unicode="&#xf05d;" d="M1171 723l-422 -422q-19 -19 -45 -19t-45 19l-294 294q-19 19 -19 45t19 45l102 102q19 19 45 19t45 -19l147 -147l275 275q19 19 45 19t45 -19l102 -102q19 -19 19 -45t-19 -45zM1312 640q0 148 -73 273t-198 198t-273 73t-273 -73t-198 -198t-73 -273t73 -273t198 -198 t273 -73t273 73t198 198t73 273zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
<glyph unicode="&#xf05e;" d="M1312 643q0 161 -87 295l-754 -753q137 -89 297 -89q111 0 211.5 43.5t173.5 116.5t116 174.5t43 212.5zM313 344l755 754q-135 91 -300 91q-148 0 -273 -73t-198 -199t-73 -274q0 -162 89 -299zM1536 643q0 -157 -61 -300t-163.5 -246t-245 -164t-298.5 -61t-298.5 61 t-245 164t-163.5 246t-61 300t61 299.5t163.5 245.5t245 164t298.5 61t298.5 -61t245 -164t163.5 -245.5t61 -299.5z" />
<glyph unicode="&#xf060;" d="M1536 640v-128q0 -53 -32.5 -90.5t-84.5 -37.5h-704l293 -294q38 -36 38 -90t-38 -90l-75 -76q-37 -37 -90 -37q-52 0 -91 37l-651 652q-37 37 -37 90q0 52 37 91l651 650q38 38 91 38q52 0 90 -38l75 -74q38 -38 38 -91t-38 -91l-293 -293h704q52 0 84.5 -37.5 t32.5 -90.5z" />
<glyph unicode="&#xf061;" d="M1472 576q0 -54 -37 -91l-651 -651q-39 -37 -91 -37q-51 0 -90 37l-75 75q-38 38 -38 91t38 91l293 293h-704q-52 0 -84.5 37.5t-32.5 90.5v128q0 53 32.5 90.5t84.5 37.5h704l-293 294q-38 36 -38 90t38 90l75 75q38 38 90 38q53 0 91 -38l651 -651q37 -35 37 -90z" />
<glyph unicode="&#xf062;" horiz-adv-x="1664" d="M1611 565q0 -51 -37 -90l-75 -75q-38 -38 -91 -38q-54 0 -90 38l-294 293v-704q0 -52 -37.5 -84.5t-90.5 -32.5h-128q-53 0 -90.5 32.5t-37.5 84.5v704l-294 -293q-36 -38 -90 -38t-90 38l-75 75q-38 38 -38 90q0 53 38 91l651 651q35 37 90 37q54 0 91 -37l651 -651 q37 -39 37 -91z" />
<glyph unicode="&#xf063;" horiz-adv-x="1664" d="M1611 704q0 -53 -37 -90l-651 -652q-39 -37 -91 -37q-53 0 -90 37l-651 652q-38 36 -38 90q0 53 38 91l74 75q39 37 91 37q53 0 90 -37l294 -294v704q0 52 38 90t90 38h128q52 0 90 -38t38 -90v-704l294 294q37 37 90 37q52 0 91 -37l75 -75q37 -39 37 -91z" />
<glyph unicode="&#xf064;" horiz-adv-x="1792" d="M1792 896q0 -26 -19 -45l-512 -512q-19 -19 -45 -19t-45 19t-19 45v256h-224q-98 0 -175.5 -6t-154 -21.5t-133 -42.5t-105.5 -69.5t-80 -101t-48.5 -138.5t-17.5 -181q0 -55 5 -123q0 -6 2.5 -23.5t2.5 -26.5q0 -15 -8.5 -25t-23.5 -10q-16 0 -28 17q-7 9 -13 22 t-13.5 30t-10.5 24q-127 285 -127 451q0 199 53 333q162 403 875 403h224v256q0 26 19 45t45 19t45 -19l512 -512q19 -19 19 -45z" />
<glyph unicode="&#xf065;" d="M755 480q0 -13 -10 -23l-332 -332l144 -144q19 -19 19 -45t-19 -45t-45 -19h-448q-26 0 -45 19t-19 45v448q0 26 19 45t45 19t45 -19l144 -144l332 332q10 10 23 10t23 -10l114 -114q10 -10 10 -23zM1536 1344v-448q0 -26 -19 -45t-45 -19t-45 19l-144 144l-332 -332 q-10 -10 -23 -10t-23 10l-114 114q-10 10 -10 23t10 23l332 332l-144 144q-19 19 -19 45t19 45t45 19h448q26 0 45 -19t19 -45z" />
<glyph unicode="&#xf066;" d="M768 576v-448q0 -26 -19 -45t-45 -19t-45 19l-144 144l-332 -332q-10 -10 -23 -10t-23 10l-114 114q-10 10 -10 23t10 23l332 332l-144 144q-19 19 -19 45t19 45t45 19h448q26 0 45 -19t19 -45zM1523 1248q0 -13 -10 -23l-332 -332l144 -144q19 -19 19 -45t-19 -45 t-45 -19h-448q-26 0 -45 19t-19 45v448q0 26 19 45t45 19t45 -19l144 -144l332 332q10 10 23 10t23 -10l114 -114q10 -10 10 -23z" />
<glyph unicode="&#xf067;" horiz-adv-x="1408" d="M1408 800v-192q0 -40 -28 -68t-68 -28h-416v-416q0 -40 -28 -68t-68 -28h-192q-40 0 -68 28t-28 68v416h-416q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h416v416q0 40 28 68t68 28h192q40 0 68 -28t28 -68v-416h416q40 0 68 -28t28 -68z" />
<glyph unicode="&#xf068;" horiz-adv-x="1408" d="M1408 800v-192q0 -40 -28 -68t-68 -28h-1216q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h1216q40 0 68 -28t28 -68z" />
<glyph unicode="&#xf069;" horiz-adv-x="1664" d="M1482 486q46 -26 59.5 -77.5t-12.5 -97.5l-64 -110q-26 -46 -77.5 -59.5t-97.5 12.5l-266 153v-307q0 -52 -38 -90t-90 -38h-128q-52 0 -90 38t-38 90v307l-266 -153q-46 -26 -97.5 -12.5t-77.5 59.5l-64 110q-26 46 -12.5 97.5t59.5 77.5l266 154l-266 154 q-46 26 -59.5 77.5t12.5 97.5l64 110q26 46 77.5 59.5t97.5 -12.5l266 -153v307q0 52 38 90t90 38h128q52 0 90 -38t38 -90v-307l266 153q46 26 97.5 12.5t77.5 -59.5l64 -110q26 -46 12.5 -97.5t-59.5 -77.5l-266 -154z" />
<glyph unicode="&#xf06a;" d="M768 1408q209 0 385.5 -103t279.5 -279.5t103 -385.5t-103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103zM896 161v190q0 14 -9 23.5t-22 9.5h-192q-13 0 -23 -10t-10 -23v-190q0 -13 10 -23t23 -10h192 q13 0 22 9.5t9 23.5zM894 505l18 621q0 12 -10 18q-10 8 -24 8h-220q-14 0 -24 -8q-10 -6 -10 -18l17 -621q0 -10 10 -17.5t24 -7.5h185q14 0 23.5 7.5t10.5 17.5z" />
<glyph unicode="&#xf06b;" d="M928 180v56v468v192h-320v-192v-468v-56q0 -25 18 -38.5t46 -13.5h192q28 0 46 13.5t18 38.5zM472 1024h195l-126 161q-26 31 -69 31q-40 0 -68 -28t-28 -68t28 -68t68 -28zM1160 1120q0 40 -28 68t-68 28q-43 0 -69 -31l-125 -161h194q40 0 68 28t28 68zM1536 864v-320 q0 -14 -9 -23t-23 -9h-96v-416q0 -40 -28 -68t-68 -28h-1088q-40 0 -68 28t-28 68v416h-96q-14 0 -23 9t-9 23v320q0 14 9 23t23 9h440q-93 0 -158.5 65.5t-65.5 158.5t65.5 158.5t158.5 65.5q107 0 168 -77l128 -165l128 165q61 77 168 77q93 0 158.5 -65.5t65.5 -158.5 t-65.5 -158.5t-158.5 -65.5h440q14 0 23 -9t9 -23z" />
<glyph unicode="&#xf06c;" horiz-adv-x="1792" d="M1280 832q0 26 -19 45t-45 19q-172 0 -318 -49.5t-259.5 -134t-235.5 -219.5q-19 -21 -19 -45q0 -26 19 -45t45 -19q24 0 45 19q27 24 74 71t67 66q137 124 268.5 176t313.5 52q26 0 45 19t19 45zM1792 1030q0 -95 -20 -193q-46 -224 -184.5 -383t-357.5 -268 q-214 -108 -438 -108q-148 0 -286 47q-15 5 -88 42t-96 37q-16 0 -39.5 -32t-45 -70t-52.5 -70t-60 -32q-30 0 -51 11t-31 24t-27 42q-2 4 -6 11t-5.5 10t-3 9.5t-1.5 13.5q0 35 31 73.5t68 65.5t68 56t31 48q0 4 -14 38t-16 44q-9 51 -9 104q0 115 43.5 220t119 184.5 t170.5 139t204 95.5q55 18 145 25.5t179.5 9t178.5 6t163.5 24t113.5 56.5l29.5 29.5t29.5 28t27 20t36.5 16t43.5 4.5q39 0 70.5 -46t47.5 -112t24 -124t8 -96z" />
<glyph unicode="&#xf06d;" horiz-adv-x="1408" d="M1408 -160v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-1344q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h1344q13 0 22.5 -9.5t9.5 -22.5zM1152 896q0 -78 -24.5 -144t-64 -112.5t-87.5 -88t-96 -77.5t-87.5 -72t-64 -81.5t-24.5 -96.5q0 -96 67 -224l-4 1l1 -1 q-90 41 -160 83t-138.5 100t-113.5 122.5t-72.5 150.5t-27.5 184q0 78 24.5 144t64 112.5t87.5 88t96 77.5t87.5 72t64 81.5t24.5 96.5q0 94 -66 224l3 -1l-1 1q90 -41 160 -83t138.5 -100t113.5 -122.5t72.5 -150.5t27.5 -184z" />
<glyph unicode="&#xf06e;" horiz-adv-x="1792" d="M1664 576q-152 236 -381 353q61 -104 61 -225q0 -185 -131.5 -316.5t-316.5 -131.5t-316.5 131.5t-131.5 316.5q0 121 61 225q-229 -117 -381 -353q133 -205 333.5 -326.5t434.5 -121.5t434.5 121.5t333.5 326.5zM944 960q0 20 -14 34t-34 14q-125 0 -214.5 -89.5 t-89.5 -214.5q0 -20 14 -34t34 -14t34 14t14 34q0 86 61 147t147 61q20 0 34 14t14 34zM1792 576q0 -34 -20 -69q-140 -230 -376.5 -368.5t-499.5 -138.5t-499.5 139t-376.5 368q-20 35 -20 69t20 69q140 229 376.5 368t499.5 139t499.5 -139t376.5 -368q20 -35 20 -69z" />
<glyph unicode="&#xf070;" horiz-adv-x="1792" d="M555 201l78 141q-87 63 -136 159t-49 203q0 121 61 225q-229 -117 -381 -353q167 -258 427 -375zM944 960q0 20 -14 34t-34 14q-125 0 -214.5 -89.5t-89.5 -214.5q0 -20 14 -34t34 -14t34 14t14 34q0 86 61 147t147 61q20 0 34 14t14 34zM1307 1151q0 -7 -1 -9 q-105 -188 -315 -566t-316 -567l-49 -89q-10 -16 -28 -16q-12 0 -134 70q-16 10 -16 28q0 12 44 87q-143 65 -263.5 173t-208.5 245q-20 31 -20 69t20 69q153 235 380 371t496 136q89 0 180 -17l54 97q10 16 28 16q5 0 18 -6t31 -15.5t33 -18.5t31.5 -18.5t19.5 -11.5 q16 -10 16 -27zM1344 704q0 -139 -79 -253.5t-209 -164.5l280 502q8 -45 8 -84zM1792 576q0 -35 -20 -69q-39 -64 -109 -145q-150 -172 -347.5 -267t-419.5 -95l74 132q212 18 392.5 137t301.5 307q-115 179 -282 294l63 112q95 -64 182.5 -153t144.5 -184q20 -34 20 -69z " />
<glyph unicode="&#xf071;" horiz-adv-x="1792" d="M1024 161v190q0 14 -9.5 23.5t-22.5 9.5h-192q-13 0 -22.5 -9.5t-9.5 -23.5v-190q0 -14 9.5 -23.5t22.5 -9.5h192q13 0 22.5 9.5t9.5 23.5zM1022 535l18 459q0 12 -10 19q-13 11 -24 11h-220q-11 0 -24 -11q-10 -7 -10 -21l17 -457q0 -10 10 -16.5t24 -6.5h185 q14 0 23.5 6.5t10.5 16.5zM1008 1469l768 -1408q35 -63 -2 -126q-17 -29 -46.5 -46t-63.5 -17h-1536q-34 0 -63.5 17t-46.5 46q-37 63 -2 126l768 1408q17 31 47 49t65 18t65 -18t47 -49z" />
<glyph unicode="&#xf072;" horiz-adv-x="1408" d="M1376 1376q44 -52 12 -148t-108 -172l-161 -161l160 -696q5 -19 -12 -33l-128 -96q-7 -6 -19 -6q-4 0 -7 1q-15 3 -21 16l-279 508l-259 -259l53 -194q5 -17 -8 -31l-96 -96q-9 -9 -23 -9h-2q-15 2 -24 13l-189 252l-252 189q-11 7 -13 23q-1 13 9 25l96 97q9 9 23 9 q6 0 8 -1l194 -53l259 259l-508 279q-14 8 -17 24q-2 16 9 27l128 128q14 13 30 8l665 -159l160 160q76 76 172 108t148 -12z" />
<glyph unicode="&#xf073;" horiz-adv-x="1664" d="M128 -128h288v288h-288v-288zM480 -128h320v288h-320v-288zM128 224h288v320h-288v-320zM480 224h320v320h-320v-320zM128 608h288v288h-288v-288zM864 -128h320v288h-320v-288zM480 608h320v288h-320v-288zM1248 -128h288v288h-288v-288zM864 224h320v320h-320v-320z M512 1088v288q0 13 -9.5 22.5t-22.5 9.5h-64q-13 0 -22.5 -9.5t-9.5 -22.5v-288q0 -13 9.5 -22.5t22.5 -9.5h64q13 0 22.5 9.5t9.5 22.5zM1248 224h288v320h-288v-320zM864 608h320v288h-320v-288zM1248 608h288v288h-288v-288zM1280 1088v288q0 13 -9.5 22.5t-22.5 9.5h-64 q-13 0 -22.5 -9.5t-9.5 -22.5v-288q0 -13 9.5 -22.5t22.5 -9.5h64q13 0 22.5 9.5t9.5 22.5zM1664 1152v-1280q0 -52 -38 -90t-90 -38h-1408q-52 0 -90 38t-38 90v1280q0 52 38 90t90 38h128v96q0 66 47 113t113 47h64q66 0 113 -47t47 -113v-96h384v96q0 66 47 113t113 47 h64q66 0 113 -47t47 -113v-96h128q52 0 90 -38t38 -90z" />
<glyph unicode="&#xf074;" horiz-adv-x="1792" d="M666 1055q-60 -92 -137 -273q-22 45 -37 72.5t-40.5 63.5t-51 56.5t-63 35t-81.5 14.5h-224q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h224q250 0 410 -225zM1792 256q0 -14 -9 -23l-320 -320q-9 -9 -23 -9q-13 0 -22.5 9.5t-9.5 22.5v192q-32 0 -85 -0.5t-81 -1t-73 1 t-71 5t-64 10.5t-63 18.5t-58 28.5t-59 40t-55 53.5t-56 69.5q59 93 136 273q22 -45 37 -72.5t40.5 -63.5t51 -56.5t63 -35t81.5 -14.5h256v192q0 14 9 23t23 9q12 0 24 -10l319 -319q9 -9 9 -23zM1792 1152q0 -14 -9 -23l-320 -320q-9 -9 -23 -9q-13 0 -22.5 9.5t-9.5 22.5 v192h-256q-48 0 -87 -15t-69 -45t-51 -61.5t-45 -77.5q-32 -62 -78 -171q-29 -66 -49.5 -111t-54 -105t-64 -100t-74 -83t-90 -68.5t-106.5 -42t-128 -16.5h-224q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h224q48 0 87 15t69 45t51 61.5t45 77.5q32 62 78 171q29 66 49.5 111 t54 105t64 100t74 83t90 68.5t106.5 42t128 16.5h256v192q0 14 9 23t23 9q12 0 24 -10l319 -319q9 -9 9 -23z" />
<glyph unicode="&#xf075;" horiz-adv-x="1792" d="M1792 640q0 -174 -120 -321.5t-326 -233t-450 -85.5q-70 0 -145 8q-198 -175 -460 -242q-49 -14 -114 -22q-17 -2 -30.5 9t-17.5 29v1q-3 4 -0.5 12t2 10t4.5 9.5l6 9t7 8.5t8 9q7 8 31 34.5t34.5 38t31 39.5t32.5 51t27 59t26 76q-157 89 -247.5 220t-90.5 281 q0 130 71 248.5t191 204.5t286 136.5t348 50.5q244 0 450 -85.5t326 -233t120 -321.5z" />
<glyph unicode="&#xf076;" d="M1536 704v-128q0 -201 -98.5 -362t-274 -251.5t-395.5 -90.5t-395.5 90.5t-274 251.5t-98.5 362v128q0 26 19 45t45 19h384q26 0 45 -19t19 -45v-128q0 -52 23.5 -90t53.5 -57t71 -30t64 -13t44 -2t44 2t64 13t71 30t53.5 57t23.5 90v128q0 26 19 45t45 19h384 q26 0 45 -19t19 -45zM512 1344v-384q0 -26 -19 -45t-45 -19h-384q-26 0 -45 19t-19 45v384q0 26 19 45t45 19h384q26 0 45 -19t19 -45zM1536 1344v-384q0 -26 -19 -45t-45 -19h-384q-26 0 -45 19t-19 45v384q0 26 19 45t45 19h384q26 0 45 -19t19 -45z" />
<glyph unicode="&#xf077;" horiz-adv-x="1792" d="M1683 205l-166 -165q-19 -19 -45 -19t-45 19l-531 531l-531 -531q-19 -19 -45 -19t-45 19l-166 165q-19 19 -19 45.5t19 45.5l742 741q19 19 45 19t45 -19l742 -741q19 -19 19 -45.5t-19 -45.5z" />
<glyph unicode="&#xf078;" horiz-adv-x="1792" d="M1683 728l-742 -741q-19 -19 -45 -19t-45 19l-742 741q-19 19 -19 45.5t19 45.5l166 165q19 19 45 19t45 -19l531 -531l531 531q19 19 45 19t45 -19l166 -165q19 -19 19 -45.5t-19 -45.5z" />
<glyph unicode="&#xf079;" horiz-adv-x="1920" d="M1280 32q0 -13 -9.5 -22.5t-22.5 -9.5h-960q-8 0 -13.5 2t-9 7t-5.5 8t-3 11.5t-1 11.5v13v11v160v416h-192q-26 0 -45 19t-19 45q0 24 15 41l320 384q19 22 49 22t49 -22l320 -384q15 -17 15 -41q0 -26 -19 -45t-45 -19h-192v-384h576q16 0 25 -11l160 -192q7 -11 7 -21 zM1920 448q0 -24 -15 -41l-320 -384q-20 -23 -49 -23t-49 23l-320 384q-15 17 -15 41q0 26 19 45t45 19h192v384h-576q-16 0 -25 12l-160 192q-7 9 -7 20q0 13 9.5 22.5t22.5 9.5h960q8 0 13.5 -2t9 -7t5.5 -8t3 -11.5t1 -11.5v-13v-11v-160v-416h192q26 0 45 -19t19 -45z " />
<glyph unicode="&#xf07a;" horiz-adv-x="1664" d="M640 0q0 -52 -38 -90t-90 -38t-90 38t-38 90t38 90t90 38t90 -38t38 -90zM1536 0q0 -52 -38 -90t-90 -38t-90 38t-38 90t38 90t90 38t90 -38t38 -90zM1664 1088v-512q0 -24 -16.5 -42.5t-40.5 -21.5l-1044 -122q13 -60 13 -70q0 -16 -24 -64h920q26 0 45 -19t19 -45 t-19 -45t-45 -19h-1024q-26 0 -45 19t-19 45q0 11 8 31.5t16 36t21.5 40t15.5 29.5l-177 823h-204q-26 0 -45 19t-19 45t19 45t45 19h256q16 0 28.5 -6.5t19.5 -15.5t13 -24.5t8 -26t5.5 -29.5t4.5 -26h1201q26 0 45 -19t19 -45z" />
<glyph unicode="&#xf07b;" horiz-adv-x="1664" d="M1664 928v-704q0 -92 -66 -158t-158 -66h-1216q-92 0 -158 66t-66 158v960q0 92 66 158t158 66h320q92 0 158 -66t66 -158v-32h672q92 0 158 -66t66 -158z" />
<glyph unicode="&#xf07c;" horiz-adv-x="1920" d="M1879 584q0 -31 -31 -66l-336 -396q-43 -51 -120.5 -86.5t-143.5 -35.5h-1088q-34 0 -60.5 13t-26.5 43q0 31 31 66l336 396q43 51 120.5 86.5t143.5 35.5h1088q34 0 60.5 -13t26.5 -43zM1536 928v-160h-832q-94 0 -197 -47.5t-164 -119.5l-337 -396l-5 -6q0 4 -0.5 12.5 t-0.5 12.5v960q0 92 66 158t158 66h320q92 0 158 -66t66 -158v-32h544q92 0 158 -66t66 -158z" />
<glyph unicode="&#xf07d;" horiz-adv-x="768" d="M704 1216q0 -26 -19 -45t-45 -19h-128v-1024h128q26 0 45 -19t19 -45t-19 -45l-256 -256q-19 -19 -45 -19t-45 19l-256 256q-19 19 -19 45t19 45t45 19h128v1024h-128q-26 0 -45 19t-19 45t19 45l256 256q19 19 45 19t45 -19l256 -256q19 -19 19 -45z" />
<glyph unicode="&#xf07e;" horiz-adv-x="1792" d="M1792 640q0 -26 -19 -45l-256 -256q-19 -19 -45 -19t-45 19t-19 45v128h-1024v-128q0 -26 -19 -45t-45 -19t-45 19l-256 256q-19 19 -19 45t19 45l256 256q19 19 45 19t45 -19t19 -45v-128h1024v128q0 26 19 45t45 19t45 -19l256 -256q19 -19 19 -45z" />
<glyph unicode="&#xf080;" horiz-adv-x="2048" d="M640 640v-512h-256v512h256zM1024 1152v-1024h-256v1024h256zM2048 0v-128h-2048v1536h128v-1408h1920zM1408 896v-768h-256v768h256zM1792 1280v-1152h-256v1152h256z" />
<glyph unicode="&#xf081;" d="M1280 926q-56 -25 -121 -34q68 40 93 117q-65 -38 -134 -51q-61 66 -153 66q-87 0 -148.5 -61.5t-61.5 -148.5q0 -29 5 -48q-129 7 -242 65t-192 155q-29 -50 -29 -106q0 -114 91 -175q-47 1 -100 26v-2q0 -75 50 -133.5t123 -72.5q-29 -8 -51 -8q-13 0 -39 4 q21 -63 74.5 -104t121.5 -42q-116 -90 -261 -90q-26 0 -50 3q148 -94 322 -94q112 0 210 35.5t168 95t120.5 137t75 162t24.5 168.5q0 18 -1 27q63 45 105 109zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5 t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
<glyph unicode="&#xf082;" d="M1248 1408q119 0 203.5 -84.5t84.5 -203.5v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-188v595h199l30 232h-229v148q0 56 23.5 84t91.5 28l122 1v207q-63 9 -178 9q-136 0 -217.5 -80t-81.5 -226v-171h-200v-232h200v-595h-532q-119 0 -203.5 84.5t-84.5 203.5v960 q0 119 84.5 203.5t203.5 84.5h960z" />
<glyph unicode="&#xf083;" horiz-adv-x="1792" d="M928 704q0 14 -9 23t-23 9q-66 0 -113 -47t-47 -113q0 -14 9 -23t23 -9t23 9t9 23q0 40 28 68t68 28q14 0 23 9t9 23zM1152 574q0 -106 -75 -181t-181 -75t-181 75t-75 181t75 181t181 75t181 -75t75 -181zM128 0h1536v128h-1536v-128zM1280 574q0 159 -112.5 271.5 t-271.5 112.5t-271.5 -112.5t-112.5 -271.5t112.5 -271.5t271.5 -112.5t271.5 112.5t112.5 271.5zM256 1216h384v128h-384v-128zM128 1024h1536v118v138h-828l-64 -128h-644v-128zM1792 1280v-1280q0 -53 -37.5 -90.5t-90.5 -37.5h-1536q-53 0 -90.5 37.5t-37.5 90.5v1280 q0 53 37.5 90.5t90.5 37.5h1536q53 0 90.5 -37.5t37.5 -90.5z" />
<glyph unicode="&#xf084;" horiz-adv-x="1792" d="M832 1024q0 80 -56 136t-136 56t-136 -56t-56 -136q0 -42 19 -83q-41 19 -83 19q-80 0 -136 -56t-56 -136t56 -136t136 -56t136 56t56 136q0 42 -19 83q41 -19 83 -19q80 0 136 56t56 136zM1683 320q0 -17 -49 -66t-66 -49q-9 0 -28.5 16t-36.5 33t-38.5 40t-24.5 26 l-96 -96l220 -220q28 -28 28 -68q0 -42 -39 -81t-81 -39q-40 0 -68 28l-671 671q-176 -131 -365 -131q-163 0 -265.5 102.5t-102.5 265.5q0 160 95 313t248 248t313 95q163 0 265.5 -102.5t102.5 -265.5q0 -189 -131 -365l355 -355l96 96q-3 3 -26 24.5t-40 38.5t-33 36.5 t-16 28.5q0 17 49 66t66 49q13 0 23 -10q6 -6 46 -44.5t82 -79.5t86.5 -86t73 -78t28.5 -41z" />
<glyph unicode="&#xf085;" horiz-adv-x="1920" d="M896 640q0 106 -75 181t-181 75t-181 -75t-75 -181t75 -181t181 -75t181 75t75 181zM1664 128q0 52 -38 90t-90 38t-90 -38t-38 -90q0 -53 37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1664 1152q0 52 -38 90t-90 38t-90 -38t-38 -90q0 -53 37.5 -90.5t90.5 -37.5 t90.5 37.5t37.5 90.5zM1280 731v-185q0 -10 -7 -19.5t-16 -10.5l-155 -24q-11 -35 -32 -76q34 -48 90 -115q7 -10 7 -20q0 -12 -7 -19q-23 -30 -82.5 -89.5t-78.5 -59.5q-11 0 -21 7l-115 90q-37 -19 -77 -31q-11 -108 -23 -155q-7 -24 -30 -24h-186q-11 0 -20 7.5t-10 17.5 l-23 153q-34 10 -75 31l-118 -89q-7 -7 -20 -7q-11 0 -21 8q-144 133 -144 160q0 9 7 19q10 14 41 53t47 61q-23 44 -35 82l-152 24q-10 1 -17 9.5t-7 19.5v185q0 10 7 19.5t16 10.5l155 24q11 35 32 76q-34 48 -90 115q-7 11 -7 20q0 12 7 20q22 30 82 89t79 59q11 0 21 -7 l115 -90q34 18 77 32q11 108 23 154q7 24 30 24h186q11 0 20 -7.5t10 -17.5l23 -153q34 -10 75 -31l118 89q8 7 20 7q11 0 21 -8q144 -133 144 -160q0 -9 -7 -19q-12 -16 -42 -54t-45 -60q23 -48 34 -82l152 -23q10 -2 17 -10.5t7 -19.5zM1920 198v-140q0 -16 -149 -31 q-12 -27 -30 -52q51 -113 51 -138q0 -4 -4 -7q-122 -71 -124 -71q-8 0 -46 47t-52 68q-20 -2 -30 -2t-30 2q-14 -21 -52 -68t-46 -47q-2 0 -124 71q-4 3 -4 7q0 25 51 138q-18 25 -30 52q-149 15 -149 31v140q0 16 149 31q13 29 30 52q-51 113 -51 138q0 4 4 7q4 2 35 20 t59 34t30 16q8 0 46 -46.5t52 -67.5q20 2 30 2t30 -2q51 71 92 112l6 2q4 0 124 -70q4 -3 4 -7q0 -25 -51 -138q17 -23 30 -52q149 -15 149 -31zM1920 1222v-140q0 -16 -149 -31q-12 -27 -30 -52q51 -113 51 -138q0 -4 -4 -7q-122 -71 -124 -71q-8 0 -46 47t-52 68 q-20 -2 -30 -2t-30 2q-14 -21 -52 -68t-46 -47q-2 0 -124 71q-4 3 -4 7q0 25 51 138q-18 25 -30 52q-149 15 -149 31v140q0 16 149 31q13 29 30 52q-51 113 -51 138q0 4 4 7q4 2 35 20t59 34t30 16q8 0 46 -46.5t52 -67.5q20 2 30 2t30 -2q51 71 92 112l6 2q4 0 124 -70 q4 -3 4 -7q0 -25 -51 -138q17 -23 30 -52q149 -15 149 -31z" />
<glyph unicode="&#xf086;" horiz-adv-x="1792" d="M1408 768q0 -139 -94 -257t-256.5 -186.5t-353.5 -68.5q-86 0 -176 16q-124 -88 -278 -128q-36 -9 -86 -16h-3q-11 0 -20.5 8t-11.5 21q-1 3 -1 6.5t0.5 6.5t2 6l2.5 5t3.5 5.5t4 5t4.5 5t4 4.5q5 6 23 25t26 29.5t22.5 29t25 38.5t20.5 44q-124 72 -195 177t-71 224 q0 139 94 257t256.5 186.5t353.5 68.5t353.5 -68.5t256.5 -186.5t94 -257zM1792 512q0 -120 -71 -224.5t-195 -176.5q10 -24 20.5 -44t25 -38.5t22.5 -29t26 -29.5t23 -25q1 -1 4 -4.5t4.5 -5t4 -5t3.5 -5.5l2.5 -5t2 -6t0.5 -6.5t-1 -6.5q-3 -14 -13 -22t-22 -7 q-50 7 -86 16q-154 40 -278 128q-90 -16 -176 -16q-271 0 -472 132q58 -4 88 -4q161 0 309 45t264 129q125 92 192 212t67 254q0 77 -23 152q129 -71 204 -178t75 -230z" />
<glyph unicode="&#xf087;" d="M256 192q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1408 768q0 51 -39 89.5t-89 38.5h-352q0 58 48 159.5t48 160.5q0 98 -32 145t-128 47q-26 -26 -38 -85t-30.5 -125.5t-59.5 -109.5q-22 -23 -77 -91q-4 -5 -23 -30t-31.5 -41t-34.5 -42.5 t-40 -44t-38.5 -35.5t-40 -27t-35.5 -9h-32v-640h32q13 0 31.5 -3t33 -6.5t38 -11t35 -11.5t35.5 -12.5t29 -10.5q211 -73 342 -73h121q192 0 192 167q0 26 -5 56q30 16 47.5 52.5t17.5 73.5t-18 69q53 50 53 119q0 25 -10 55.5t-25 47.5q32 1 53.5 47t21.5 81zM1536 769 q0 -89 -49 -163q9 -33 9 -69q0 -77 -38 -144q3 -21 3 -43q0 -101 -60 -178q1 -139 -85 -219.5t-227 -80.5h-36h-93q-96 0 -189.5 22.5t-216.5 65.5q-116 40 -138 40h-288q-53 0 -90.5 37.5t-37.5 90.5v640q0 53 37.5 90.5t90.5 37.5h274q36 24 137 155q58 75 107 128 q24 25 35.5 85.5t30.5 126.5t62 108q39 37 90 37q84 0 151 -32.5t102 -101.5t35 -186q0 -93 -48 -192h176q104 0 180 -76t76 -179z" />
<glyph unicode="&#xf088;" d="M256 1088q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1408 512q0 35 -21.5 81t-53.5 47q15 17 25 47.5t10 55.5q0 69 -53 119q18 32 18 69t-17.5 73.5t-47.5 52.5q5 30 5 56q0 85 -49 126t-136 41h-128q-131 0 -342 -73q-5 -2 -29 -10.5 t-35.5 -12.5t-35 -11.5t-38 -11t-33 -6.5t-31.5 -3h-32v-640h32q16 0 35.5 -9t40 -27t38.5 -35.5t40 -44t34.5 -42.5t31.5 -41t23 -30q55 -68 77 -91q41 -43 59.5 -109.5t30.5 -125.5t38 -85q96 0 128 47t32 145q0 59 -48 160.5t-48 159.5h352q50 0 89 38.5t39 89.5z M1536 511q0 -103 -76 -179t-180 -76h-176q48 -99 48 -192q0 -118 -35 -186q-35 -69 -102 -101.5t-151 -32.5q-51 0 -90 37q-34 33 -54 82t-25.5 90.5t-17.5 84.5t-31 64q-48 50 -107 127q-101 131 -137 155h-274q-53 0 -90.5 37.5t-37.5 90.5v640q0 53 37.5 90.5t90.5 37.5 h288q22 0 138 40q128 44 223 66t200 22h112q140 0 226.5 -79t85.5 -216v-5q60 -77 60 -178q0 -22 -3 -43q38 -67 38 -144q0 -36 -9 -69q49 -74 49 -163z" />
<glyph unicode="&#xf089;" horiz-adv-x="896" d="M832 1504v-1339l-449 -236q-22 -12 -40 -12q-21 0 -31.5 14.5t-10.5 35.5q0 6 2 20l86 500l-364 354q-25 27 -25 48q0 37 56 46l502 73l225 455q19 41 49 41z" />
<glyph unicode="&#xf08a;" horiz-adv-x="1792" d="M1664 940q0 81 -21.5 143t-55 98.5t-81.5 59.5t-94 31t-98 8t-112 -25.5t-110.5 -64t-86.5 -72t-60 -61.5q-18 -22 -49 -22t-49 22q-24 28 -60 61.5t-86.5 72t-110.5 64t-112 25.5t-98 -8t-94 -31t-81.5 -59.5t-55 -98.5t-21.5 -143q0 -168 187 -355l581 -560l580 559 q188 188 188 356zM1792 940q0 -221 -229 -450l-623 -600q-18 -18 -44 -18t-44 18l-624 602q-10 8 -27.5 26t-55.5 65.5t-68 97.5t-53.5 121t-23.5 138q0 220 127 344t351 124q62 0 126.5 -21.5t120 -58t95.5 -68.5t76 -68q36 36 76 68t95.5 68.5t120 58t126.5 21.5 q224 0 351 -124t127 -344z" />
<glyph unicode="&#xf08b;" horiz-adv-x="1664" d="M640 96q0 -4 1 -20t0.5 -26.5t-3 -23.5t-10 -19.5t-20.5 -6.5h-320q-119 0 -203.5 84.5t-84.5 203.5v704q0 119 84.5 203.5t203.5 84.5h320q13 0 22.5 -9.5t9.5 -22.5q0 -4 1 -20t0.5 -26.5t-3 -23.5t-10 -19.5t-20.5 -6.5h-320q-66 0 -113 -47t-47 -113v-704 q0 -66 47 -113t113 -47h288h11h13t11.5 -1t11.5 -3t8 -5.5t7 -9t2 -13.5zM1568 640q0 -26 -19 -45l-544 -544q-19 -19 -45 -19t-45 19t-19 45v288h-448q-26 0 -45 19t-19 45v384q0 26 19 45t45 19h448v288q0 26 19 45t45 19t45 -19l544 -544q19 -19 19 -45z" />
<glyph unicode="&#xf08c;" d="M237 122h231v694h-231v-694zM483 1030q-1 52 -36 86t-93 34t-94.5 -34t-36.5 -86q0 -51 35.5 -85.5t92.5 -34.5h1q59 0 95 34.5t36 85.5zM1068 122h231v398q0 154 -73 233t-193 79q-136 0 -209 -117h2v101h-231q3 -66 0 -694h231v388q0 38 7 56q15 35 45 59.5t74 24.5 q116 0 116 -157v-371zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
<glyph unicode="&#xf08d;" horiz-adv-x="1152" d="M480 672v448q0 14 -9 23t-23 9t-23 -9t-9 -23v-448q0 -14 9 -23t23 -9t23 9t9 23zM1152 320q0 -26 -19 -45t-45 -19h-429l-51 -483q-2 -12 -10.5 -20.5t-20.5 -8.5h-1q-27 0 -32 27l-76 485h-404q-26 0 -45 19t-19 45q0 123 78.5 221.5t177.5 98.5v512q-52 0 -90 38 t-38 90t38 90t90 38h640q52 0 90 -38t38 -90t-38 -90t-90 -38v-512q99 0 177.5 -98.5t78.5 -221.5z" />
<glyph unicode="&#xf08e;" horiz-adv-x="1792" d="M1408 608v-320q0 -119 -84.5 -203.5t-203.5 -84.5h-832q-119 0 -203.5 84.5t-84.5 203.5v832q0 119 84.5 203.5t203.5 84.5h704q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-704q-66 0 -113 -47t-47 -113v-832q0 -66 47 -113t113 -47h832q66 0 113 47t47 113v320 q0 14 9 23t23 9h64q14 0 23 -9t9 -23zM1792 1472v-512q0 -26 -19 -45t-45 -19t-45 19l-176 176l-652 -652q-10 -10 -23 -10t-23 10l-114 114q-10 10 -10 23t10 23l652 652l-176 176q-19 19 -19 45t19 45t45 19h512q26 0 45 -19t19 -45z" />
<glyph unicode="&#xf090;" d="M1184 640q0 -26 -19 -45l-544 -544q-19 -19 -45 -19t-45 19t-19 45v288h-448q-26 0 -45 19t-19 45v384q0 26 19 45t45 19h448v288q0 26 19 45t45 19t45 -19l544 -544q19 -19 19 -45zM1536 992v-704q0 -119 -84.5 -203.5t-203.5 -84.5h-320q-13 0 -22.5 9.5t-9.5 22.5 q0 4 -1 20t-0.5 26.5t3 23.5t10 19.5t20.5 6.5h320q66 0 113 47t47 113v704q0 66 -47 113t-113 47h-288h-11h-13t-11.5 1t-11.5 3t-8 5.5t-7 9t-2 13.5q0 4 -1 20t-0.5 26.5t3 23.5t10 19.5t20.5 6.5h320q119 0 203.5 -84.5t84.5 -203.5z" />
<glyph unicode="&#xf091;" horiz-adv-x="1664" d="M458 653q-74 162 -74 371h-256v-96q0 -78 94.5 -162t235.5 -113zM1536 928v96h-256q0 -209 -74 -371q141 29 235.5 113t94.5 162zM1664 1056v-128q0 -71 -41.5 -143t-112 -130t-173 -97.5t-215.5 -44.5q-42 -54 -95 -95q-38 -34 -52.5 -72.5t-14.5 -89.5q0 -54 30.5 -91 t97.5 -37q75 0 133.5 -45.5t58.5 -114.5v-64q0 -14 -9 -23t-23 -9h-832q-14 0 -23 9t-9 23v64q0 69 58.5 114.5t133.5 45.5q67 0 97.5 37t30.5 91q0 51 -14.5 89.5t-52.5 72.5q-53 41 -95 95q-113 5 -215.5 44.5t-173 97.5t-112 130t-41.5 143v128q0 40 28 68t68 28h288v96 q0 66 47 113t113 47h576q66 0 113 -47t47 -113v-96h288q40 0 68 -28t28 -68z" />
<glyph unicode="&#xf092;" d="M394 184q-8 -9 -20 3q-13 11 -4 19q8 9 20 -3q12 -11 4 -19zM352 245q9 -12 0 -19q-8 -6 -17 7t0 18q9 7 17 -6zM291 305q-5 -7 -13 -2q-10 5 -7 12q3 5 13 2q10 -5 7 -12zM322 271q-6 -7 -16 3q-9 11 -2 16q6 6 16 -3q9 -11 2 -16zM451 159q-4 -12 -19 -6q-17 4 -13 15 t19 7q16 -5 13 -16zM514 154q0 -11 -16 -11q-17 -2 -17 11q0 11 16 11q17 2 17 -11zM572 164q2 -10 -14 -14t-18 8t14 15q16 2 18 -9zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-224q-16 0 -24.5 1t-19.5 5t-16 14.5t-5 27.5v239q0 97 -52 142q57 6 102.5 18t94 39 t81 66.5t53 105t20.5 150.5q0 121 -79 206q37 91 -8 204q-28 9 -81 -11t-92 -44l-38 -24q-93 26 -192 26t-192 -26q-16 11 -42.5 27t-83.5 38.5t-86 13.5q-44 -113 -7 -204q-79 -85 -79 -206q0 -85 20.5 -150t52.5 -105t80.5 -67t94 -39t102.5 -18q-40 -36 -49 -103 q-21 -10 -45 -15t-57 -5t-65.5 21.5t-55.5 62.5q-19 32 -48.5 52t-49.5 24l-20 3q-21 0 -29 -4.5t-5 -11.5t9 -14t13 -12l7 -5q22 -10 43.5 -38t31.5 -51l10 -23q13 -38 44 -61.5t67 -30t69.5 -7t55.5 3.5l23 4q0 -38 0.5 -103t0.5 -68q0 -22 -11 -33.5t-22 -13t-33 -1.5 h-224q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
<glyph unicode="&#xf093;" horiz-adv-x="1664" d="M1280 64q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1536 64q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1664 288v-320q0 -40 -28 -68t-68 -28h-1472q-40 0 -68 28t-28 68v320q0 40 28 68t68 28h427q21 -56 70.5 -92 t110.5 -36h256q61 0 110.5 36t70.5 92h427q40 0 68 -28t28 -68zM1339 936q-17 -40 -59 -40h-256v-448q0 -26 -19 -45t-45 -19h-256q-26 0 -45 19t-19 45v448h-256q-42 0 -59 40q-17 39 14 69l448 448q18 19 45 19t45 -19l448 -448q31 -30 14 -69z" />
<glyph unicode="&#xf094;" d="M1407 710q0 44 -7 113.5t-18 96.5q-12 30 -17 44t-9 36.5t-4 48.5q0 23 5 68.5t5 67.5q0 37 -10 55q-4 1 -13 1q-19 0 -58 -4.5t-59 -4.5q-60 0 -176 24t-175 24q-43 0 -94.5 -11.5t-85 -23.5t-89.5 -34q-137 -54 -202 -103q-96 -73 -159.5 -189.5t-88 -236t-24.5 -248.5 q0 -40 12.5 -120t12.5 -121q0 -23 -11 -66.5t-11 -65.5t12 -36.5t34 -14.5q24 0 72.5 11t73.5 11q57 0 169.5 -15.5t169.5 -15.5q181 0 284 36q129 45 235.5 152.5t166 245.5t59.5 275zM1535 712q0 -165 -70 -327.5t-196 -288t-281 -180.5q-124 -44 -326 -44 q-57 0 -170 14.5t-169 14.5q-24 0 -72.5 -14.5t-73.5 -14.5q-73 0 -123.5 55.5t-50.5 128.5q0 24 11 68t11 67q0 40 -12.5 120.5t-12.5 121.5q0 111 18 217.5t54.5 209.5t100.5 194t150 156q78 59 232 120q194 78 316 78q60 0 175.5 -24t173.5 -24q19 0 57 5t58 5 q81 0 118 -50.5t37 -134.5q0 -23 -5 -68t-5 -68q0 -10 1 -18.5t3 -17t4 -13.5t6.5 -16t6.5 -17q16 -40 25 -118.5t9 -136.5z" />
<glyph unicode="&#xf095;" horiz-adv-x="1408" d="M1408 296q0 -27 -10 -70.5t-21 -68.5q-21 -50 -122 -106q-94 -51 -186 -51q-27 0 -52.5 3.5t-57.5 12.5t-47.5 14.5t-55.5 20.5t-49 18q-98 35 -175 83q-128 79 -264.5 215.5t-215.5 264.5q-48 77 -83 175q-3 9 -18 49t-20.5 55.5t-14.5 47.5t-12.5 57.5t-3.5 52.5 q0 92 51 186q56 101 106 122q25 11 68.5 21t70.5 10q14 0 21 -3q18 -6 53 -76q11 -19 30 -54t35 -63.5t31 -53.5q3 -4 17.5 -25t21.5 -35.5t7 -28.5q0 -20 -28.5 -50t-62 -55t-62 -53t-28.5 -46q0 -9 5 -22.5t8.5 -20.5t14 -24t11.5 -19q76 -137 174 -235t235 -174 q2 -1 19 -11.5t24 -14t20.5 -8.5t22.5 -5q18 0 46 28.5t53 62t55 62t50 28.5q14 0 28.5 -7t35.5 -21.5t25 -17.5q25 -15 53.5 -31t63.5 -35t54 -30q70 -35 76 -53q3 -7 3 -21z" />
<glyph unicode="&#xf096;" horiz-adv-x="1408" d="M1120 1280h-832q-66 0 -113 -47t-47 -113v-832q0 -66 47 -113t113 -47h832q66 0 113 47t47 113v832q0 66 -47 113t-113 47zM1408 1120v-832q0 -119 -84.5 -203.5t-203.5 -84.5h-832q-119 0 -203.5 84.5t-84.5 203.5v832q0 119 84.5 203.5t203.5 84.5h832 q119 0 203.5 -84.5t84.5 -203.5z" />
<glyph unicode="&#xf097;" horiz-adv-x="1280" d="M1152 1280h-1024v-1242l423 406l89 85l89 -85l423 -406v1242zM1164 1408q23 0 44 -9q33 -13 52.5 -41t19.5 -62v-1289q0 -34 -19.5 -62t-52.5 -41q-19 -8 -44 -8q-48 0 -83 32l-441 424l-441 -424q-36 -33 -83 -33q-23 0 -44 9q-33 13 -52.5 41t-19.5 62v1289 q0 34 19.5 62t52.5 41q21 9 44 9h1048z" />
<glyph unicode="&#xf098;" d="M1280 343q0 11 -2 16q-3 8 -38.5 29.5t-88.5 49.5l-53 29q-5 3 -19 13t-25 15t-21 5q-18 0 -47 -32.5t-57 -65.5t-44 -33q-7 0 -16.5 3.5t-15.5 6.5t-17 9.5t-14 8.5q-99 55 -170.5 126.5t-126.5 170.5q-2 3 -8.5 14t-9.5 17t-6.5 15.5t-3.5 16.5q0 13 20.5 33.5t45 38.5 t45 39.5t20.5 36.5q0 10 -5 21t-15 25t-13 19q-3 6 -15 28.5t-25 45.5t-26.5 47.5t-25 40.5t-16.5 18t-16 2q-48 0 -101 -22q-46 -21 -80 -94.5t-34 -130.5q0 -16 2.5 -34t5 -30.5t9 -33t10 -29.5t12.5 -33t11 -30q60 -164 216.5 -320.5t320.5 -216.5q6 -2 30 -11t33 -12.5 t29.5 -10t33 -9t30.5 -5t34 -2.5q57 0 130.5 34t94.5 80q22 53 22 101zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
<glyph unicode="&#xf099;" horiz-adv-x="1664" d="M1620 1128q-67 -98 -162 -167q1 -14 1 -42q0 -130 -38 -259.5t-115.5 -248.5t-184.5 -210.5t-258 -146t-323 -54.5q-271 0 -496 145q35 -4 78 -4q225 0 401 138q-105 2 -188 64.5t-114 159.5q33 -5 61 -5q43 0 85 11q-112 23 -185.5 111.5t-73.5 205.5v4q68 -38 146 -41 q-66 44 -105 115t-39 154q0 88 44 163q121 -149 294.5 -238.5t371.5 -99.5q-8 38 -8 74q0 134 94.5 228.5t228.5 94.5q140 0 236 -102q109 21 205 78q-37 -115 -142 -178q93 10 186 50z" />
<glyph unicode="&#xf09a;" horiz-adv-x="1024" d="M959 1524v-264h-157q-86 0 -116 -36t-30 -108v-189h293l-39 -296h-254v-759h-306v759h-255v296h255v218q0 186 104 288.5t277 102.5q147 0 228 -12z" />
<glyph unicode="&#xf09b;" d="M1536 640q0 -251 -146.5 -451.5t-378.5 -277.5q-27 -5 -39.5 7t-12.5 30v211q0 97 -52 142q57 6 102.5 18t94 39t81 66.5t53 105t20.5 150.5q0 121 -79 206q37 91 -8 204q-28 9 -81 -11t-92 -44l-38 -24q-93 26 -192 26t-192 -26q-16 11 -42.5 27t-83.5 38.5t-86 13.5 q-44 -113 -7 -204q-79 -85 -79 -206q0 -85 20.5 -150t52.5 -105t80.5 -67t94 -39t102.5 -18q-40 -36 -49 -103q-21 -10 -45 -15t-57 -5t-65.5 21.5t-55.5 62.5q-19 32 -48.5 52t-49.5 24l-20 3q-21 0 -29 -4.5t-5 -11.5t9 -14t13 -12l7 -5q22 -10 43.5 -38t31.5 -51l10 -23 q13 -38 44 -61.5t67 -30t69.5 -7t55.5 3.5l23 4q0 -38 0.5 -89t0.5 -54q0 -18 -13 -30t-40 -7q-232 77 -378.5 277.5t-146.5 451.5q0 209 103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
<glyph unicode="&#xf09c;" horiz-adv-x="1664" d="M1664 960v-256q0 -26 -19 -45t-45 -19h-64q-26 0 -45 19t-19 45v256q0 106 -75 181t-181 75t-181 -75t-75 -181v-192h96q40 0 68 -28t28 -68v-576q0 -40 -28 -68t-68 -28h-960q-40 0 -68 28t-28 68v576q0 40 28 68t68 28h672v192q0 185 131.5 316.5t316.5 131.5 t316.5 -131.5t131.5 -316.5z" />
<glyph unicode="&#xf09d;" horiz-adv-x="1920" d="M1760 1408q66 0 113 -47t47 -113v-1216q0 -66 -47 -113t-113 -47h-1600q-66 0 -113 47t-47 113v1216q0 66 47 113t113 47h1600zM160 1280q-13 0 -22.5 -9.5t-9.5 -22.5v-224h1664v224q0 13 -9.5 22.5t-22.5 9.5h-1600zM1760 0q13 0 22.5 9.5t9.5 22.5v608h-1664v-608 q0 -13 9.5 -22.5t22.5 -9.5h1600zM256 128v128h256v-128h-256zM640 128v128h384v-128h-384z" />
<glyph unicode="&#xf09e;" horiz-adv-x="1408" d="M384 192q0 -80 -56 -136t-136 -56t-136 56t-56 136t56 136t136 56t136 -56t56 -136zM896 69q2 -28 -17 -48q-18 -21 -47 -21h-135q-25 0 -43 16.5t-20 41.5q-22 229 -184.5 391.5t-391.5 184.5q-25 2 -41.5 20t-16.5 43v135q0 29 21 47q17 17 43 17h5q160 -13 306 -80.5 t259 -181.5q114 -113 181.5 -259t80.5 -306zM1408 67q2 -27 -18 -47q-18 -20 -46 -20h-143q-26 0 -44.5 17.5t-19.5 42.5q-12 215 -101 408.5t-231.5 336t-336 231.5t-408.5 102q-25 1 -42.5 19.5t-17.5 43.5v143q0 28 20 46q18 18 44 18h3q262 -13 501.5 -120t425.5 -294 q187 -186 294 -425.5t120 -501.5z" />
<glyph unicode="&#xf0a0;" d="M1040 320q0 -33 -23.5 -56.5t-56.5 -23.5t-56.5 23.5t-23.5 56.5t23.5 56.5t56.5 23.5t56.5 -23.5t23.5 -56.5zM1296 320q0 -33 -23.5 -56.5t-56.5 -23.5t-56.5 23.5t-23.5 56.5t23.5 56.5t56.5 23.5t56.5 -23.5t23.5 -56.5zM1408 160v320q0 13 -9.5 22.5t-22.5 9.5 h-1216q-13 0 -22.5 -9.5t-9.5 -22.5v-320q0 -13 9.5 -22.5t22.5 -9.5h1216q13 0 22.5 9.5t9.5 22.5zM178 640h1180l-157 482q-4 13 -16 21.5t-26 8.5h-782q-14 0 -26 -8.5t-16 -21.5zM1536 480v-320q0 -66 -47 -113t-113 -47h-1216q-66 0 -113 47t-47 113v320q0 25 16 75 l197 606q17 53 63 86t101 33h782q55 0 101 -33t63 -86l197 -606q16 -50 16 -75z" />
<glyph unicode="&#xf0a1;" horiz-adv-x="1792" d="M1664 896q53 0 90.5 -37.5t37.5 -90.5t-37.5 -90.5t-90.5 -37.5v-384q0 -52 -38 -90t-90 -38q-417 347 -812 380q-58 -19 -91 -66t-31 -100.5t40 -92.5q-20 -33 -23 -65.5t6 -58t33.5 -55t48 -50t61.5 -50.5q-29 -58 -111.5 -83t-168.5 -11.5t-132 55.5q-7 23 -29.5 87.5 t-32 94.5t-23 89t-15 101t3.5 98.5t22 110.5h-122q-66 0 -113 47t-47 113v192q0 66 47 113t113 47h480q435 0 896 384q52 0 90 -38t38 -90v-384zM1536 292v954q-394 -302 -768 -343v-270q377 -42 768 -341z" />
<glyph unicode="&#xf0a2;" horiz-adv-x="1792" d="M912 -160q0 16 -16 16q-59 0 -101.5 42.5t-42.5 101.5q0 16 -16 16t-16 -16q0 -73 51.5 -124.5t124.5 -51.5q16 0 16 16zM246 128h1300q-266 300 -266 832q0 51 -24 105t-69 103t-121.5 80.5t-169.5 31.5t-169.5 -31.5t-121.5 -80.5t-69 -103t-24 -105q0 -532 -266 -832z M1728 128q0 -52 -38 -90t-90 -38h-448q0 -106 -75 -181t-181 -75t-181 75t-75 181h-448q-52 0 -90 38t-38 90q50 42 91 88t85 119.5t74.5 158.5t50 206t19.5 260q0 152 117 282.5t307 158.5q-8 19 -8 39q0 40 28 68t68 28t68 -28t28 -68q0 -20 -8 -39q190 -28 307 -158.5 t117 -282.5q0 -139 19.5 -260t50 -206t74.5 -158.5t85 -119.5t91 -88z" />
<glyph unicode="&#xf0a3;" d="M1376 640l138 -135q30 -28 20 -70q-12 -41 -52 -51l-188 -48l53 -186q12 -41 -19 -70q-29 -31 -70 -19l-186 53l-48 -188q-10 -40 -51 -52q-12 -2 -19 -2q-31 0 -51 22l-135 138l-135 -138q-28 -30 -70 -20q-41 11 -51 52l-48 188l-186 -53q-41 -12 -70 19q-31 29 -19 70 l53 186l-188 48q-40 10 -52 51q-10 42 20 70l138 135l-138 135q-30 28 -20 70q12 41 52 51l188 48l-53 186q-12 41 19 70q29 31 70 19l186 -53l48 188q10 41 51 51q41 12 70 -19l135 -139l135 139q29 30 70 19q41 -10 51 -51l48 -188l186 53q41 12 70 -19q31 -29 19 -70 l-53 -186l188 -48q40 -10 52 -51q10 -42 -20 -70z" />
<glyph unicode="&#xf0a4;" horiz-adv-x="1792" d="M256 192q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1664 768q0 51 -39 89.5t-89 38.5h-576q0 20 15 48.5t33 55t33 68t15 84.5q0 67 -44.5 97.5t-115.5 30.5q-24 0 -90 -139q-24 -44 -37 -65q-40 -64 -112 -145q-71 -81 -101 -106 q-69 -57 -140 -57h-32v-640h32q72 0 167 -32t193.5 -64t179.5 -32q189 0 189 167q0 26 -5 56q30 16 47.5 52.5t17.5 73.5t-18 69q53 50 53 119q0 25 -10 55.5t-25 47.5h331q52 0 90 38t38 90zM1792 769q0 -105 -75.5 -181t-180.5 -76h-169q-4 -62 -37 -119q3 -21 3 -43 q0 -101 -60 -178q1 -139 -85 -219.5t-227 -80.5q-133 0 -322 69q-164 59 -223 59h-288q-53 0 -90.5 37.5t-37.5 90.5v640q0 53 37.5 90.5t90.5 37.5h288q10 0 21.5 4.5t23.5 14t22.5 18t24 22.5t20.5 21.5t19 21.5t14 17q65 74 100 129q13 21 33 62t37 72t40.5 63t55 49.5 t69.5 17.5q125 0 206.5 -67t81.5 -189q0 -68 -22 -128h374q104 0 180 -76t76 -179z" />
<glyph unicode="&#xf0a5;" horiz-adv-x="1792" d="M1376 128h32v640h-32q-35 0 -67.5 12t-62.5 37t-50 46t-49 54q-2 3 -3.5 4.5t-4 4.5t-4.5 5q-72 81 -112 145q-14 22 -38 68q-1 3 -10.5 22.5t-18.5 36t-20 35.5t-21.5 30.5t-18.5 11.5q-71 0 -115.5 -30.5t-44.5 -97.5q0 -43 15 -84.5t33 -68t33 -55t15 -48.5h-576 q-50 0 -89 -38.5t-39 -89.5q0 -52 38 -90t90 -38h331q-15 -17 -25 -47.5t-10 -55.5q0 -69 53 -119q-18 -32 -18 -69t17.5 -73.5t47.5 -52.5q-4 -24 -4 -56q0 -85 48.5 -126t135.5 -41q84 0 183 32t194 64t167 32zM1664 192q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45 t45 -19t45 19t19 45zM1792 768v-640q0 -53 -37.5 -90.5t-90.5 -37.5h-288q-59 0 -223 -59q-190 -69 -317 -69q-142 0 -230 77.5t-87 217.5l1 5q-61 76 -61 178q0 22 3 43q-33 57 -37 119h-169q-105 0 -180.5 76t-75.5 181q0 103 76 179t180 76h374q-22 60 -22 128 q0 122 81.5 189t206.5 67q38 0 69.5 -17.5t55 -49.5t40.5 -63t37 -72t33 -62q35 -55 100 -129q2 -3 14 -17t19 -21.5t20.5 -21.5t24 -22.5t22.5 -18t23.5 -14t21.5 -4.5h288q53 0 90.5 -37.5t37.5 -90.5z" />
<glyph unicode="&#xf0a6;" d="M1280 -64q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1408 700q0 189 -167 189q-26 0 -56 -5q-16 30 -52.5 47.5t-73.5 17.5t-69 -18q-50 53 -119 53q-25 0 -55.5 -10t-47.5 -25v331q0 52 -38 90t-90 38q-51 0 -89.5 -39t-38.5 -89v-576 q-20 0 -48.5 15t-55 33t-68 33t-84.5 15q-67 0 -97.5 -44.5t-30.5 -115.5q0 -24 139 -90q44 -24 65 -37q64 -40 145 -112q81 -71 106 -101q57 -69 57 -140v-32h640v32q0 72 32 167t64 193.5t32 179.5zM1536 705q0 -133 -69 -322q-59 -164 -59 -223v-288q0 -53 -37.5 -90.5 t-90.5 -37.5h-640q-53 0 -90.5 37.5t-37.5 90.5v288q0 10 -4.5 21.5t-14 23.5t-18 22.5t-22.5 24t-21.5 20.5t-21.5 19t-17 14q-74 65 -129 100q-21 13 -62 33t-72 37t-63 40.5t-49.5 55t-17.5 69.5q0 125 67 206.5t189 81.5q68 0 128 -22v374q0 104 76 180t179 76 q105 0 181 -75.5t76 -180.5v-169q62 -4 119 -37q21 3 43 3q101 0 178 -60q139 1 219.5 -85t80.5 -227z" />
<glyph unicode="&#xf0a7;" d="M1408 576q0 84 -32 183t-64 194t-32 167v32h-640v-32q0 -35 -12 -67.5t-37 -62.5t-46 -50t-54 -49q-9 -8 -14 -12q-81 -72 -145 -112q-22 -14 -68 -38q-3 -1 -22.5 -10.5t-36 -18.5t-35.5 -20t-30.5 -21.5t-11.5 -18.5q0 -71 30.5 -115.5t97.5 -44.5q43 0 84.5 15t68 33 t55 33t48.5 15v-576q0 -50 38.5 -89t89.5 -39q52 0 90 38t38 90v331q46 -35 103 -35q69 0 119 53q32 -18 69 -18t73.5 17.5t52.5 47.5q24 -4 56 -4q85 0 126 48.5t41 135.5zM1280 1344q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1536 580 q0 -142 -77.5 -230t-217.5 -87l-5 1q-76 -61 -178 -61q-22 0 -43 3q-54 -30 -119 -37v-169q0 -105 -76 -180.5t-181 -75.5q-103 0 -179 76t-76 180v374q-54 -22 -128 -22q-121 0 -188.5 81.5t-67.5 206.5q0 38 17.5 69.5t49.5 55t63 40.5t72 37t62 33q55 35 129 100 q3 2 17 14t21.5 19t21.5 20.5t22.5 24t18 22.5t14 23.5t4.5 21.5v288q0 53 37.5 90.5t90.5 37.5h640q53 0 90.5 -37.5t37.5 -90.5v-288q0 -59 59 -223q69 -190 69 -317z" />
<glyph unicode="&#xf0a8;" d="M1280 576v128q0 26 -19 45t-45 19h-502l189 189q19 19 19 45t-19 45l-91 91q-18 18 -45 18t-45 -18l-362 -362l-91 -91q-18 -18 -18 -45t18 -45l91 -91l362 -362q18 -18 45 -18t45 18l91 91q18 18 18 45t-18 45l-189 189h502q26 0 45 19t19 45zM1536 640 q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
<glyph unicode="&#xf0a9;" d="M1285 640q0 27 -18 45l-91 91l-362 362q-18 18 -45 18t-45 -18l-91 -91q-18 -18 -18 -45t18 -45l189 -189h-502q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h502l-189 -189q-19 -19 -19 -45t19 -45l91 -91q18 -18 45 -18t45 18l362 362l91 91q18 18 18 45zM1536 640 q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
<glyph unicode="&#xf0aa;" d="M1284 641q0 27 -18 45l-362 362l-91 91q-18 18 -45 18t-45 -18l-91 -91l-362 -362q-18 -18 -18 -45t18 -45l91 -91q18 -18 45 -18t45 18l189 189v-502q0 -26 19 -45t45 -19h128q26 0 45 19t19 45v502l189 -189q19 -19 45 -19t45 19l91 91q18 18 18 45zM1536 640 q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
<glyph unicode="&#xf0ab;" d="M1284 639q0 27 -18 45l-91 91q-18 18 -45 18t-45 -18l-189 -189v502q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-502l-189 189q-19 19 -45 19t-45 -19l-91 -91q-18 -18 -18 -45t18 -45l362 -362l91 -91q18 -18 45 -18t45 18l91 91l362 362q18 18 18 45zM1536 640 q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
<glyph unicode="&#xf0ac;" d="M768 1408q209 0 385.5 -103t279.5 -279.5t103 -385.5t-103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103zM1042 887q-2 -1 -9.5 -9.5t-13.5 -9.5q2 0 4.5 5t5 11t3.5 7q6 7 22 15q14 6 52 12q34 8 51 -11 q-2 2 9.5 13t14.5 12q3 2 15 4.5t15 7.5l2 22q-12 -1 -17.5 7t-6.5 21q0 -2 -6 -8q0 7 -4.5 8t-11.5 -1t-9 -1q-10 3 -15 7.5t-8 16.5t-4 15q-2 5 -9.5 10.5t-9.5 10.5q-1 2 -2.5 5.5t-3 6.5t-4 5.5t-5.5 2.5t-7 -5t-7.5 -10t-4.5 -5q-3 2 -6 1.5t-4.5 -1t-4.5 -3t-5 -3.5 q-3 -2 -8.5 -3t-8.5 -2q15 5 -1 11q-10 4 -16 3q9 4 7.5 12t-8.5 14h5q-1 4 -8.5 8.5t-17.5 8.5t-13 6q-8 5 -34 9.5t-33 0.5q-5 -6 -4.5 -10.5t4 -14t3.5 -12.5q1 -6 -5.5 -13t-6.5 -12q0 -7 14 -15.5t10 -21.5q-3 -8 -16 -16t-16 -12q-5 -8 -1.5 -18.5t10.5 -16.5 q2 -2 1.5 -4t-3.5 -4.5t-5.5 -4t-6.5 -3.5l-3 -2q-11 -5 -20.5 6t-13.5 26q-7 25 -16 30q-23 8 -29 -1q-5 13 -41 26q-25 9 -58 4q6 1 0 15q-7 15 -19 12q3 6 4 17.5t1 13.5q3 13 12 23q1 1 7 8.5t9.5 13.5t0.5 6q35 -4 50 11q5 5 11.5 17t10.5 17q9 6 14 5.5t14.5 -5.5 t14.5 -5q14 -1 15.5 11t-7.5 20q12 -1 3 17q-5 7 -8 9q-12 4 -27 -5q-8 -4 2 -8q-1 1 -9.5 -10.5t-16.5 -17.5t-16 5q-1 1 -5.5 13.5t-9.5 13.5q-8 0 -16 -15q3 8 -11 15t-24 8q19 12 -8 27q-7 4 -20.5 5t-19.5 -4q-5 -7 -5.5 -11.5t5 -8t10.5 -5.5t11.5 -4t8.5 -3 q14 -10 8 -14q-2 -1 -8.5 -3.5t-11.5 -4.5t-6 -4q-3 -4 0 -14t-2 -14q-5 5 -9 17.5t-7 16.5q7 -9 -25 -6l-10 1q-4 0 -16 -2t-20.5 -1t-13.5 8q-4 8 0 20q1 4 4 2q-4 3 -11 9.5t-10 8.5q-46 -15 -94 -41q6 -1 12 1q5 2 13 6.5t10 5.5q34 14 42 7l5 5q14 -16 20 -25 q-7 4 -30 1q-20 -6 -22 -12q7 -12 5 -18q-4 3 -11.5 10t-14.5 11t-15 5q-16 0 -22 -1q-146 -80 -235 -222q7 -7 12 -8q4 -1 5 -9t2.5 -11t11.5 3q9 -8 3 -19q1 1 44 -27q19 -17 21 -21q3 -11 -10 -18q-1 2 -9 9t-9 4q-3 -5 0.5 -18.5t10.5 -12.5q-7 0 -9.5 -16t-2.5 -35.5 t-1 -23.5l2 -1q-3 -12 5.5 -34.5t21.5 -19.5q-13 -3 20 -43q6 -8 8 -9q3 -2 12 -7.5t15 -10t10 -10.5q4 -5 10 -22.5t14 -23.5q-2 -6 9.5 -20t10.5 -23q-1 0 -2.5 -1t-2.5 -1q3 -7 15.5 -14t15.5 -13q1 -3 2 -10t3 -11t8 -2q2 20 -24 62q-15 25 -17 29q-3 5 -5.5 15.5 t-4.5 14.5q2 0 6 -1.5t8.5 -3.5t7.5 -4t2 -3q-3 -7 2 -17.5t12 -18.5t17 -19t12 -13q6 -6 14 -19.5t0 -13.5q9 0 20 -10t17 -20q5 -8 8 -26t5 -24q2 -7 8.5 -13.5t12.5 -9.5l16 -8t13 -7q5 -2 18.5 -10.5t21.5 -11.5q10 -4 16 -4t14.5 2.5t13.5 3.5q15 2 29 -15t21 -21 q36 -19 55 -11q-2 -1 0.5 -7.5t8 -15.5t9 -14.5t5.5 -8.5q5 -6 18 -15t18 -15q6 4 7 9q-3 -8 7 -20t18 -10q14 3 14 32q-31 -15 -49 18q0 1 -2.5 5.5t-4 8.5t-2.5 8.5t0 7.5t5 3q9 0 10 3.5t-2 12.5t-4 13q-1 8 -11 20t-12 15q-5 -9 -16 -8t-16 9q0 -1 -1.5 -5.5t-1.5 -6.5 q-13 0 -15 1q1 3 2.5 17.5t3.5 22.5q1 4 5.5 12t7.5 14.5t4 12.5t-4.5 9.5t-17.5 2.5q-19 -1 -26 -20q-1 -3 -3 -10.5t-5 -11.5t-9 -7q-7 -3 -24 -2t-24 5q-13 8 -22.5 29t-9.5 37q0 10 2.5 26.5t3 25t-5.5 24.5q3 2 9 9.5t10 10.5q2 1 4.5 1.5t4.5 0t4 1.5t3 6q-1 1 -4 3 q-3 3 -4 3q7 -3 28.5 1.5t27.5 -1.5q15 -11 22 2q0 1 -2.5 9.5t-0.5 13.5q5 -27 29 -9q3 -3 15.5 -5t17.5 -5q3 -2 7 -5.5t5.5 -4.5t5 0.5t8.5 6.5q10 -14 12 -24q11 -40 19 -44q7 -3 11 -2t4.5 9.5t0 14t-1.5 12.5l-1 8v18l-1 8q-15 3 -18.5 12t1.5 18.5t15 18.5q1 1 8 3.5 t15.5 6.5t12.5 8q21 19 15 35q7 0 11 9q-1 0 -5 3t-7.5 5t-4.5 2q9 5 2 16q5 3 7.5 11t7.5 10q9 -12 21 -2q7 8 1 16q5 7 20.5 10.5t18.5 9.5q7 -2 8 2t1 12t3 12q4 5 15 9t13 5l17 11q3 4 0 4q18 -2 31 11q10 11 -6 20q3 6 -3 9.5t-15 5.5q3 1 11.5 0.5t10.5 1.5 q15 10 -7 16q-17 5 -43 -12zM879 10q206 36 351 189q-3 3 -12.5 4.5t-12.5 3.5q-18 7 -24 8q1 7 -2.5 13t-8 9t-12.5 8t-11 7q-2 2 -7 6t-7 5.5t-7.5 4.5t-8.5 2t-10 -1l-3 -1q-3 -1 -5.5 -2.5t-5.5 -3t-4 -3t0 -2.5q-21 17 -36 22q-5 1 -11 5.5t-10.5 7t-10 1.5t-11.5 -7 q-5 -5 -6 -15t-2 -13q-7 5 0 17.5t2 18.5q-3 6 -10.5 4.5t-12 -4.5t-11.5 -8.5t-9 -6.5t-8.5 -5.5t-8.5 -7.5q-3 -4 -6 -12t-5 -11q-2 4 -11.5 6.5t-9.5 5.5q2 -10 4 -35t5 -38q7 -31 -12 -48q-27 -25 -29 -40q-4 -22 12 -26q0 -7 -8 -20.5t-7 -21.5q0 -6 2 -16z" />
<glyph unicode="&#xf0ad;" horiz-adv-x="1664" d="M384 64q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1028 484l-682 -682q-37 -37 -90 -37q-52 0 -91 37l-106 108q-38 36 -38 90q0 53 38 91l681 681q39 -98 114.5 -173.5t173.5 -114.5zM1662 919q0 -39 -23 -106q-47 -134 -164.5 -217.5 t-258.5 -83.5q-185 0 -316.5 131.5t-131.5 316.5t131.5 316.5t316.5 131.5q58 0 121.5 -16.5t107.5 -46.5q16 -11 16 -28t-16 -28l-293 -169v-224l193 -107q5 3 79 48.5t135.5 81t70.5 35.5q15 0 23.5 -10t8.5 -25z" />
<glyph unicode="&#xf0ae;" horiz-adv-x="1792" d="M1024 128h640v128h-640v-128zM640 640h1024v128h-1024v-128zM1280 1152h384v128h-384v-128zM1792 320v-256q0 -26 -19 -45t-45 -19h-1664q-26 0 -45 19t-19 45v256q0 26 19 45t45 19h1664q26 0 45 -19t19 -45zM1792 832v-256q0 -26 -19 -45t-45 -19h-1664q-26 0 -45 19 t-19 45v256q0 26 19 45t45 19h1664q26 0 45 -19t19 -45zM1792 1344v-256q0 -26 -19 -45t-45 -19h-1664q-26 0 -45 19t-19 45v256q0 26 19 45t45 19h1664q26 0 45 -19t19 -45z" />
<glyph unicode="&#xf0b0;" horiz-adv-x="1408" d="M1403 1241q17 -41 -14 -70l-493 -493v-742q0 -42 -39 -59q-13 -5 -25 -5q-27 0 -45 19l-256 256q-19 19 -19 45v486l-493 493q-31 29 -14 70q17 39 59 39h1280q42 0 59 -39z" />
<glyph unicode="&#xf0b1;" horiz-adv-x="1792" d="M640 1280h512v128h-512v-128zM1792 640v-480q0 -66 -47 -113t-113 -47h-1472q-66 0 -113 47t-47 113v480h672v-160q0 -26 19 -45t45 -19h320q26 0 45 19t19 45v160h672zM1024 640v-128h-256v128h256zM1792 1120v-384h-1792v384q0 66 47 113t113 47h352v160q0 40 28 68 t68 28h576q40 0 68 -28t28 -68v-160h352q66 0 113 -47t47 -113z" />
<glyph unicode="&#xf0b2;" d="M1283 995l-355 -355l355 -355l144 144q29 31 70 14q39 -17 39 -59v-448q0 -26 -19 -45t-45 -19h-448q-42 0 -59 40q-17 39 14 69l144 144l-355 355l-355 -355l144 -144q31 -30 14 -69q-17 -40 -59 -40h-448q-26 0 -45 19t-19 45v448q0 42 40 59q39 17 69 -14l144 -144 l355 355l-355 355l-144 -144q-19 -19 -45 -19q-12 0 -24 5q-40 17 -40 59v448q0 26 19 45t45 19h448q42 0 59 -40q17 -39 -14 -69l-144 -144l355 -355l355 355l-144 144q-31 30 -14 69q17 40 59 40h448q26 0 45 -19t19 -45v-448q0 -42 -39 -59q-13 -5 -25 -5q-26 0 -45 19z " />
<glyph unicode="&#xf0c0;" horiz-adv-x="1920" d="M593 640q-162 -5 -265 -128h-134q-82 0 -138 40.5t-56 118.5q0 353 124 353q6 0 43.5 -21t97.5 -42.5t119 -21.5q67 0 133 23q-5 -37 -5 -66q0 -139 81 -256zM1664 3q0 -120 -73 -189.5t-194 -69.5h-874q-121 0 -194 69.5t-73 189.5q0 53 3.5 103.5t14 109t26.5 108.5 t43 97.5t62 81t85.5 53.5t111.5 20q10 0 43 -21.5t73 -48t107 -48t135 -21.5t135 21.5t107 48t73 48t43 21.5q61 0 111.5 -20t85.5 -53.5t62 -81t43 -97.5t26.5 -108.5t14 -109t3.5 -103.5zM640 1280q0 -106 -75 -181t-181 -75t-181 75t-75 181t75 181t181 75t181 -75 t75 -181zM1344 896q0 -159 -112.5 -271.5t-271.5 -112.5t-271.5 112.5t-112.5 271.5t112.5 271.5t271.5 112.5t271.5 -112.5t112.5 -271.5zM1920 671q0 -78 -56 -118.5t-138 -40.5h-134q-103 123 -265 128q81 117 81 256q0 29 -5 66q66 -23 133 -23q59 0 119 21.5t97.5 42.5 t43.5 21q124 0 124 -353zM1792 1280q0 -106 -75 -181t-181 -75t-181 75t-75 181t75 181t181 75t181 -75t75 -181z" />
<glyph unicode="&#xf0c1;" horiz-adv-x="1664" d="M1456 320q0 40 -28 68l-208 208q-28 28 -68 28q-42 0 -72 -32q3 -3 19 -18.5t21.5 -21.5t15 -19t13 -25.5t3.5 -27.5q0 -40 -28 -68t-68 -28q-15 0 -27.5 3.5t-25.5 13t-19 15t-21.5 21.5t-18.5 19q-33 -31 -33 -73q0 -40 28 -68l206 -207q27 -27 68 -27q40 0 68 26 l147 146q28 28 28 67zM753 1025q0 40 -28 68l-206 207q-28 28 -68 28q-39 0 -68 -27l-147 -146q-28 -28 -28 -67q0 -40 28 -68l208 -208q27 -27 68 -27q42 0 72 31q-3 3 -19 18.5t-21.5 21.5t-15 19t-13 25.5t-3.5 27.5q0 40 28 68t68 28q15 0 27.5 -3.5t25.5 -13t19 -15 t21.5 -21.5t18.5 -19q33 31 33 73zM1648 320q0 -120 -85 -203l-147 -146q-83 -83 -203 -83q-121 0 -204 85l-206 207q-83 83 -83 203q0 123 88 209l-88 88q-86 -88 -208 -88q-120 0 -204 84l-208 208q-84 84 -84 204t85 203l147 146q83 83 203 83q121 0 204 -85l206 -207 q83 -83 83 -203q0 -123 -88 -209l88 -88q86 88 208 88q120 0 204 -84l208 -208q84 -84 84 -204z" />
<glyph unicode="&#xf0c2;" horiz-adv-x="1920" d="M1920 384q0 -159 -112.5 -271.5t-271.5 -112.5h-1088q-185 0 -316.5 131.5t-131.5 316.5q0 132 71 241.5t187 163.5q-2 28 -2 43q0 212 150 362t362 150q158 0 286.5 -88t187.5 -230q70 62 166 62q106 0 181 -75t75 -181q0 -75 -41 -138q129 -30 213 -134.5t84 -239.5z " />
<glyph unicode="&#xf0c3;" horiz-adv-x="1664" d="M1527 88q56 -89 21.5 -152.5t-140.5 -63.5h-1152q-106 0 -140.5 63.5t21.5 152.5l503 793v399h-64q-26 0 -45 19t-19 45t19 45t45 19h512q26 0 45 -19t19 -45t-19 -45t-45 -19h-64v-399zM748 813l-272 -429h712l-272 429l-20 31v37v399h-128v-399v-37z" />
<glyph unicode="&#xf0c4;" horiz-adv-x="1792" d="M960 640q26 0 45 -19t19 -45t-19 -45t-45 -19t-45 19t-19 45t19 45t45 19zM1260 576l507 -398q28 -20 25 -56q-5 -35 -35 -51l-128 -64q-13 -7 -29 -7q-17 0 -31 8l-690 387l-110 -66q-8 -4 -12 -5q14 -49 10 -97q-7 -77 -56 -147.5t-132 -123.5q-132 -84 -277 -84 q-136 0 -222 78q-90 84 -79 207q7 76 56 147t131 124q132 84 278 84q83 0 151 -31q9 13 22 22l122 73l-122 73q-13 9 -22 22q-68 -31 -151 -31q-146 0 -278 84q-82 53 -131 124t-56 147q-5 59 15.5 113t63.5 93q85 79 222 79q145 0 277 -84q83 -52 132 -123t56 -148 q4 -48 -10 -97q4 -1 12 -5l110 -66l690 387q14 8 31 8q16 0 29 -7l128 -64q30 -16 35 -51q3 -36 -25 -56zM579 836q46 42 21 108t-106 117q-92 59 -192 59q-74 0 -113 -36q-46 -42 -21 -108t106 -117q92 -59 192 -59q74 0 113 36zM494 91q81 51 106 117t-21 108 q-39 36 -113 36q-100 0 -192 -59q-81 -51 -106 -117t21 -108q39 -36 113 -36q100 0 192 59zM672 704l96 -58v11q0 36 33 56l14 8l-79 47l-26 -26q-3 -3 -10 -11t-12 -12q-2 -2 -4 -3.5t-3 -2.5zM896 480l96 -32l736 576l-128 64l-768 -431v-113l-160 -96l9 -8q2 -2 7 -6 q4 -4 11 -12t11 -12l26 -26zM1600 64l128 64l-520 408l-177 -138q-2 -3 -13 -7z" />
<glyph unicode="&#xf0c5;" horiz-adv-x="1792" d="M1696 1152q40 0 68 -28t28 -68v-1216q0 -40 -28 -68t-68 -28h-960q-40 0 -68 28t-28 68v288h-544q-40 0 -68 28t-28 68v672q0 40 20 88t48 76l408 408q28 28 76 48t88 20h416q40 0 68 -28t28 -68v-328q68 40 128 40h416zM1152 939l-299 -299h299v299zM512 1323l-299 -299 h299v299zM708 676l316 316v416h-384v-416q0 -40 -28 -68t-68 -28h-416v-640h512v256q0 40 20 88t48 76zM1664 -128v1152h-384v-416q0 -40 -28 -68t-68 -28h-416v-640h896z" />
<glyph unicode="&#xf0c6;" horiz-adv-x="1408" d="M1404 151q0 -117 -79 -196t-196 -79q-135 0 -235 100l-777 776q-113 115 -113 271q0 159 110 270t269 111q158 0 273 -113l605 -606q10 -10 10 -22q0 -16 -30.5 -46.5t-46.5 -30.5q-13 0 -23 10l-606 607q-79 77 -181 77q-106 0 -179 -75t-73 -181q0 -105 76 -181 l776 -777q63 -63 145 -63q64 0 106 42t42 106q0 82 -63 145l-581 581q-26 24 -60 24q-29 0 -48 -19t-19 -48q0 -32 25 -59l410 -410q10 -10 10 -22q0 -16 -31 -47t-47 -31q-12 0 -22 10l-410 410q-63 61 -63 149q0 82 57 139t139 57q88 0 149 -63l581 -581q100 -98 100 -235 z" />
<glyph unicode="&#xf0c7;" d="M384 0h768v384h-768v-384zM1280 0h128v896q0 14 -10 38.5t-20 34.5l-281 281q-10 10 -34 20t-39 10v-416q0 -40 -28 -68t-68 -28h-576q-40 0 -68 28t-28 68v416h-128v-1280h128v416q0 40 28 68t68 28h832q40 0 68 -28t28 -68v-416zM896 928v320q0 13 -9.5 22.5t-22.5 9.5 h-192q-13 0 -22.5 -9.5t-9.5 -22.5v-320q0 -13 9.5 -22.5t22.5 -9.5h192q13 0 22.5 9.5t9.5 22.5zM1536 896v-928q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1344q0 40 28 68t68 28h928q40 0 88 -20t76 -48l280 -280q28 -28 48 -76t20 -88z" />
<glyph unicode="&#xf0c8;" d="M1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
<glyph unicode="&#xf0c9;" d="M1536 192v-128q0 -26 -19 -45t-45 -19h-1408q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1408q26 0 45 -19t19 -45zM1536 704v-128q0 -26 -19 -45t-45 -19h-1408q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1408q26 0 45 -19t19 -45zM1536 1216v-128q0 -26 -19 -45 t-45 -19h-1408q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1408q26 0 45 -19t19 -45z" />
<glyph unicode="&#xf0ca;" horiz-adv-x="1792" d="M384 128q0 -80 -56 -136t-136 -56t-136 56t-56 136t56 136t136 56t136 -56t56 -136zM384 640q0 -80 -56 -136t-136 -56t-136 56t-56 136t56 136t136 56t136 -56t56 -136zM1792 224v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1216q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5 t22.5 9.5h1216q13 0 22.5 -9.5t9.5 -22.5zM384 1152q0 -80 -56 -136t-136 -56t-136 56t-56 136t56 136t136 56t136 -56t56 -136zM1792 736v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1216q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1216q13 0 22.5 -9.5t9.5 -22.5z M1792 1248v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1216q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1216q13 0 22.5 -9.5t9.5 -22.5z" />
<glyph unicode="&#xf0cb;" horiz-adv-x="1792" d="M381 -84q0 -80 -54.5 -126t-135.5 -46q-106 0 -172 66l57 88q49 -45 106 -45q29 0 50.5 14.5t21.5 42.5q0 64 -105 56l-26 56q8 10 32.5 43.5t42.5 54t37 38.5v1q-16 0 -48.5 -1t-48.5 -1v-53h-106v152h333v-88l-95 -115q51 -12 81 -49t30 -88zM383 543v-159h-362 q-6 36 -6 54q0 51 23.5 93t56.5 68t66 47.5t56.5 43.5t23.5 45q0 25 -14.5 38.5t-39.5 13.5q-46 0 -81 -58l-85 59q24 51 71.5 79.5t105.5 28.5q73 0 123 -41.5t50 -112.5q0 -50 -34 -91.5t-75 -64.5t-75.5 -50.5t-35.5 -52.5h127v60h105zM1792 224v-192q0 -13 -9.5 -22.5 t-22.5 -9.5h-1216q-13 0 -22.5 9.5t-9.5 22.5v192q0 14 9 23t23 9h1216q13 0 22.5 -9.5t9.5 -22.5zM384 1123v-99h-335v99h107q0 41 0.5 122t0.5 121v12h-2q-8 -17 -50 -54l-71 76l136 127h106v-404h108zM1792 736v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1216q-13 0 -22.5 9.5 t-9.5 22.5v192q0 14 9 23t23 9h1216q13 0 22.5 -9.5t9.5 -22.5zM1792 1248v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1216q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1216q13 0 22.5 -9.5t9.5 -22.5z" />
<glyph unicode="&#xf0cc;" horiz-adv-x="1792" d="M1760 640q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-1728q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h1728zM483 704q-28 35 -51 80q-48 97 -48 188q0 181 134 309q133 127 393 127q50 0 167 -19q66 -12 177 -48q10 -38 21 -118q14 -123 14 -183q0 -18 -5 -45l-12 -3l-84 6 l-14 2q-50 149 -103 205q-88 91 -210 91q-114 0 -182 -59q-67 -58 -67 -146q0 -73 66 -140t279 -129q69 -20 173 -66q58 -28 95 -52h-743zM990 448h411q7 -39 7 -92q0 -111 -41 -212q-23 -55 -71 -104q-37 -35 -109 -81q-80 -48 -153 -66q-80 -21 -203 -21q-114 0 -195 23 l-140 40q-57 16 -72 28q-8 8 -8 22v13q0 108 -2 156q-1 30 0 68l2 37v44l102 2q15 -34 30 -71t22.5 -56t12.5 -27q35 -57 80 -94q43 -36 105 -57q59 -22 132 -22q64 0 139 27q77 26 122 86q47 61 47 129q0 84 -81 157q-34 29 -137 71z" />
<glyph unicode="&#xf0cd;" d="M48 1313q-37 2 -45 4l-3 88q13 1 40 1q60 0 112 -4q132 -7 166 -7q86 0 168 3q116 4 146 5q56 0 86 2l-1 -14l2 -64v-9q-60 -9 -124 -9q-60 0 -79 -25q-13 -14 -13 -132q0 -13 0.5 -32.5t0.5 -25.5l1 -229l14 -280q6 -124 51 -202q35 -59 96 -92q88 -47 177 -47 q104 0 191 28q56 18 99 51q48 36 65 64q36 56 53 114q21 73 21 229q0 79 -3.5 128t-11 122.5t-13.5 159.5l-4 59q-5 67 -24 88q-34 35 -77 34l-100 -2l-14 3l2 86h84l205 -10q76 -3 196 10l18 -2q6 -38 6 -51q0 -7 -4 -31q-45 -12 -84 -13q-73 -11 -79 -17q-15 -15 -15 -41 q0 -7 1.5 -27t1.5 -31q8 -19 22 -396q6 -195 -15 -304q-15 -76 -41 -122q-38 -65 -112 -123q-75 -57 -182 -89q-109 -33 -255 -33q-167 0 -284 46q-119 47 -179 122q-61 76 -83 195q-16 80 -16 237v333q0 188 -17 213q-25 36 -147 39zM1536 -96v64q0 14 -9 23t-23 9h-1472 q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h1472q14 0 23 9t9 23z" />
<glyph unicode="&#xf0ce;" horiz-adv-x="1664" d="M512 160v192q0 14 -9 23t-23 9h-320q-14 0 -23 -9t-9 -23v-192q0 -14 9 -23t23 -9h320q14 0 23 9t9 23zM512 544v192q0 14 -9 23t-23 9h-320q-14 0 -23 -9t-9 -23v-192q0 -14 9 -23t23 -9h320q14 0 23 9t9 23zM1024 160v192q0 14 -9 23t-23 9h-320q-14 0 -23 -9t-9 -23 v-192q0 -14 9 -23t23 -9h320q14 0 23 9t9 23zM512 928v192q0 14 -9 23t-23 9h-320q-14 0 -23 -9t-9 -23v-192q0 -14 9 -23t23 -9h320q14 0 23 9t9 23zM1024 544v192q0 14 -9 23t-23 9h-320q-14 0 -23 -9t-9 -23v-192q0 -14 9 -23t23 -9h320q14 0 23 9t9 23zM1536 160v192 q0 14 -9 23t-23 9h-320q-14 0 -23 -9t-9 -23v-192q0 -14 9 -23t23 -9h320q14 0 23 9t9 23zM1024 928v192q0 14 -9 23t-23 9h-320q-14 0 -23 -9t-9 -23v-192q0 -14 9 -23t23 -9h320q14 0 23 9t9 23zM1536 544v192q0 14 -9 23t-23 9h-320q-14 0 -23 -9t-9 -23v-192 q0 -14 9 -23t23 -9h320q14 0 23 9t9 23zM1536 928v192q0 14 -9 23t-23 9h-320q-14 0 -23 -9t-9 -23v-192q0 -14 9 -23t23 -9h320q14 0 23 9t9 23zM1664 1248v-1088q0 -66 -47 -113t-113 -47h-1344q-66 0 -113 47t-47 113v1088q0 66 47 113t113 47h1344q66 0 113 -47t47 -113 z" />
<glyph unicode="&#xf0d0;" horiz-adv-x="1664" d="M1190 955l293 293l-107 107l-293 -293zM1637 1248q0 -27 -18 -45l-1286 -1286q-18 -18 -45 -18t-45 18l-198 198q-18 18 -18 45t18 45l1286 1286q18 18 45 18t45 -18l198 -198q18 -18 18 -45zM286 1438l98 -30l-98 -30l-30 -98l-30 98l-98 30l98 30l30 98zM636 1276 l196 -60l-196 -60l-60 -196l-60 196l-196 60l196 60l60 196zM1566 798l98 -30l-98 -30l-30 -98l-30 98l-98 30l98 30l30 98zM926 1438l98 -30l-98 -30l-30 -98l-30 98l-98 30l98 30l30 98z" />
<glyph unicode="&#xf0d1;" horiz-adv-x="1792" d="M640 128q0 52 -38 90t-90 38t-90 -38t-38 -90t38 -90t90 -38t90 38t38 90zM256 640h384v256h-158q-13 0 -22 -9l-195 -195q-9 -9 -9 -22v-30zM1536 128q0 52 -38 90t-90 38t-90 -38t-38 -90t38 -90t90 -38t90 38t38 90zM1792 1216v-1024q0 -15 -4 -26.5t-13.5 -18.5 t-16.5 -11.5t-23.5 -6t-22.5 -2t-25.5 0t-22.5 0.5q0 -106 -75 -181t-181 -75t-181 75t-75 181h-384q0 -106 -75 -181t-181 -75t-181 75t-75 181h-64q-3 0 -22.5 -0.5t-25.5 0t-22.5 2t-23.5 6t-16.5 11.5t-13.5 18.5t-4 26.5q0 26 19 45t45 19v320q0 8 -0.5 35t0 38 t2.5 34.5t6.5 37t14 30.5t22.5 30l198 198q19 19 50.5 32t58.5 13h160v192q0 26 19 45t45 19h1024q26 0 45 -19t19 -45z" />
<glyph unicode="&#xf0d2;" d="M1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103q-111 0 -218 32q59 93 78 164q9 34 54 211q20 -39 73 -67.5t114 -28.5q121 0 216 68.5t147 188.5t52 270q0 114 -59.5 214t-172.5 163t-255 63q-105 0 -196 -29t-154.5 -77t-109 -110.5t-67 -129.5t-21.5 -134 q0 -104 40 -183t117 -111q30 -12 38 20q2 7 8 31t8 30q6 23 -11 43q-51 61 -51 151q0 151 104.5 259.5t273.5 108.5q151 0 235.5 -82t84.5 -213q0 -170 -68.5 -289t-175.5 -119q-61 0 -98 43.5t-23 104.5q8 35 26.5 93.5t30 103t11.5 75.5q0 50 -27 83t-77 33 q-62 0 -105 -57t-43 -142q0 -73 25 -122l-99 -418q-17 -70 -13 -177q-206 91 -333 281t-127 423q0 209 103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
<glyph unicode="&#xf0d3;" d="M1248 1408q119 0 203.5 -84.5t84.5 -203.5v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-725q85 122 108 210q9 34 53 209q21 -39 73.5 -67t112.5 -28q181 0 295.5 147.5t114.5 373.5q0 84 -35 162.5t-96.5 139t-152.5 97t-197 36.5q-104 0 -194.5 -28.5t-153 -76.5 t-107.5 -109.5t-66.5 -128t-21.5 -132.5q0 -102 39.5 -180t116.5 -110q13 -5 23.5 0t14.5 19q10 44 15 61q6 23 -11 42q-50 62 -50 150q0 150 103.5 256.5t270.5 106.5q149 0 232.5 -81t83.5 -210q0 -168 -67.5 -286t-173.5 -118q-60 0 -97 43.5t-23 103.5q8 34 26.5 92.5 t29.5 102t11 74.5q0 49 -26.5 81.5t-75.5 32.5q-61 0 -103.5 -56.5t-42.5 -139.5q0 -72 24 -121l-98 -414q-24 -100 -7 -254h-183q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960z" />
<glyph unicode="&#xf0d4;" d="M829 318q0 -76 -58.5 -112.5t-139.5 -36.5q-41 0 -80.5 9.5t-75.5 28.5t-58 53t-22 78q0 46 25 80t65.5 51.5t82 25t84.5 7.5q20 0 31 -2q2 -1 23 -16.5t26 -19t23 -18t24.5 -22t19 -22.5t17 -26t9 -26.5t4.5 -31.5zM755 863q0 -60 -33 -99.5t-92 -39.5q-53 0 -93 42.5 t-57.5 96.5t-17.5 106q0 61 32 104t92 43q53 0 93.5 -45t58 -101t17.5 -107zM861 1120l88 64h-265q-85 0 -161 -32t-127.5 -98t-51.5 -153q0 -93 64.5 -154.5t158.5 -61.5q22 0 43 3q-13 -29 -13 -54q0 -44 40 -94q-175 -12 -257 -63q-47 -29 -75.5 -73t-28.5 -95 q0 -43 18.5 -77.5t48.5 -56.5t69 -37t77.5 -21t76.5 -6q60 0 120.5 15.5t113.5 46t86 82.5t33 117q0 49 -20 89.5t-49 66.5t-58 47.5t-49 44t-20 44.5t15.5 42.5t37.5 39.5t44 42t37.5 59.5t15.5 82.5q0 60 -22.5 99.5t-72.5 90.5h83zM1152 672h128v64h-128v128h-64v-128 h-128v-64h128v-160h64v160zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
<glyph unicode="&#xf0d5;" horiz-adv-x="1664" d="M735 740q0 -36 32 -70.5t77.5 -68t90.5 -73.5t77 -104t32 -142q0 -90 -48 -173q-72 -122 -211 -179.5t-298 -57.5q-132 0 -246.5 41.5t-171.5 137.5q-37 60 -37 131q0 81 44.5 150t118.5 115q131 82 404 100q-32 42 -47.5 74t-15.5 73q0 36 21 85q-46 -4 -68 -4 q-148 0 -249.5 96.5t-101.5 244.5q0 82 36 159t99 131q77 66 182.5 98t217.5 32h418l-138 -88h-131q74 -63 112 -133t38 -160q0 -72 -24.5 -129.5t-59 -93t-69.5 -65t-59.5 -61.5t-24.5 -66zM589 836q38 0 78 16.5t66 43.5q53 57 53 159q0 58 -17 125t-48.5 129.5 t-84.5 103.5t-117 41q-42 0 -82.5 -19.5t-65.5 -52.5q-47 -59 -47 -160q0 -46 10 -97.5t31.5 -103t52 -92.5t75 -67t96.5 -26zM591 -37q58 0 111.5 13t99 39t73 73t27.5 109q0 25 -7 49t-14.5 42t-27 41.5t-29.5 35t-38.5 34.5t-36.5 29t-41.5 30t-36.5 26q-16 2 -48 2 q-53 0 -105 -7t-107.5 -25t-97 -46t-68.5 -74.5t-27 -105.5q0 -70 35 -123.5t91.5 -83t119 -44t127.5 -14.5zM1401 839h213v-108h-213v-219h-105v219h-212v108h212v217h105v-217z" />
<glyph unicode="&#xf0d6;" horiz-adv-x="1920" d="M768 384h384v96h-128v448h-114l-148 -137l77 -80q42 37 55 57h2v-288h-128v-96zM1280 640q0 -70 -21 -142t-59.5 -134t-101.5 -101t-138 -39t-138 39t-101.5 101t-59.5 134t-21 142t21 142t59.5 134t101.5 101t138 39t138 -39t101.5 -101t59.5 -134t21 -142zM1792 384 v512q-106 0 -181 75t-75 181h-1152q0 -106 -75 -181t-181 -75v-512q106 0 181 -75t75 -181h1152q0 106 75 181t181 75zM1920 1216v-1152q0 -26 -19 -45t-45 -19h-1792q-26 0 -45 19t-19 45v1152q0 26 19 45t45 19h1792q26 0 45 -19t19 -45z" />
<glyph unicode="&#xf0d7;" horiz-adv-x="1024" d="M1024 832q0 -26 -19 -45l-448 -448q-19 -19 -45 -19t-45 19l-448 448q-19 19 -19 45t19 45t45 19h896q26 0 45 -19t19 -45z" />
<glyph unicode="&#xf0d8;" horiz-adv-x="1024" d="M1024 320q0 -26 -19 -45t-45 -19h-896q-26 0 -45 19t-19 45t19 45l448 448q19 19 45 19t45 -19l448 -448q19 -19 19 -45z" />
<glyph unicode="&#xf0d9;" horiz-adv-x="640" d="M640 1088v-896q0 -26 -19 -45t-45 -19t-45 19l-448 448q-19 19 -19 45t19 45l448 448q19 19 45 19t45 -19t19 -45z" />
<glyph unicode="&#xf0da;" horiz-adv-x="640" d="M576 640q0 -26 -19 -45l-448 -448q-19 -19 -45 -19t-45 19t-19 45v896q0 26 19 45t45 19t45 -19l448 -448q19 -19 19 -45z" />
<glyph unicode="&#xf0db;" horiz-adv-x="1664" d="M160 0h608v1152h-640v-1120q0 -13 9.5 -22.5t22.5 -9.5zM1536 32v1120h-640v-1152h608q13 0 22.5 9.5t9.5 22.5zM1664 1248v-1216q0 -66 -47 -113t-113 -47h-1344q-66 0 -113 47t-47 113v1216q0 66 47 113t113 47h1344q66 0 113 -47t47 -113z" />
<glyph unicode="&#xf0dc;" horiz-adv-x="1024" d="M1024 448q0 -26 -19 -45l-448 -448q-19 -19 -45 -19t-45 19l-448 448q-19 19 -19 45t19 45t45 19h896q26 0 45 -19t19 -45zM1024 832q0 -26 -19 -45t-45 -19h-896q-26 0 -45 19t-19 45t19 45l448 448q19 19 45 19t45 -19l448 -448q19 -19 19 -45z" />
<glyph unicode="&#xf0dd;" horiz-adv-x="1024" d="M1024 448q0 -26 -19 -45l-448 -448q-19 -19 -45 -19t-45 19l-448 448q-19 19 -19 45t19 45t45 19h896q26 0 45 -19t19 -45z" />
<glyph unicode="&#xf0de;" horiz-adv-x="1024" d="M1024 832q0 -26 -19 -45t-45 -19h-896q-26 0 -45 19t-19 45t19 45l448 448q19 19 45 19t45 -19l448 -448q19 -19 19 -45z" />
<glyph unicode="&#xf0e0;" horiz-adv-x="1792" d="M1792 826v-794q0 -66 -47 -113t-113 -47h-1472q-66 0 -113 47t-47 113v794q44 -49 101 -87q362 -246 497 -345q57 -42 92.5 -65.5t94.5 -48t110 -24.5h1h1q51 0 110 24.5t94.5 48t92.5 65.5q170 123 498 345q57 39 100 87zM1792 1120q0 -79 -49 -151t-122 -123 q-376 -261 -468 -325q-10 -7 -42.5 -30.5t-54 -38t-52 -32.5t-57.5 -27t-50 -9h-1h-1q-23 0 -50 9t-57.5 27t-52 32.5t-54 38t-42.5 30.5q-91 64 -262 182.5t-205 142.5q-62 42 -117 115.5t-55 136.5q0 78 41.5 130t118.5 52h1472q65 0 112.5 -47t47.5 -113z" />
<glyph unicode="&#xf0e1;" d="M349 911v-991h-330v991h330zM370 1217q1 -73 -50.5 -122t-135.5 -49h-2q-82 0 -132 49t-50 122q0 74 51.5 122.5t134.5 48.5t133 -48.5t51 -122.5zM1536 488v-568h-329v530q0 105 -40.5 164.5t-126.5 59.5q-63 0 -105.5 -34.5t-63.5 -85.5q-11 -30 -11 -81v-553h-329 q2 399 2 647t-1 296l-1 48h329v-144h-2q20 32 41 56t56.5 52t87 43.5t114.5 15.5q171 0 275 -113.5t104 -332.5z" />
<glyph unicode="&#xf0e2;" d="M1536 640q0 -156 -61 -298t-164 -245t-245 -164t-298 -61q-172 0 -327 72.5t-264 204.5q-7 10 -6.5 22.5t8.5 20.5l137 138q10 9 25 9q16 -2 23 -12q73 -95 179 -147t225 -52q104 0 198.5 40.5t163.5 109.5t109.5 163.5t40.5 198.5t-40.5 198.5t-109.5 163.5 t-163.5 109.5t-198.5 40.5q-98 0 -188 -35.5t-160 -101.5l137 -138q31 -30 14 -69q-17 -40 -59 -40h-448q-26 0 -45 19t-19 45v448q0 42 40 59q39 17 69 -14l130 -129q107 101 244.5 156.5t284.5 55.5q156 0 298 -61t245 -164t164 -245t61 -298z" />
<glyph unicode="&#xf0e3;" horiz-adv-x="1792" d="M1771 0q0 -53 -37 -90l-107 -108q-39 -37 -91 -37q-53 0 -90 37l-363 364q-38 36 -38 90q0 53 43 96l-256 256l-126 -126q-14 -14 -34 -14t-34 14q2 -2 12.5 -12t12.5 -13t10 -11.5t10 -13.5t6 -13.5t5.5 -16.5t1.5 -18q0 -38 -28 -68q-3 -3 -16.5 -18t-19 -20.5 t-18.5 -16.5t-22 -15.5t-22 -9t-26 -4.5q-40 0 -68 28l-408 408q-28 28 -28 68q0 13 4.5 26t9 22t15.5 22t16.5 18.5t20.5 19t18 16.5q30 28 68 28q10 0 18 -1.5t16.5 -5.5t13.5 -6t13.5 -10t11.5 -10t13 -12.5t12 -12.5q-14 14 -14 34t14 34l348 348q14 14 34 14t34 -14 q-2 2 -12.5 12t-12.5 13t-10 11.5t-10 13.5t-6 13.5t-5.5 16.5t-1.5 18q0 38 28 68q3 3 16.5 18t19 20.5t18.5 16.5t22 15.5t22 9t26 4.5q40 0 68 -28l408 -408q28 -28 28 -68q0 -13 -4.5 -26t-9 -22t-15.5 -22t-16.5 -18.5t-20.5 -19t-18 -16.5q-30 -28 -68 -28 q-10 0 -18 1.5t-16.5 5.5t-13.5 6t-13.5 10t-11.5 10t-13 12.5t-12 12.5q14 -14 14 -34t-14 -34l-126 -126l256 -256q43 43 96 43q52 0 91 -37l363 -363q37 -39 37 -91z" />
<glyph unicode="&#xf0e4;" horiz-adv-x="1792" d="M384 384q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM576 832q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1004 351l101 382q6 26 -7.5 48.5t-38.5 29.5 t-48 -6.5t-30 -39.5l-101 -382q-60 -5 -107 -43.5t-63 -98.5q-20 -77 20 -146t117 -89t146 20t89 117q16 60 -6 117t-72 91zM1664 384q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1024 1024q0 53 -37.5 90.5 t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1472 832q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1792 384q0 -261 -141 -483q-19 -29 -54 -29h-1402q-35 0 -54 29 q-141 221 -141 483q0 182 71 348t191 286t286 191t348 71t348 -71t286 -191t191 -286t71 -348z" />
<glyph unicode="&#xf0e5;" horiz-adv-x="1792" d="M896 1152q-204 0 -381.5 -69.5t-282 -187.5t-104.5 -255q0 -112 71.5 -213.5t201.5 -175.5l87 -50l-27 -96q-24 -91 -70 -172q152 63 275 171l43 38l57 -6q69 -8 130 -8q204 0 381.5 69.5t282 187.5t104.5 255t-104.5 255t-282 187.5t-381.5 69.5zM1792 640 q0 -174 -120 -321.5t-326 -233t-450 -85.5q-70 0 -145 8q-198 -175 -460 -242q-49 -14 -114 -22h-5q-15 0 -27 10.5t-16 27.5v1q-3 4 -0.5 12t2 10t4.5 9.5l6 9t7 8.5t8 9q7 8 31 34.5t34.5 38t31 39.5t32.5 51t27 59t26 76q-157 89 -247.5 220t-90.5 281q0 174 120 321.5 t326 233t450 85.5t450 -85.5t326 -233t120 -321.5z" />
<glyph unicode="&#xf0e6;" horiz-adv-x="1792" d="M704 1152q-153 0 -286 -52t-211.5 -141t-78.5 -191q0 -82 53 -158t149 -132l97 -56l-35 -84q34 20 62 39l44 31l53 -10q78 -14 153 -14q153 0 286 52t211.5 141t78.5 191t-78.5 191t-211.5 141t-286 52zM704 1280q191 0 353.5 -68.5t256.5 -186.5t94 -257t-94 -257 t-256.5 -186.5t-353.5 -68.5q-86 0 -176 16q-124 -88 -278 -128q-36 -9 -86 -16h-3q-11 0 -20.5 8t-11.5 21q-1 3 -1 6.5t0.5 6.5t2 6l2.5 5t3.5 5.5t4 5t4.5 5t4 4.5q5 6 23 25t26 29.5t22.5 29t25 38.5t20.5 44q-124 72 -195 177t-71 224q0 139 94 257t256.5 186.5 t353.5 68.5zM1526 111q10 -24 20.5 -44t25 -38.5t22.5 -29t26 -29.5t23 -25q1 -1 4 -4.5t4.5 -5t4 -5t3.5 -5.5l2.5 -5t2 -6t0.5 -6.5t-1 -6.5q-3 -14 -13 -22t-22 -7q-50 7 -86 16q-154 40 -278 128q-90 -16 -176 -16q-271 0 -472 132q58 -4 88 -4q161 0 309 45t264 129 q125 92 192 212t67 254q0 77 -23 152q129 -71 204 -178t75 -230q0 -120 -71 -224.5t-195 -176.5z" />
<glyph unicode="&#xf0e7;" horiz-adv-x="896" d="M885 970q18 -20 7 -44l-540 -1157q-13 -25 -42 -25q-4 0 -14 2q-17 5 -25.5 19t-4.5 30l197 808l-406 -101q-4 -1 -12 -1q-18 0 -31 11q-18 15 -13 39l201 825q4 14 16 23t28 9h328q19 0 32 -12.5t13 -29.5q0 -8 -5 -18l-171 -463l396 98q8 2 12 2q19 0 34 -15z" />
<glyph unicode="&#xf0e8;" horiz-adv-x="1792" d="M1792 288v-320q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v320q0 40 28 68t68 28h96v192h-512v-192h96q40 0 68 -28t28 -68v-320q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v320q0 40 28 68t68 28h96v192h-512v-192h96q40 0 68 -28t28 -68v-320 q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v320q0 40 28 68t68 28h96v192q0 52 38 90t90 38h512v192h-96q-40 0 -68 28t-28 68v320q0 40 28 68t68 28h320q40 0 68 -28t28 -68v-320q0 -40 -28 -68t-68 -28h-96v-192h512q52 0 90 -38t38 -90v-192h96q40 0 68 -28t28 -68 z" />
<glyph unicode="&#xf0e9;" horiz-adv-x="1664" d="M896 708v-580q0 -104 -76 -180t-180 -76t-180 76t-76 180q0 26 19 45t45 19t45 -19t19 -45q0 -50 39 -89t89 -39t89 39t39 89v580q33 11 64 11t64 -11zM1664 681q0 -13 -9.5 -22.5t-22.5 -9.5q-11 0 -23 10q-49 46 -93 69t-102 23q-68 0 -128 -37t-103 -97 q-7 -10 -17.5 -28t-14.5 -24q-11 -17 -28 -17q-18 0 -29 17q-4 6 -14.5 24t-17.5 28q-43 60 -102.5 97t-127.5 37t-127.5 -37t-102.5 -97q-7 -10 -17.5 -28t-14.5 -24q-11 -17 -29 -17q-17 0 -28 17q-4 6 -14.5 24t-17.5 28q-43 60 -103 97t-128 37q-58 0 -102 -23t-93 -69 q-12 -10 -23 -10q-13 0 -22.5 9.5t-9.5 22.5q0 5 1 7q45 183 172.5 319.5t298 204.5t360.5 68q140 0 274.5 -40t246.5 -113.5t194.5 -187t115.5 -251.5q1 -2 1 -7zM896 1408v-98q-42 2 -64 2t-64 -2v98q0 26 19 45t45 19t45 -19t19 -45z" />
<glyph unicode="&#xf0ea;" horiz-adv-x="1792" d="M768 -128h896v640h-416q-40 0 -68 28t-28 68v416h-384v-1152zM1024 1312v64q0 13 -9.5 22.5t-22.5 9.5h-704q-13 0 -22.5 -9.5t-9.5 -22.5v-64q0 -13 9.5 -22.5t22.5 -9.5h704q13 0 22.5 9.5t9.5 22.5zM1280 640h299l-299 299v-299zM1792 512v-672q0 -40 -28 -68t-68 -28 h-960q-40 0 -68 28t-28 68v160h-544q-40 0 -68 28t-28 68v1344q0 40 28 68t68 28h1088q40 0 68 -28t28 -68v-328q21 -13 36 -28l408 -408q28 -28 48 -76t20 -88z" />
<glyph unicode="&#xf0eb;" horiz-adv-x="1024" d="M736 960q0 -13 -9.5 -22.5t-22.5 -9.5t-22.5 9.5t-9.5 22.5q0 46 -54 71t-106 25q-13 0 -22.5 9.5t-9.5 22.5t9.5 22.5t22.5 9.5q50 0 99.5 -16t87 -54t37.5 -90zM896 960q0 72 -34.5 134t-90 101.5t-123 62t-136.5 22.5t-136.5 -22.5t-123 -62t-90 -101.5t-34.5 -134 q0 -101 68 -180q10 -11 30.5 -33t30.5 -33q128 -153 141 -298h228q13 145 141 298q10 11 30.5 33t30.5 33q68 79 68 180zM1024 960q0 -155 -103 -268q-45 -49 -74.5 -87t-59.5 -95.5t-34 -107.5q47 -28 47 -82q0 -37 -25 -64q25 -27 25 -64q0 -52 -45 -81q13 -23 13 -47 q0 -46 -31.5 -71t-77.5 -25q-20 -44 -60 -70t-87 -26t-87 26t-60 70q-46 0 -77.5 25t-31.5 71q0 24 13 47q-45 29 -45 81q0 37 25 64q-25 27 -25 64q0 54 47 82q-4 50 -34 107.5t-59.5 95.5t-74.5 87q-103 113 -103 268q0 99 44.5 184.5t117 142t164 89t186.5 32.5 t186.5 -32.5t164 -89t117 -142t44.5 -184.5z" />
<glyph unicode="&#xf0ec;" horiz-adv-x="1792" d="M1792 352v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1376v-192q0 -13 -9.5 -22.5t-22.5 -9.5q-12 0 -24 10l-319 320q-9 9 -9 22q0 14 9 23l320 320q9 9 23 9q13 0 22.5 -9.5t9.5 -22.5v-192h1376q13 0 22.5 -9.5t9.5 -22.5zM1792 896q0 -14 -9 -23l-320 -320q-9 -9 -23 -9 q-13 0 -22.5 9.5t-9.5 22.5v192h-1376q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1376v192q0 14 9 23t23 9q12 0 24 -10l319 -319q9 -9 9 -23z" />
<glyph unicode="&#xf0ed;" horiz-adv-x="1920" d="M1280 608q0 14 -9 23t-23 9h-224v352q0 13 -9.5 22.5t-22.5 9.5h-192q-13 0 -22.5 -9.5t-9.5 -22.5v-352h-224q-13 0 -22.5 -9.5t-9.5 -22.5q0 -14 9 -23l352 -352q9 -9 23 -9t23 9l351 351q10 12 10 24zM1920 384q0 -159 -112.5 -271.5t-271.5 -112.5h-1088 q-185 0 -316.5 131.5t-131.5 316.5q0 130 70 240t188 165q-2 30 -2 43q0 212 150 362t362 150q156 0 285.5 -87t188.5 -231q71 62 166 62q106 0 181 -75t75 -181q0 -76 -41 -138q130 -31 213.5 -135.5t83.5 -238.5z" />
<glyph unicode="&#xf0ee;" horiz-adv-x="1920" d="M1280 672q0 14 -9 23l-352 352q-9 9 -23 9t-23 -9l-351 -351q-10 -12 -10 -24q0 -14 9 -23t23 -9h224v-352q0 -13 9.5 -22.5t22.5 -9.5h192q13 0 22.5 9.5t9.5 22.5v352h224q13 0 22.5 9.5t9.5 22.5zM1920 384q0 -159 -112.5 -271.5t-271.5 -112.5h-1088 q-185 0 -316.5 131.5t-131.5 316.5q0 130 70 240t188 165q-2 30 -2 43q0 212 150 362t362 150q156 0 285.5 -87t188.5 -231q71 62 166 62q106 0 181 -75t75 -181q0 -76 -41 -138q130 -31 213.5 -135.5t83.5 -238.5z" />
<glyph unicode="&#xf0f0;" horiz-adv-x="1408" d="M384 192q0 -26 -19 -45t-45 -19t-45 19t-19 45t19 45t45 19t45 -19t19 -45zM1408 131q0 -121 -73 -190t-194 -69h-874q-121 0 -194 69t-73 190q0 68 5.5 131t24 138t47.5 132.5t81 103t120 60.5q-22 -52 -22 -120v-203q-58 -20 -93 -70t-35 -111q0 -80 56 -136t136 -56 t136 56t56 136q0 61 -35.5 111t-92.5 70v203q0 62 25 93q132 -104 295 -104t295 104q25 -31 25 -93v-64q-106 0 -181 -75t-75 -181v-89q-32 -29 -32 -71q0 -40 28 -68t68 -28t68 28t28 68q0 42 -32 71v89q0 52 38 90t90 38t90 -38t38 -90v-89q-32 -29 -32 -71q0 -40 28 -68 t68 -28t68 28t28 68q0 42 -32 71v89q0 68 -34.5 127.5t-93.5 93.5q0 10 0.5 42.5t0 48t-2.5 41.5t-7 47t-13 40q68 -15 120 -60.5t81 -103t47.5 -132.5t24 -138t5.5 -131zM1088 1024q0 -159 -112.5 -271.5t-271.5 -112.5t-271.5 112.5t-112.5 271.5t112.5 271.5t271.5 112.5 t271.5 -112.5t112.5 -271.5z" />
<glyph unicode="&#xf0f1;" horiz-adv-x="1408" d="M1280 832q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1408 832q0 -62 -35.5 -111t-92.5 -70v-395q0 -159 -131.5 -271.5t-316.5 -112.5t-316.5 112.5t-131.5 271.5v132q-164 20 -274 128t-110 252v512q0 26 19 45t45 19q6 0 16 -2q17 30 47 48 t65 18q53 0 90.5 -37.5t37.5 -90.5t-37.5 -90.5t-90.5 -37.5q-33 0 -64 18v-402q0 -106 94 -181t226 -75t226 75t94 181v402q-31 -18 -64 -18q-53 0 -90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5q35 0 65 -18t47 -48q10 2 16 2q26 0 45 -19t19 -45v-512q0 -144 -110 -252 t-274 -128v-132q0 -106 94 -181t226 -75t226 75t94 181v395q-57 21 -92.5 70t-35.5 111q0 80 56 136t136 56t136 -56t56 -136z" />
<glyph unicode="&#xf0f2;" horiz-adv-x="1792" d="M640 1152h512v128h-512v-128zM288 1152v-1280h-64q-92 0 -158 66t-66 158v832q0 92 66 158t158 66h64zM1408 1152v-1280h-1024v1280h128v160q0 40 28 68t68 28h576q40 0 68 -28t28 -68v-160h128zM1792 928v-832q0 -92 -66 -158t-158 -66h-64v1280h64q92 0 158 -66 t66 -158z" />
<glyph unicode="&#xf0f3;" horiz-adv-x="1792" d="M912 -160q0 16 -16 16q-59 0 -101.5 42.5t-42.5 101.5q0 16 -16 16t-16 -16q0 -73 51.5 -124.5t124.5 -51.5q16 0 16 16zM1728 128q0 -52 -38 -90t-90 -38h-448q0 -106 -75 -181t-181 -75t-181 75t-75 181h-448q-52 0 -90 38t-38 90q50 42 91 88t85 119.5t74.5 158.5 t50 206t19.5 260q0 152 117 282.5t307 158.5q-8 19 -8 39q0 40 28 68t68 28t68 -28t28 -68q0 -20 -8 -39q190 -28 307 -158.5t117 -282.5q0 -139 19.5 -260t50 -206t74.5 -158.5t85 -119.5t91 -88z" />
<glyph unicode="&#xf0f4;" horiz-adv-x="1920" d="M1664 896q0 80 -56 136t-136 56h-64v-384h64q80 0 136 56t56 136zM0 128h1792q0 -106 -75 -181t-181 -75h-1280q-106 0 -181 75t-75 181zM1856 896q0 -159 -112.5 -271.5t-271.5 -112.5h-64v-32q0 -92 -66 -158t-158 -66h-704q-92 0 -158 66t-66 158v736q0 26 19 45 t45 19h1152q159 0 271.5 -112.5t112.5 -271.5z" />
<glyph unicode="&#xf0f5;" horiz-adv-x="1408" d="M640 1472v-640q0 -61 -35.5 -111t-92.5 -70v-779q0 -52 -38 -90t-90 -38h-128q-52 0 -90 38t-38 90v779q-57 20 -92.5 70t-35.5 111v640q0 26 19 45t45 19t45 -19t19 -45v-416q0 -26 19 -45t45 -19t45 19t19 45v416q0 26 19 45t45 19t45 -19t19 -45v-416q0 -26 19 -45 t45 -19t45 19t19 45v416q0 26 19 45t45 19t45 -19t19 -45zM1408 1472v-1600q0 -52 -38 -90t-90 -38h-128q-52 0 -90 38t-38 90v512h-224q-13 0 -22.5 9.5t-9.5 22.5v800q0 132 94 226t226 94h256q26 0 45 -19t19 -45z" />
<glyph unicode="&#xf0f6;" d="M1468 1156q28 -28 48 -76t20 -88v-1152q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1600q0 40 28 68t68 28h896q40 0 88 -20t76 -48zM1024 1400v-376h376q-10 29 -22 41l-313 313q-12 12 -41 22zM1408 -128v1024h-416q-40 0 -68 28t-28 68v416h-768v-1536h1280z M384 736q0 14 9 23t23 9h704q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-704q-14 0 -23 9t-9 23v64zM1120 512q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-704q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h704zM1120 256q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-704 q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h704z" />
<glyph unicode="&#xf0f7;" horiz-adv-x="1408" d="M384 224v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM384 480v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z M640 480v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM384 736v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z M1152 224v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM896 480v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z M640 736v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM384 992v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z M1152 480v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM896 736v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z M640 992v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM384 1248v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z M1152 736v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM896 992v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z M640 1248v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM1152 992v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z M896 1248v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM1152 1248v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z M896 -128h384v1536h-1152v-1536h384v224q0 13 9.5 22.5t22.5 9.5h320q13 0 22.5 -9.5t9.5 -22.5v-224zM1408 1472v-1664q0 -26 -19 -45t-45 -19h-1280q-26 0 -45 19t-19 45v1664q0 26 19 45t45 19h1280q26 0 45 -19t19 -45z" />
<glyph unicode="&#xf0f8;" horiz-adv-x="1408" d="M384 224v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM384 480v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z M640 480v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM384 736v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z M1152 224v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM896 480v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z M640 736v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM1152 480v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z M896 736v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM1152 736v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z M896 -128h384v1152h-256v-32q0 -40 -28 -68t-68 -28h-448q-40 0 -68 28t-28 68v32h-256v-1152h384v224q0 13 9.5 22.5t22.5 9.5h320q13 0 22.5 -9.5t9.5 -22.5v-224zM896 1056v320q0 13 -9.5 22.5t-22.5 9.5h-64q-13 0 -22.5 -9.5t-9.5 -22.5v-96h-128v96q0 13 -9.5 22.5 t-22.5 9.5h-64q-13 0 -22.5 -9.5t-9.5 -22.5v-320q0 -13 9.5 -22.5t22.5 -9.5h64q13 0 22.5 9.5t9.5 22.5v96h128v-96q0 -13 9.5 -22.5t22.5 -9.5h64q13 0 22.5 9.5t9.5 22.5zM1408 1088v-1280q0 -26 -19 -45t-45 -19h-1280q-26 0 -45 19t-19 45v1280q0 26 19 45t45 19h320 v288q0 40 28 68t68 28h448q40 0 68 -28t28 -68v-288h320q26 0 45 -19t19 -45z" />
<glyph unicode="&#xf0f9;" horiz-adv-x="1920" d="M640 128q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM256 640h384v256h-158q-14 -2 -22 -9l-195 -195q-7 -12 -9 -22v-30zM1536 128q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5 t90.5 37.5t37.5 90.5zM1664 800v192q0 14 -9 23t-23 9h-224v224q0 14 -9 23t-23 9h-192q-14 0 -23 -9t-9 -23v-224h-224q-14 0 -23 -9t-9 -23v-192q0 -14 9 -23t23 -9h224v-224q0 -14 9 -23t23 -9h192q14 0 23 9t9 23v224h224q14 0 23 9t9 23zM1920 1344v-1152 q0 -26 -19 -45t-45 -19h-192q0 -106 -75 -181t-181 -75t-181 75t-75 181h-384q0 -106 -75 -181t-181 -75t-181 75t-75 181h-128q-26 0 -45 19t-19 45t19 45t45 19v416q0 26 13 58t32 51l198 198q19 19 51 32t58 13h160v320q0 26 19 45t45 19h1152q26 0 45 -19t19 -45z" />
<glyph unicode="&#xf0fa;" horiz-adv-x="1792" d="M1280 416v192q0 14 -9 23t-23 9h-224v224q0 14 -9 23t-23 9h-192q-14 0 -23 -9t-9 -23v-224h-224q-14 0 -23 -9t-9 -23v-192q0 -14 9 -23t23 -9h224v-224q0 -14 9 -23t23 -9h192q14 0 23 9t9 23v224h224q14 0 23 9t9 23zM640 1152h512v128h-512v-128zM256 1152v-1280h-32 q-92 0 -158 66t-66 158v832q0 92 66 158t158 66h32zM1440 1152v-1280h-1088v1280h160v160q0 40 28 68t68 28h576q40 0 68 -28t28 -68v-160h160zM1792 928v-832q0 -92 -66 -158t-158 -66h-32v1280h32q92 0 158 -66t66 -158z" />
<glyph unicode="&#xf0fb;" horiz-adv-x="1920" d="M1920 576q-1 -32 -288 -96l-352 -32l-224 -64h-64l-293 -352h69q26 0 45 -4.5t19 -11.5t-19 -11.5t-45 -4.5h-96h-160h-64v32h64v416h-160l-192 -224h-96l-32 32v192h32v32h128v8l-192 24v128l192 24v8h-128v32h-32v192l32 32h96l192 -224h160v416h-64v32h64h160h96 q26 0 45 -4.5t19 -11.5t-19 -11.5t-45 -4.5h-69l293 -352h64l224 -64l352 -32q261 -58 287 -93z" />
<glyph unicode="&#xf0fc;" horiz-adv-x="1664" d="M640 640v384h-256v-256q0 -53 37.5 -90.5t90.5 -37.5h128zM1664 192v-192h-1152v192l128 192h-128q-159 0 -271.5 112.5t-112.5 271.5v320l-64 64l32 128h480l32 128h960l32 -192l-64 -32v-800z" />
<glyph unicode="&#xf0fd;" d="M1280 192v896q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-320h-512v320q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-896q0 -26 19 -45t45 -19h128q26 0 45 19t19 45v320h512v-320q0 -26 19 -45t45 -19h128q26 0 45 19t19 45zM1536 1120v-960 q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
<glyph unicode="&#xf0fe;" d="M1280 576v128q0 26 -19 45t-45 19h-320v320q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-320h-320q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h320v-320q0 -26 19 -45t45 -19h128q26 0 45 19t19 45v320h320q26 0 45 19t19 45zM1536 1120v-960 q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
<glyph unicode="&#xf100;" horiz-adv-x="1024" d="M627 160q0 -13 -10 -23l-50 -50q-10 -10 -23 -10t-23 10l-466 466q-10 10 -10 23t10 23l466 466q10 10 23 10t23 -10l50 -50q10 -10 10 -23t-10 -23l-393 -393l393 -393q10 -10 10 -23zM1011 160q0 -13 -10 -23l-50 -50q-10 -10 -23 -10t-23 10l-466 466q-10 10 -10 23 t10 23l466 466q10 10 23 10t23 -10l50 -50q10 -10 10 -23t-10 -23l-393 -393l393 -393q10 -10 10 -23z" />
<glyph unicode="&#xf101;" horiz-adv-x="1024" d="M595 576q0 -13 -10 -23l-466 -466q-10 -10 -23 -10t-23 10l-50 50q-10 10 -10 23t10 23l393 393l-393 393q-10 10 -10 23t10 23l50 50q10 10 23 10t23 -10l466 -466q10 -10 10 -23zM979 576q0 -13 -10 -23l-466 -466q-10 -10 -23 -10t-23 10l-50 50q-10 10 -10 23t10 23 l393 393l-393 393q-10 10 -10 23t10 23l50 50q10 10 23 10t23 -10l466 -466q10 -10 10 -23z" />
<glyph unicode="&#xf102;" horiz-adv-x="1152" d="M1075 224q0 -13 -10 -23l-50 -50q-10 -10 -23 -10t-23 10l-393 393l-393 -393q-10 -10 -23 -10t-23 10l-50 50q-10 10 -10 23t10 23l466 466q10 10 23 10t23 -10l466 -466q10 -10 10 -23zM1075 608q0 -13 -10 -23l-50 -50q-10 -10 -23 -10t-23 10l-393 393l-393 -393 q-10 -10 -23 -10t-23 10l-50 50q-10 10 -10 23t10 23l466 466q10 10 23 10t23 -10l466 -466q10 -10 10 -23z" />
<glyph unicode="&#xf103;" horiz-adv-x="1152" d="M1075 672q0 -13 -10 -23l-466 -466q-10 -10 -23 -10t-23 10l-466 466q-10 10 -10 23t10 23l50 50q10 10 23 10t23 -10l393 -393l393 393q10 10 23 10t23 -10l50 -50q10 -10 10 -23zM1075 1056q0 -13 -10 -23l-466 -466q-10 -10 -23 -10t-23 10l-466 466q-10 10 -10 23 t10 23l50 50q10 10 23 10t23 -10l393 -393l393 393q10 10 23 10t23 -10l50 -50q10 -10 10 -23z" />
<glyph unicode="&#xf104;" horiz-adv-x="640" d="M627 992q0 -13 -10 -23l-393 -393l393 -393q10 -10 10 -23t-10 -23l-50 -50q-10 -10 -23 -10t-23 10l-466 466q-10 10 -10 23t10 23l466 466q10 10 23 10t23 -10l50 -50q10 -10 10 -23z" />
<glyph unicode="&#xf105;" horiz-adv-x="640" d="M595 576q0 -13 -10 -23l-466 -466q-10 -10 -23 -10t-23 10l-50 50q-10 10 -10 23t10 23l393 393l-393 393q-10 10 -10 23t10 23l50 50q10 10 23 10t23 -10l466 -466q10 -10 10 -23z" />
<glyph unicode="&#xf106;" horiz-adv-x="1152" d="M1075 352q0 -13 -10 -23l-50 -50q-10 -10 -23 -10t-23 10l-393 393l-393 -393q-10 -10 -23 -10t-23 10l-50 50q-10 10 -10 23t10 23l466 466q10 10 23 10t23 -10l466 -466q10 -10 10 -23z" />
<glyph unicode="&#xf107;" horiz-adv-x="1152" d="M1075 800q0 -13 -10 -23l-466 -466q-10 -10 -23 -10t-23 10l-466 466q-10 10 -10 23t10 23l50 50q10 10 23 10t23 -10l393 -393l393 393q10 10 23 10t23 -10l50 -50q10 -10 10 -23z" />
<glyph unicode="&#xf108;" horiz-adv-x="1920" d="M1792 544v832q0 13 -9.5 22.5t-22.5 9.5h-1600q-13 0 -22.5 -9.5t-9.5 -22.5v-832q0 -13 9.5 -22.5t22.5 -9.5h1600q13 0 22.5 9.5t9.5 22.5zM1920 1376v-1088q0 -66 -47 -113t-113 -47h-544q0 -37 16 -77.5t32 -71t16 -43.5q0 -26 -19 -45t-45 -19h-512q-26 0 -45 19 t-19 45q0 14 16 44t32 70t16 78h-544q-66 0 -113 47t-47 113v1088q0 66 47 113t113 47h1600q66 0 113 -47t47 -113z" />
<glyph unicode="&#xf109;" horiz-adv-x="1920" d="M416 256q-66 0 -113 47t-47 113v704q0 66 47 113t113 47h1088q66 0 113 -47t47 -113v-704q0 -66 -47 -113t-113 -47h-1088zM384 1120v-704q0 -13 9.5 -22.5t22.5 -9.5h1088q13 0 22.5 9.5t9.5 22.5v704q0 13 -9.5 22.5t-22.5 9.5h-1088q-13 0 -22.5 -9.5t-9.5 -22.5z M1760 192h160v-96q0 -40 -47 -68t-113 -28h-1600q-66 0 -113 28t-47 68v96h160h1600zM1040 96q16 0 16 16t-16 16h-160q-16 0 -16 -16t16 -16h160z" />
<glyph unicode="&#xf10a;" horiz-adv-x="1152" d="M640 128q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1024 288v960q0 13 -9.5 22.5t-22.5 9.5h-832q-13 0 -22.5 -9.5t-9.5 -22.5v-960q0 -13 9.5 -22.5t22.5 -9.5h832q13 0 22.5 9.5t9.5 22.5zM1152 1248v-1088q0 -66 -47 -113t-113 -47h-832 q-66 0 -113 47t-47 113v1088q0 66 47 113t113 47h832q66 0 113 -47t47 -113z" />
<glyph unicode="&#xf10b;" horiz-adv-x="768" d="M464 128q0 33 -23.5 56.5t-56.5 23.5t-56.5 -23.5t-23.5 -56.5t23.5 -56.5t56.5 -23.5t56.5 23.5t23.5 56.5zM672 288v704q0 13 -9.5 22.5t-22.5 9.5h-512q-13 0 -22.5 -9.5t-9.5 -22.5v-704q0 -13 9.5 -22.5t22.5 -9.5h512q13 0 22.5 9.5t9.5 22.5zM480 1136 q0 16 -16 16h-160q-16 0 -16 -16t16 -16h160q16 0 16 16zM768 1152v-1024q0 -52 -38 -90t-90 -38h-512q-52 0 -90 38t-38 90v1024q0 52 38 90t90 38h512q52 0 90 -38t38 -90z" />
<glyph unicode="&#xf10c;" d="M768 1184q-148 0 -273 -73t-198 -198t-73 -273t73 -273t198 -198t273 -73t273 73t198 198t73 273t-73 273t-198 198t-273 73zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103 t279.5 -279.5t103 -385.5z" />
<glyph unicode="&#xf10d;" horiz-adv-x="1664" d="M768 576v-384q0 -80 -56 -136t-136 -56h-384q-80 0 -136 56t-56 136v704q0 104 40.5 198.5t109.5 163.5t163.5 109.5t198.5 40.5h64q26 0 45 -19t19 -45v-128q0 -26 -19 -45t-45 -19h-64q-106 0 -181 -75t-75 -181v-32q0 -40 28 -68t68 -28h224q80 0 136 -56t56 -136z M1664 576v-384q0 -80 -56 -136t-136 -56h-384q-80 0 -136 56t-56 136v704q0 104 40.5 198.5t109.5 163.5t163.5 109.5t198.5 40.5h64q26 0 45 -19t19 -45v-128q0 -26 -19 -45t-45 -19h-64q-106 0 -181 -75t-75 -181v-32q0 -40 28 -68t68 -28h224q80 0 136 -56t56 -136z" />
<glyph unicode="&#xf10e;" horiz-adv-x="1664" d="M768 1216v-704q0 -104 -40.5 -198.5t-109.5 -163.5t-163.5 -109.5t-198.5 -40.5h-64q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h64q106 0 181 75t75 181v32q0 40 -28 68t-68 28h-224q-80 0 -136 56t-56 136v384q0 80 56 136t136 56h384q80 0 136 -56t56 -136zM1664 1216 v-704q0 -104 -40.5 -198.5t-109.5 -163.5t-163.5 -109.5t-198.5 -40.5h-64q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h64q106 0 181 75t75 181v32q0 40 -28 68t-68 28h-224q-80 0 -136 56t-56 136v384q0 80 56 136t136 56h384q80 0 136 -56t56 -136z" />
<glyph unicode="&#xf110;" horiz-adv-x="1792" d="M526 142q0 -53 -37.5 -90.5t-90.5 -37.5q-52 0 -90 38t-38 90q0 53 37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1024 -64q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM320 640q0 -53 -37.5 -90.5t-90.5 -37.5 t-90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1522 142q0 -52 -38 -90t-90 -38q-53 0 -90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM558 1138q0 -66 -47 -113t-113 -47t-113 47t-47 113t47 113t113 47t113 -47t47 -113z M1728 640q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1088 1344q0 -80 -56 -136t-136 -56t-136 56t-56 136t56 136t136 56t136 -56t56 -136zM1618 1138q0 -93 -66 -158.5t-158 -65.5q-93 0 -158.5 65.5t-65.5 158.5 q0 92 65.5 158t158.5 66q92 0 158 -66t66 -158z" />
<glyph unicode="&#xf111;" d="M1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
<glyph unicode="&#xf112;" horiz-adv-x="1792" d="M1792 416q0 -166 -127 -451q-3 -7 -10.5 -24t-13.5 -30t-13 -22q-12 -17 -28 -17q-15 0 -23.5 10t-8.5 25q0 9 2.5 26.5t2.5 23.5q5 68 5 123q0 101 -17.5 181t-48.5 138.5t-80 101t-105.5 69.5t-133 42.5t-154 21.5t-175.5 6h-224v-256q0 -26 -19 -45t-45 -19t-45 19 l-512 512q-19 19 -19 45t19 45l512 512q19 19 45 19t45 -19t19 -45v-256h224q713 0 875 -403q53 -134 53 -333z" />
<glyph unicode="&#xf113;" horiz-adv-x="1664" d="M640 320q0 -40 -12.5 -82t-43 -76t-72.5 -34t-72.5 34t-43 76t-12.5 82t12.5 82t43 76t72.5 34t72.5 -34t43 -76t12.5 -82zM1280 320q0 -40 -12.5 -82t-43 -76t-72.5 -34t-72.5 34t-43 76t-12.5 82t12.5 82t43 76t72.5 34t72.5 -34t43 -76t12.5 -82zM1440 320 q0 120 -69 204t-187 84q-41 0 -195 -21q-71 -11 -157 -11t-157 11q-152 21 -195 21q-118 0 -187 -84t-69 -204q0 -88 32 -153.5t81 -103t122 -60t140 -29.5t149 -7h168q82 0 149 7t140 29.5t122 60t81 103t32 153.5zM1664 496q0 -207 -61 -331q-38 -77 -105.5 -133t-141 -86 t-170 -47.5t-171.5 -22t-167 -4.5q-78 0 -142 3t-147.5 12.5t-152.5 30t-137 51.5t-121 81t-86 115q-62 123 -62 331q0 237 136 396q-27 82 -27 170q0 116 51 218q108 0 190 -39.5t189 -123.5q147 35 309 35q148 0 280 -32q105 82 187 121t189 39q51 -102 51 -218 q0 -87 -27 -168q136 -160 136 -398z" />
<glyph unicode="&#xf114;" horiz-adv-x="1664" d="M1536 224v704q0 40 -28 68t-68 28h-704q-40 0 -68 28t-28 68v64q0 40 -28 68t-68 28h-320q-40 0 -68 -28t-28 -68v-960q0 -40 28 -68t68 -28h1216q40 0 68 28t28 68zM1664 928v-704q0 -92 -66 -158t-158 -66h-1216q-92 0 -158 66t-66 158v960q0 92 66 158t158 66h320 q92 0 158 -66t66 -158v-32h672q92 0 158 -66t66 -158z" />
<glyph unicode="&#xf115;" horiz-adv-x="1920" d="M1781 605q0 35 -53 35h-1088q-40 0 -85.5 -21.5t-71.5 -52.5l-294 -363q-18 -24 -18 -40q0 -35 53 -35h1088q40 0 86 22t71 53l294 363q18 22 18 39zM640 768h768v160q0 40 -28 68t-68 28h-576q-40 0 -68 28t-28 68v64q0 40 -28 68t-68 28h-320q-40 0 -68 -28t-28 -68 v-853l256 315q44 53 116 87.5t140 34.5zM1909 605q0 -62 -46 -120l-295 -363q-43 -53 -116 -87.5t-140 -34.5h-1088q-92 0 -158 66t-66 158v960q0 92 66 158t158 66h320q92 0 158 -66t66 -158v-32h544q92 0 158 -66t66 -158v-160h192q54 0 99 -24.5t67 -70.5q15 -32 15 -68z " />
<glyph unicode="&#xf116;" horiz-adv-x="1792" />
<glyph unicode="&#xf117;" horiz-adv-x="1792" />
<glyph unicode="&#xf118;" d="M1134 461q-37 -121 -138 -195t-228 -74t-228 74t-138 195q-8 25 4 48.5t38 31.5q25 8 48.5 -4t31.5 -38q25 -80 92.5 -129.5t151.5 -49.5t151.5 49.5t92.5 129.5q8 26 32 38t49 4t37 -31.5t4 -48.5zM640 896q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5 t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1152 896q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1408 640q0 130 -51 248.5t-136.5 204t-204 136.5t-248.5 51t-248.5 -51t-204 -136.5t-136.5 -204t-51 -248.5 t51 -248.5t136.5 -204t204 -136.5t248.5 -51t248.5 51t204 136.5t136.5 204t51 248.5zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
<glyph unicode="&#xf119;" d="M1134 307q8 -25 -4 -48.5t-37 -31.5t-49 4t-32 38q-25 80 -92.5 129.5t-151.5 49.5t-151.5 -49.5t-92.5 -129.5q-8 -26 -31.5 -38t-48.5 -4q-26 8 -38 31.5t-4 48.5q37 121 138 195t228 74t228 -74t138 -195zM640 896q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5 t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1152 896q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1408 640q0 130 -51 248.5t-136.5 204t-204 136.5t-248.5 51t-248.5 -51t-204 -136.5t-136.5 -204 t-51 -248.5t51 -248.5t136.5 -204t204 -136.5t248.5 -51t248.5 51t204 136.5t136.5 204t51 248.5zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
<glyph unicode="&#xf11a;" d="M1152 448q0 -26 -19 -45t-45 -19h-640q-26 0 -45 19t-19 45t19 45t45 19h640q26 0 45 -19t19 -45zM640 896q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1152 896q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5 t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1408 640q0 130 -51 248.5t-136.5 204t-204 136.5t-248.5 51t-248.5 -51t-204 -136.5t-136.5 -204t-51 -248.5t51 -248.5t136.5 -204t204 -136.5t248.5 -51t248.5 51t204 136.5t136.5 204t51 248.5zM1536 640 q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
<glyph unicode="&#xf11b;" horiz-adv-x="1920" d="M832 448v128q0 14 -9 23t-23 9h-192v192q0 14 -9 23t-23 9h-128q-14 0 -23 -9t-9 -23v-192h-192q-14 0 -23 -9t-9 -23v-128q0 -14 9 -23t23 -9h192v-192q0 -14 9 -23t23 -9h128q14 0 23 9t9 23v192h192q14 0 23 9t9 23zM1408 384q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5 t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1664 640q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1920 512q0 -212 -150 -362t-362 -150q-192 0 -338 128h-220q-146 -128 -338 -128q-212 0 -362 150 t-150 362t150 362t362 150h896q212 0 362 -150t150 -362z" />
<glyph unicode="&#xf11c;" horiz-adv-x="1920" d="M384 368v-96q0 -16 -16 -16h-96q-16 0 -16 16v96q0 16 16 16h96q16 0 16 -16zM512 624v-96q0 -16 -16 -16h-224q-16 0 -16 16v96q0 16 16 16h224q16 0 16 -16zM384 880v-96q0 -16 -16 -16h-96q-16 0 -16 16v96q0 16 16 16h96q16 0 16 -16zM1408 368v-96q0 -16 -16 -16 h-864q-16 0 -16 16v96q0 16 16 16h864q16 0 16 -16zM768 624v-96q0 -16 -16 -16h-96q-16 0 -16 16v96q0 16 16 16h96q16 0 16 -16zM640 880v-96q0 -16 -16 -16h-96q-16 0 -16 16v96q0 16 16 16h96q16 0 16 -16zM1024 624v-96q0 -16 -16 -16h-96q-16 0 -16 16v96q0 16 16 16 h96q16 0 16 -16zM896 880v-96q0 -16 -16 -16h-96q-16 0 -16 16v96q0 16 16 16h96q16 0 16 -16zM1280 624v-96q0 -16 -16 -16h-96q-16 0 -16 16v96q0 16 16 16h96q16 0 16 -16zM1664 368v-96q0 -16 -16 -16h-96q-16 0 -16 16v96q0 16 16 16h96q16 0 16 -16zM1152 880v-96 q0 -16 -16 -16h-96q-16 0 -16 16v96q0 16 16 16h96q16 0 16 -16zM1408 880v-96q0 -16 -16 -16h-96q-16 0 -16 16v96q0 16 16 16h96q16 0 16 -16zM1664 880v-352q0 -16 -16 -16h-224q-16 0 -16 16v96q0 16 16 16h112v240q0 16 16 16h96q16 0 16 -16zM1792 128v896h-1664v-896 h1664zM1920 1024v-896q0 -53 -37.5 -90.5t-90.5 -37.5h-1664q-53 0 -90.5 37.5t-37.5 90.5v896q0 53 37.5 90.5t90.5 37.5h1664q53 0 90.5 -37.5t37.5 -90.5z" />
<glyph unicode="&#xf11d;" horiz-adv-x="1792" d="M1664 491v616q-169 -91 -306 -91q-82 0 -145 32q-100 49 -184 76.5t-178 27.5q-173 0 -403 -127v-599q245 113 433 113q55 0 103.5 -7.5t98 -26t77 -31t82.5 -39.5l28 -14q44 -22 101 -22q120 0 293 92zM320 1280q0 -35 -17.5 -64t-46.5 -46v-1266q0 -14 -9 -23t-23 -9 h-64q-14 0 -23 9t-9 23v1266q-29 17 -46.5 46t-17.5 64q0 53 37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1792 1216v-763q0 -39 -35 -57q-10 -5 -17 -9q-218 -116 -369 -116q-88 0 -158 35l-28 14q-64 33 -99 48t-91 29t-114 14q-102 0 -235.5 -44t-228.5 -102 q-15 -9 -33 -9q-16 0 -32 8q-32 19 -32 56v742q0 35 31 55q35 21 78.5 42.5t114 52t152.5 49.5t155 19q112 0 209 -31t209 -86q38 -19 89 -19q122 0 310 112q22 12 31 17q31 16 62 -2q31 -20 31 -55z" />
<glyph unicode="&#xf11e;" horiz-adv-x="1792" d="M832 536v192q-181 -16 -384 -117v-185q205 96 384 110zM832 954v197q-172 -8 -384 -126v-189q215 111 384 118zM1664 491v184q-235 -116 -384 -71v224q-20 6 -39 15q-5 3 -33 17t-34.5 17t-31.5 15t-34.5 15.5t-32.5 13t-36 12.5t-35 8.5t-39.5 7.5t-39.5 4t-44 2 q-23 0 -49 -3v-222h19q102 0 192.5 -29t197.5 -82q19 -9 39 -15v-188q42 -17 91 -17q120 0 293 92zM1664 918v189q-169 -91 -306 -91q-45 0 -78 8v-196q148 -42 384 90zM320 1280q0 -35 -17.5 -64t-46.5 -46v-1266q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v1266 q-29 17 -46.5 46t-17.5 64q0 53 37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1792 1216v-763q0 -39 -35 -57q-10 -5 -17 -9q-218 -116 -369 -116q-88 0 -158 35l-28 14q-64 33 -99 48t-91 29t-114 14q-102 0 -235.5 -44t-228.5 -102q-15 -9 -33 -9q-16 0 -32 8 q-32 19 -32 56v742q0 35 31 55q35 21 78.5 42.5t114 52t152.5 49.5t155 19q112 0 209 -31t209 -86q38 -19 89 -19q122 0 310 112q22 12 31 17q31 16 62 -2q31 -20 31 -55z" />
<glyph unicode="&#xf120;" horiz-adv-x="1664" d="M585 553l-466 -466q-10 -10 -23 -10t-23 10l-50 50q-10 10 -10 23t10 23l393 393l-393 393q-10 10 -10 23t10 23l50 50q10 10 23 10t23 -10l466 -466q10 -10 10 -23t-10 -23zM1664 96v-64q0 -14 -9 -23t-23 -9h-960q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h960q14 0 23 -9 t9 -23z" />
<glyph unicode="&#xf121;" horiz-adv-x="1920" d="M617 137l-50 -50q-10 -10 -23 -10t-23 10l-466 466q-10 10 -10 23t10 23l466 466q10 10 23 10t23 -10l50 -50q10 -10 10 -23t-10 -23l-393 -393l393 -393q10 -10 10 -23t-10 -23zM1208 1204l-373 -1291q-4 -13 -15.5 -19.5t-23.5 -2.5l-62 17q-13 4 -19.5 15.5t-2.5 24.5 l373 1291q4 13 15.5 19.5t23.5 2.5l62 -17q13 -4 19.5 -15.5t2.5 -24.5zM1865 553l-466 -466q-10 -10 -23 -10t-23 10l-50 50q-10 10 -10 23t10 23l393 393l-393 393q-10 10 -10 23t10 23l50 50q10 10 23 10t23 -10l466 -466q10 -10 10 -23t-10 -23z" />
<glyph unicode="&#xf122;" horiz-adv-x="1792" d="M640 454v-70q0 -42 -39 -59q-13 -5 -25 -5q-27 0 -45 19l-512 512q-19 19 -19 45t19 45l512 512q29 31 70 14q39 -17 39 -59v-69l-397 -398q-19 -19 -19 -45t19 -45zM1792 416q0 -58 -17 -133.5t-38.5 -138t-48 -125t-40.5 -90.5l-20 -40q-8 -17 -28 -17q-6 0 -9 1 q-25 8 -23 34q43 400 -106 565q-64 71 -170.5 110.5t-267.5 52.5v-251q0 -42 -39 -59q-13 -5 -25 -5q-27 0 -45 19l-512 512q-19 19 -19 45t19 45l512 512q29 31 70 14q39 -17 39 -59v-262q411 -28 599 -221q169 -173 169 -509z" />
<glyph unicode="&#xf123;" horiz-adv-x="1664" d="M1186 579l257 250l-356 52l-66 10l-30 60l-159 322v-963l59 -31l318 -168l-60 355l-12 66zM1638 841l-363 -354l86 -500q5 -33 -6 -51.5t-34 -18.5q-17 0 -40 12l-449 236l-449 -236q-23 -12 -40 -12q-23 0 -34 18.5t-6 51.5l86 500l-364 354q-32 32 -23 59.5t54 34.5 l502 73l225 455q20 41 49 41q28 0 49 -41l225 -455l502 -73q45 -7 54 -34.5t-24 -59.5z" />
<glyph unicode="&#xf124;" horiz-adv-x="1408" d="M1401 1187l-640 -1280q-17 -35 -57 -35q-5 0 -15 2q-22 5 -35.5 22.5t-13.5 39.5v576h-576q-22 0 -39.5 13.5t-22.5 35.5t4 42t29 30l1280 640q13 7 29 7q27 0 45 -19q15 -14 18.5 -34.5t-6.5 -39.5z" />
<glyph unicode="&#xf125;" horiz-adv-x="1664" d="M557 256h595v595zM512 301l595 595h-595v-595zM1664 224v-192q0 -14 -9 -23t-23 -9h-224v-224q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v224h-864q-14 0 -23 9t-9 23v864h-224q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h224v224q0 14 9 23t23 9h192q14 0 23 -9t9 -23 v-224h851l246 247q10 9 23 9t23 -9q9 -10 9 -23t-9 -23l-247 -246v-851h224q14 0 23 -9t9 -23z" />
<glyph unicode="&#xf126;" horiz-adv-x="1024" d="M288 64q0 40 -28 68t-68 28t-68 -28t-28 -68t28 -68t68 -28t68 28t28 68zM288 1216q0 40 -28 68t-68 28t-68 -28t-28 -68t28 -68t68 -28t68 28t28 68zM928 1088q0 40 -28 68t-68 28t-68 -28t-28 -68t28 -68t68 -28t68 28t28 68zM1024 1088q0 -52 -26 -96.5t-70 -69.5 q-2 -287 -226 -414q-68 -38 -203 -81q-128 -40 -169.5 -71t-41.5 -100v-26q44 -25 70 -69.5t26 -96.5q0 -80 -56 -136t-136 -56t-136 56t-56 136q0 52 26 96.5t70 69.5v820q-44 25 -70 69.5t-26 96.5q0 80 56 136t136 56t136 -56t56 -136q0 -52 -26 -96.5t-70 -69.5v-497 q54 26 154 57q55 17 87.5 29.5t70.5 31t59 39.5t40.5 51t28 69.5t8.5 91.5q-44 25 -70 69.5t-26 96.5q0 80 56 136t136 56t136 -56t56 -136z" />
<glyph unicode="&#xf127;" horiz-adv-x="1664" d="M439 265l-256 -256q-10 -9 -23 -9q-12 0 -23 9q-9 10 -9 23t9 23l256 256q10 9 23 9t23 -9q9 -10 9 -23t-9 -23zM608 224v-320q0 -14 -9 -23t-23 -9t-23 9t-9 23v320q0 14 9 23t23 9t23 -9t9 -23zM384 448q0 -14 -9 -23t-23 -9h-320q-14 0 -23 9t-9 23t9 23t23 9h320 q14 0 23 -9t9 -23zM1648 320q0 -120 -85 -203l-147 -146q-83 -83 -203 -83q-121 0 -204 85l-334 335q-21 21 -42 56l239 18l273 -274q27 -27 68 -27.5t68 26.5l147 146q28 28 28 67q0 40 -28 68l-274 275l18 239q35 -21 56 -42l336 -336q84 -86 84 -204zM1031 1044l-239 -18 l-273 274q-28 28 -68 28q-39 0 -68 -27l-147 -146q-28 -28 -28 -67q0 -40 28 -68l274 -274l-18 -240q-35 21 -56 42l-336 336q-84 86 -84 204q0 120 85 203l147 146q83 83 203 83q121 0 204 -85l334 -335q21 -21 42 -56zM1664 960q0 -14 -9 -23t-23 -9h-320q-14 0 -23 9 t-9 23t9 23t23 9h320q14 0 23 -9t9 -23zM1120 1504v-320q0 -14 -9 -23t-23 -9t-23 9t-9 23v320q0 14 9 23t23 9t23 -9t9 -23zM1527 1353l-256 -256q-11 -9 -23 -9t-23 9q-9 10 -9 23t9 23l256 256q10 9 23 9t23 -9q9 -10 9 -23t-9 -23z" />
<glyph unicode="&#xf128;" horiz-adv-x="1024" d="M704 280v-240q0 -16 -12 -28t-28 -12h-240q-16 0 -28 12t-12 28v240q0 16 12 28t28 12h240q16 0 28 -12t12 -28zM1020 880q0 -54 -15.5 -101t-35 -76.5t-55 -59.5t-57.5 -43.5t-61 -35.5q-41 -23 -68.5 -65t-27.5 -67q0 -17 -12 -32.5t-28 -15.5h-240q-15 0 -25.5 18.5 t-10.5 37.5v45q0 83 65 156.5t143 108.5q59 27 84 56t25 76q0 42 -46.5 74t-107.5 32q-65 0 -108 -29q-35 -25 -107 -115q-13 -16 -31 -16q-12 0 -25 8l-164 125q-13 10 -15.5 25t5.5 28q160 266 464 266q80 0 161 -31t146 -83t106 -127.5t41 -158.5z" />
<glyph unicode="&#xf129;" horiz-adv-x="640" d="M640 192v-128q0 -26 -19 -45t-45 -19h-512q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h64v384h-64q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h384q26 0 45 -19t19 -45v-576h64q26 0 45 -19t19 -45zM512 1344v-192q0 -26 -19 -45t-45 -19h-256q-26 0 -45 19t-19 45v192 q0 26 19 45t45 19h256q26 0 45 -19t19 -45z" />
<glyph unicode="&#xf12a;" horiz-adv-x="640" d="M512 288v-224q0 -26 -19 -45t-45 -19h-256q-26 0 -45 19t-19 45v224q0 26 19 45t45 19h256q26 0 45 -19t19 -45zM542 1344l-28 -768q-1 -26 -20.5 -45t-45.5 -19h-256q-26 0 -45.5 19t-20.5 45l-28 768q-1 26 17.5 45t44.5 19h320q26 0 44.5 -19t17.5 -45z" />
<glyph unicode="&#xf12b;" d="M897 167v-167h-248l-159 252l-24 42q-8 9 -11 21h-3l-9 -21q-10 -20 -25 -44l-155 -250h-258v167h128l197 291l-185 272h-137v168h276l139 -228q2 -4 23 -42q8 -9 11 -21h3q3 9 11 21l25 42l140 228h257v-168h-125l-184 -267l204 -296h109zM1534 846v-206h-514l-3 27 q-4 28 -4 46q0 64 26 117t65 86.5t84 65t84 54.5t65 54t26 64q0 38 -29.5 62.5t-70.5 24.5q-51 0 -97 -39q-14 -11 -36 -38l-105 92q26 37 63 66q83 65 188 65q110 0 178 -59.5t68 -158.5q0 -56 -24.5 -103t-62 -76.5t-81.5 -58.5t-82 -50.5t-65.5 -51.5t-30.5 -63h232v80 h126z" />
<glyph unicode="&#xf12c;" d="M897 167v-167h-248l-159 252l-24 42q-8 9 -11 21h-3l-9 -21q-10 -20 -25 -44l-155 -250h-258v167h128l197 291l-185 272h-137v168h276l139 -228q2 -4 23 -42q8 -9 11 -21h3q3 9 11 21l25 42l140 228h257v-168h-125l-184 -267l204 -296h109zM1536 -50v-206h-514l-4 27 q-3 45 -3 46q0 64 26 117t65 86.5t84 65t84 54.5t65 54t26 64q0 38 -29.5 62.5t-70.5 24.5q-51 0 -97 -39q-14 -11 -36 -38l-105 92q26 37 63 66q80 65 188 65q110 0 178 -59.5t68 -158.5q0 -66 -34.5 -118.5t-84 -86t-99.5 -62.5t-87 -63t-41 -73h232v80h126z" />
<glyph unicode="&#xf12d;" horiz-adv-x="1920" d="M896 128l336 384h-768l-336 -384h768zM1909 1205q15 -34 9.5 -71.5t-30.5 -65.5l-896 -1024q-38 -44 -96 -44h-768q-38 0 -69.5 20.5t-47.5 54.5q-15 34 -9.5 71.5t30.5 65.5l896 1024q38 44 96 44h768q38 0 69.5 -20.5t47.5 -54.5z" />
<glyph unicode="&#xf12e;" horiz-adv-x="1664" d="M1664 438q0 -81 -44.5 -135t-123.5 -54q-41 0 -77.5 17.5t-59 38t-56.5 38t-71 17.5q-110 0 -110 -124q0 -39 16 -115t15 -115v-5q-22 0 -33 -1q-34 -3 -97.5 -11.5t-115.5 -13.5t-98 -5q-61 0 -103 26.5t-42 83.5q0 37 17.5 71t38 56.5t38 59t17.5 77.5q0 79 -54 123.5 t-135 44.5q-84 0 -143 -45.5t-59 -127.5q0 -43 15 -83t33.5 -64.5t33.5 -53t15 -50.5q0 -45 -46 -89q-37 -35 -117 -35q-95 0 -245 24q-9 2 -27.5 4t-27.5 4l-13 2q-1 0 -3 1q-2 0 -2 1v1024q2 -1 17.5 -3.5t34 -5t21.5 -3.5q150 -24 245 -24q80 0 117 35q46 44 46 89 q0 22 -15 50.5t-33.5 53t-33.5 64.5t-15 83q0 82 59 127.5t144 45.5q80 0 134 -44.5t54 -123.5q0 -41 -17.5 -77.5t-38 -59t-38 -56.5t-17.5 -71q0 -57 42 -83.5t103 -26.5q64 0 180 15t163 17v-2q-1 -2 -3.5 -17.5t-5 -34t-3.5 -21.5q-24 -150 -24 -245q0 -80 35 -117 q44 -46 89 -46q22 0 50.5 15t53 33.5t64.5 33.5t83 15q82 0 127.5 -59t45.5 -143z" />
<glyph unicode="&#xf130;" horiz-adv-x="1152" d="M1152 832v-128q0 -221 -147.5 -384.5t-364.5 -187.5v-132h256q26 0 45 -19t19 -45t-19 -45t-45 -19h-640q-26 0 -45 19t-19 45t19 45t45 19h256v132q-217 24 -364.5 187.5t-147.5 384.5v128q0 26 19 45t45 19t45 -19t19 -45v-128q0 -185 131.5 -316.5t316.5 -131.5 t316.5 131.5t131.5 316.5v128q0 26 19 45t45 19t45 -19t19 -45zM896 1216v-512q0 -132 -94 -226t-226 -94t-226 94t-94 226v512q0 132 94 226t226 94t226 -94t94 -226z" />
<glyph unicode="&#xf131;" horiz-adv-x="1408" d="M271 591l-101 -101q-42 103 -42 214v128q0 26 19 45t45 19t45 -19t19 -45v-128q0 -53 15 -113zM1385 1193l-361 -361v-128q0 -132 -94 -226t-226 -94q-55 0 -109 19l-96 -96q97 -51 205 -51q185 0 316.5 131.5t131.5 316.5v128q0 26 19 45t45 19t45 -19t19 -45v-128 q0 -221 -147.5 -384.5t-364.5 -187.5v-132h256q26 0 45 -19t19 -45t-19 -45t-45 -19h-640q-26 0 -45 19t-19 45t19 45t45 19h256v132q-125 13 -235 81l-254 -254q-10 -10 -23 -10t-23 10l-82 82q-10 10 -10 23t10 23l1234 1234q10 10 23 10t23 -10l82 -82q10 -10 10 -23 t-10 -23zM1005 1325l-621 -621v512q0 132 94 226t226 94q102 0 184.5 -59t116.5 -152z" />
<glyph unicode="&#xf132;" horiz-adv-x="1280" d="M1088 576v640h-448v-1137q119 63 213 137q235 184 235 360zM1280 1344v-768q0 -86 -33.5 -170.5t-83 -150t-118 -127.5t-126.5 -103t-121 -77.5t-89.5 -49.5t-42.5 -20q-12 -6 -26 -6t-26 6q-16 7 -42.5 20t-89.5 49.5t-121 77.5t-126.5 103t-118 127.5t-83 150 t-33.5 170.5v768q0 26 19 45t45 19h1152q26 0 45 -19t19 -45z" />
<glyph unicode="&#xf133;" horiz-adv-x="1664" d="M128 -128h1408v1024h-1408v-1024zM512 1088v288q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-288q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM1280 1088v288q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-288q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM1664 1152v-1280 q0 -52 -38 -90t-90 -38h-1408q-52 0 -90 38t-38 90v1280q0 52 38 90t90 38h128v96q0 66 47 113t113 47h64q66 0 113 -47t47 -113v-96h384v96q0 66 47 113t113 47h64q66 0 113 -47t47 -113v-96h128q52 0 90 -38t38 -90z" />
<glyph unicode="&#xf134;" horiz-adv-x="1408" d="M512 1344q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1408 1376v-320q0 -16 -12 -25q-8 -7 -20 -7q-4 0 -7 1l-448 96q-11 2 -18 11t-7 20h-256v-102q111 -23 183.5 -111t72.5 -203v-800q0 -26 -19 -45t-45 -19h-512q-26 0 -45 19t-19 45v800 q0 106 62.5 190.5t161.5 114.5v111h-32q-59 0 -115 -23.5t-91.5 -53t-66 -66.5t-40.5 -53.5t-14 -24.5q-17 -35 -57 -35q-16 0 -29 7q-23 12 -31.5 37t3.5 49q5 10 14.5 26t37.5 53.5t60.5 70t85 67t108.5 52.5q-25 42 -25 86q0 66 47 113t113 47t113 -47t47 -113 q0 -33 -14 -64h302q0 11 7 20t18 11l448 96q3 1 7 1q12 0 20 -7q12 -9 12 -25z" />
<glyph unicode="&#xf135;" horiz-adv-x="1664" d="M1440 1088q0 40 -28 68t-68 28t-68 -28t-28 -68t28 -68t68 -28t68 28t28 68zM1664 1376q0 -249 -75.5 -430.5t-253.5 -360.5q-81 -80 -195 -176l-20 -379q-2 -16 -16 -26l-384 -224q-7 -4 -16 -4q-12 0 -23 9l-64 64q-13 14 -8 32l85 276l-281 281l-276 -85q-3 -1 -9 -1 q-14 0 -23 9l-64 64q-17 19 -5 39l224 384q10 14 26 16l379 20q96 114 176 195q188 187 358 258t431 71q14 0 24 -9.5t10 -22.5z" />
<glyph unicode="&#xf136;" horiz-adv-x="1792" d="M1745 763l-164 -763h-334l178 832q13 56 -15 88q-27 33 -83 33h-169l-204 -953h-334l204 953h-286l-204 -953h-334l204 953l-153 327h1276q101 0 189.5 -40.5t147.5 -113.5q60 -73 81 -168.5t0 -194.5z" />
<glyph unicode="&#xf137;" d="M909 141l102 102q19 19 19 45t-19 45l-307 307l307 307q19 19 19 45t-19 45l-102 102q-19 19 -45 19t-45 -19l-454 -454q-19 -19 -19 -45t19 -45l454 -454q19 -19 45 -19t45 19zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5 t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
<glyph unicode="&#xf138;" d="M717 141l454 454q19 19 19 45t-19 45l-454 454q-19 19 -45 19t-45 -19l-102 -102q-19 -19 -19 -45t19 -45l307 -307l-307 -307q-19 -19 -19 -45t19 -45l102 -102q19 -19 45 -19t45 19zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5 t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
<glyph unicode="&#xf139;" d="M1165 397l102 102q19 19 19 45t-19 45l-454 454q-19 19 -45 19t-45 -19l-454 -454q-19 -19 -19 -45t19 -45l102 -102q19 -19 45 -19t45 19l307 307l307 -307q19 -19 45 -19t45 19zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5 t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
<glyph unicode="&#xf13a;" d="M813 237l454 454q19 19 19 45t-19 45l-102 102q-19 19 -45 19t-45 -19l-307 -307l-307 307q-19 19 -45 19t-45 -19l-102 -102q-19 -19 -19 -45t19 -45l454 -454q19 -19 45 -19t45 19zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5 t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
<glyph unicode="&#xf13b;" horiz-adv-x="1408" d="M1130 939l16 175h-884l47 -534h612l-22 -228l-197 -53l-196 53l-13 140h-175l22 -278l362 -100h4v1l359 99l50 544h-644l-15 181h674zM0 1408h1408l-128 -1438l-578 -162l-574 162z" />
<glyph unicode="&#xf13c;" horiz-adv-x="1792" d="M275 1408h1505l-266 -1333l-804 -267l-698 267l71 356h297l-29 -147l422 -161l486 161l68 339h-1208l58 297h1209l38 191h-1208z" />
<glyph unicode="&#xf13d;" horiz-adv-x="1792" d="M960 1280q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1792 352v-352q0 -22 -20 -30q-8 -2 -12 -2q-13 0 -23 9l-93 93q-119 -143 -318.5 -226.5t-429.5 -83.5t-429.5 83.5t-318.5 226.5l-93 -93q-9 -9 -23 -9q-4 0 -12 2q-20 8 -20 30v352 q0 14 9 23t23 9h352q22 0 30 -20q8 -19 -7 -35l-100 -100q67 -91 189.5 -153.5t271.5 -82.5v647h-192q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h192v163q-58 34 -93 92.5t-35 128.5q0 106 75 181t181 75t181 -75t75 -181q0 -70 -35 -128.5t-93 -92.5v-163h192q26 0 45 -19 t19 -45v-128q0 -26 -19 -45t-45 -19h-192v-647q149 20 271.5 82.5t189.5 153.5l-100 100q-15 16 -7 35q8 20 30 20h352q14 0 23 -9t9 -23z" />
<glyph unicode="&#xf13e;" horiz-adv-x="1152" d="M1056 768q40 0 68 -28t28 -68v-576q0 -40 -28 -68t-68 -28h-960q-40 0 -68 28t-28 68v576q0 40 28 68t68 28h32v320q0 185 131.5 316.5t316.5 131.5t316.5 -131.5t131.5 -316.5q0 -26 -19 -45t-45 -19h-64q-26 0 -45 19t-19 45q0 106 -75 181t-181 75t-181 -75t-75 -181 v-320h736z" />
<glyph unicode="&#xf140;" d="M1024 640q0 -106 -75 -181t-181 -75t-181 75t-75 181t75 181t181 75t181 -75t75 -181zM1152 640q0 159 -112.5 271.5t-271.5 112.5t-271.5 -112.5t-112.5 -271.5t112.5 -271.5t271.5 -112.5t271.5 112.5t112.5 271.5zM1280 640q0 -212 -150 -362t-362 -150t-362 150 t-150 362t150 362t362 150t362 -150t150 -362zM1408 640q0 130 -51 248.5t-136.5 204t-204 136.5t-248.5 51t-248.5 -51t-204 -136.5t-136.5 -204t-51 -248.5t51 -248.5t136.5 -204t204 -136.5t248.5 -51t248.5 51t204 136.5t136.5 204t51 248.5zM1536 640 q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
<glyph unicode="&#xf141;" horiz-adv-x="1408" d="M384 800v-192q0 -40 -28 -68t-68 -28h-192q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h192q40 0 68 -28t28 -68zM896 800v-192q0 -40 -28 -68t-68 -28h-192q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h192q40 0 68 -28t28 -68zM1408 800v-192q0 -40 -28 -68t-68 -28h-192 q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h192q40 0 68 -28t28 -68z" />
<glyph unicode="&#xf142;" horiz-adv-x="384" d="M384 288v-192q0 -40 -28 -68t-68 -28h-192q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h192q40 0 68 -28t28 -68zM384 800v-192q0 -40 -28 -68t-68 -28h-192q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h192q40 0 68 -28t28 -68zM384 1312v-192q0 -40 -28 -68t-68 -28h-192 q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h192q40 0 68 -28t28 -68z" />
<glyph unicode="&#xf143;" d="M512 256q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM863 162q-13 232 -177 396t-396 177q-14 1 -24 -9t-10 -23v-128q0 -13 8.5 -22t21.5 -10q154 -11 264 -121t121 -264q1 -13 10 -21.5t22 -8.5h128q13 0 23 10 t9 24zM1247 161q-5 154 -56 297.5t-139.5 260t-205 205t-260 139.5t-297.5 56q-14 1 -23 -9q-10 -10 -10 -23v-128q0 -13 9 -22t22 -10q204 -7 378 -111.5t278.5 -278.5t111.5 -378q1 -13 10 -22t22 -9h128q13 0 23 10q11 9 9 23zM1536 1120v-960q0 -119 -84.5 -203.5 t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
<glyph unicode="&#xf144;" d="M768 1408q209 0 385.5 -103t279.5 -279.5t103 -385.5t-103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103zM1152 585q32 18 32 55t-32 55l-544 320q-31 19 -64 1q-32 -19 -32 -56v-640q0 -37 32 -56 q16 -8 32 -8q17 0 32 9z" />
<glyph unicode="&#xf145;" horiz-adv-x="1792" d="M1024 1084l316 -316l-572 -572l-316 316zM813 105l618 618q19 19 19 45t-19 45l-362 362q-18 18 -45 18t-45 -18l-618 -618q-19 -19 -19 -45t19 -45l362 -362q18 -18 45 -18t45 18zM1702 742l-907 -908q-37 -37 -90.5 -37t-90.5 37l-126 126q56 56 56 136t-56 136 t-136 56t-136 -56l-125 126q-37 37 -37 90.5t37 90.5l907 906q37 37 90.5 37t90.5 -37l125 -125q-56 -56 -56 -136t56 -136t136 -56t136 56l126 -125q37 -37 37 -90.5t-37 -90.5z" />
<glyph unicode="&#xf146;" d="M1280 576v128q0 26 -19 45t-45 19h-896q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h896q26 0 45 19t19 45zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5 t84.5 -203.5z" />
<glyph unicode="&#xf147;" horiz-adv-x="1408" d="M1152 736v-64q0 -14 -9 -23t-23 -9h-832q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h832q14 0 23 -9t9 -23zM1280 288v832q0 66 -47 113t-113 47h-832q-66 0 -113 -47t-47 -113v-832q0 -66 47 -113t113 -47h832q66 0 113 47t47 113zM1408 1120v-832q0 -119 -84.5 -203.5 t-203.5 -84.5h-832q-119 0 -203.5 84.5t-84.5 203.5v832q0 119 84.5 203.5t203.5 84.5h832q119 0 203.5 -84.5t84.5 -203.5z" />
<glyph unicode="&#xf148;" horiz-adv-x="1024" d="M1018 933q-18 -37 -58 -37h-192v-864q0 -14 -9 -23t-23 -9h-704q-21 0 -29 18q-8 20 4 35l160 192q9 11 25 11h320v640h-192q-40 0 -58 37q-17 37 9 68l320 384q18 22 49 22t49 -22l320 -384q27 -32 9 -68z" />
<glyph unicode="&#xf149;" horiz-adv-x="1024" d="M32 1280h704q13 0 22.5 -9.5t9.5 -23.5v-863h192q40 0 58 -37t-9 -69l-320 -384q-18 -22 -49 -22t-49 22l-320 384q-26 31 -9 69q18 37 58 37h192v640h-320q-14 0 -25 11l-160 192q-13 14 -4 34q9 19 29 19z" />
<glyph unicode="&#xf14a;" d="M685 237l614 614q19 19 19 45t-19 45l-102 102q-19 19 -45 19t-45 -19l-467 -467l-211 211q-19 19 -45 19t-45 -19l-102 -102q-19 -19 -19 -45t19 -45l358 -358q19 -19 45 -19t45 19zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5 t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
<glyph unicode="&#xf14b;" d="M404 428l152 -152l-52 -52h-56v96h-96v56zM818 818q14 -13 -3 -30l-291 -291q-17 -17 -30 -3q-14 13 3 30l291 291q17 17 30 3zM544 128l544 544l-288 288l-544 -544v-288h288zM1152 736l92 92q28 28 28 68t-28 68l-152 152q-28 28 -68 28t-68 -28l-92 -92zM1536 1120 v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
<glyph unicode="&#xf14c;" d="M1280 608v480q0 26 -19 45t-45 19h-480q-42 0 -59 -39q-17 -41 14 -70l144 -144l-534 -534q-19 -19 -19 -45t19 -45l102 -102q19 -19 45 -19t45 19l534 534l144 -144q18 -19 45 -19q12 0 25 5q39 17 39 59zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960 q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
<glyph unicode="&#xf14d;" d="M1005 435l352 352q19 19 19 45t-19 45l-352 352q-30 31 -69 14q-40 -17 -40 -59v-160q-119 0 -216 -19.5t-162.5 -51t-114 -79t-76.5 -95.5t-44.5 -109t-21.5 -111.5t-5 -110.5q0 -181 167 -404q10 -12 25 -12q7 0 13 3q22 9 19 33q-44 354 62 473q46 52 130 75.5 t224 23.5v-160q0 -42 40 -59q12 -5 24 -5q26 0 45 19zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
<glyph unicode="&#xf14e;" d="M640 448l256 128l-256 128v-256zM1024 1039v-542l-512 -256v542zM1312 640q0 148 -73 273t-198 198t-273 73t-273 -73t-198 -198t-73 -273t73 -273t198 -198t273 -73t273 73t198 198t73 273zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103 t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
<glyph unicode="&#xf150;" d="M1145 861q18 -35 -5 -66l-320 -448q-19 -27 -52 -27t-52 27l-320 448q-23 31 -5 66q17 35 57 35h640q40 0 57 -35zM1280 160v960q0 13 -9.5 22.5t-22.5 9.5h-960q-13 0 -22.5 -9.5t-9.5 -22.5v-960q0 -13 9.5 -22.5t22.5 -9.5h960q13 0 22.5 9.5t9.5 22.5zM1536 1120 v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
<glyph unicode="&#xf151;" d="M1145 419q-17 -35 -57 -35h-640q-40 0 -57 35q-18 35 5 66l320 448q19 27 52 27t52 -27l320 -448q23 -31 5 -66zM1280 160v960q0 13 -9.5 22.5t-22.5 9.5h-960q-13 0 -22.5 -9.5t-9.5 -22.5v-960q0 -13 9.5 -22.5t22.5 -9.5h960q13 0 22.5 9.5t9.5 22.5zM1536 1120v-960 q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
<glyph unicode="&#xf152;" d="M1088 640q0 -33 -27 -52l-448 -320q-31 -23 -66 -5q-35 17 -35 57v640q0 40 35 57q35 18 66 -5l448 -320q27 -19 27 -52zM1280 160v960q0 14 -9 23t-23 9h-960q-14 0 -23 -9t-9 -23v-960q0 -14 9 -23t23 -9h960q14 0 23 9t9 23zM1536 1120v-960q0 -119 -84.5 -203.5 t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
<glyph unicode="&#xf153;" horiz-adv-x="1024" d="M976 229l35 -159q3 -12 -3 -22.5t-17 -14.5l-5 -1q-4 -2 -10.5 -3.5t-16 -4.5t-21.5 -5.5t-25.5 -5t-30 -5t-33.5 -4.5t-36.5 -3t-38.5 -1q-234 0 -409 130.5t-238 351.5h-95q-13 0 -22.5 9.5t-9.5 22.5v113q0 13 9.5 22.5t22.5 9.5h66q-2 57 1 105h-67q-14 0 -23 9 t-9 23v114q0 14 9 23t23 9h98q67 210 243.5 338t400.5 128q102 0 194 -23q11 -3 20 -15q6 -11 3 -24l-43 -159q-3 -13 -14 -19.5t-24 -2.5l-4 1q-4 1 -11.5 2.5l-17.5 3.5t-22.5 3.5t-26 3t-29 2.5t-29.5 1q-126 0 -226 -64t-150 -176h468q16 0 25 -12q10 -12 7 -26 l-24 -114q-5 -26 -32 -26h-488q-3 -37 0 -105h459q15 0 25 -12q9 -12 6 -27l-24 -112q-2 -11 -11 -18.5t-20 -7.5h-387q48 -117 149.5 -185.5t228.5 -68.5q18 0 36 1.5t33.5 3.5t29.5 4.5t24.5 5t18.5 4.5l12 3l5 2q13 5 26 -2q12 -7 15 -21z" />
<glyph unicode="&#xf154;" horiz-adv-x="1024" d="M1020 399v-367q0 -14 -9 -23t-23 -9h-956q-14 0 -23 9t-9 23v150q0 13 9.5 22.5t22.5 9.5h97v383h-95q-14 0 -23 9.5t-9 22.5v131q0 14 9 23t23 9h95v223q0 171 123.5 282t314.5 111q185 0 335 -125q9 -8 10 -20.5t-7 -22.5l-103 -127q-9 -11 -22 -12q-13 -2 -23 7 q-5 5 -26 19t-69 32t-93 18q-85 0 -137 -47t-52 -123v-215h305q13 0 22.5 -9t9.5 -23v-131q0 -13 -9.5 -22.5t-22.5 -9.5h-305v-379h414v181q0 13 9 22.5t23 9.5h162q14 0 23 -9.5t9 -22.5z" />
<glyph unicode="&#xf155;" horiz-adv-x="1024" d="M978 351q0 -153 -99.5 -263.5t-258.5 -136.5v-175q0 -14 -9 -23t-23 -9h-135q-13 0 -22.5 9.5t-9.5 22.5v175q-66 9 -127.5 31t-101.5 44.5t-74 48t-46.5 37.5t-17.5 18q-17 21 -2 41l103 135q7 10 23 12q15 2 24 -9l2 -2q113 -99 243 -125q37 -8 74 -8q81 0 142.5 43 t61.5 122q0 28 -15 53t-33.5 42t-58.5 37.5t-66 32t-80 32.5q-39 16 -61.5 25t-61.5 26.5t-62.5 31t-56.5 35.5t-53.5 42.5t-43.5 49t-35.5 58t-21 66.5t-8.5 78q0 138 98 242t255 134v180q0 13 9.5 22.5t22.5 9.5h135q14 0 23 -9t9 -23v-176q57 -6 110.5 -23t87 -33.5 t63.5 -37.5t39 -29t15 -14q17 -18 5 -38l-81 -146q-8 -15 -23 -16q-14 -3 -27 7q-3 3 -14.5 12t-39 26.5t-58.5 32t-74.5 26t-85.5 11.5q-95 0 -155 -43t-60 -111q0 -26 8.5 -48t29.5 -41.5t39.5 -33t56 -31t60.5 -27t70 -27.5q53 -20 81 -31.5t76 -35t75.5 -42.5t62 -50 t53 -63.5t31.5 -76.5t13 -94z" />
<glyph unicode="&#xf156;" horiz-adv-x="898" d="M898 1066v-102q0 -14 -9 -23t-23 -9h-168q-23 -144 -129 -234t-276 -110q167 -178 459 -536q14 -16 4 -34q-8 -18 -29 -18h-195q-16 0 -25 12q-306 367 -498 571q-9 9 -9 22v127q0 13 9.5 22.5t22.5 9.5h112q132 0 212.5 43t102.5 125h-427q-14 0 -23 9t-9 23v102 q0 14 9 23t23 9h413q-57 113 -268 113h-145q-13 0 -22.5 9.5t-9.5 22.5v133q0 14 9 23t23 9h832q14 0 23 -9t9 -23v-102q0 -14 -9 -23t-23 -9h-233q47 -61 64 -144h171q14 0 23 -9t9 -23z" />
<glyph unicode="&#xf157;" horiz-adv-x="1027" d="M603 0h-172q-13 0 -22.5 9t-9.5 23v330h-288q-13 0 -22.5 9t-9.5 23v103q0 13 9.5 22.5t22.5 9.5h288v85h-288q-13 0 -22.5 9t-9.5 23v104q0 13 9.5 22.5t22.5 9.5h214l-321 578q-8 16 0 32q10 16 28 16h194q19 0 29 -18l215 -425q19 -38 56 -125q10 24 30.5 68t27.5 61 l191 420q8 19 29 19h191q17 0 27 -16q9 -14 1 -31l-313 -579h215q13 0 22.5 -9.5t9.5 -22.5v-104q0 -14 -9.5 -23t-22.5 -9h-290v-85h290q13 0 22.5 -9.5t9.5 -22.5v-103q0 -14 -9.5 -23t-22.5 -9h-290v-330q0 -13 -9.5 -22.5t-22.5 -9.5z" />
<glyph unicode="&#xf158;" horiz-adv-x="1280" d="M1043 971q0 100 -65 162t-171 62h-320v-448h320q106 0 171 62t65 162zM1280 971q0 -193 -126.5 -315t-326.5 -122h-340v-118h505q14 0 23 -9t9 -23v-128q0 -14 -9 -23t-23 -9h-505v-192q0 -14 -9.5 -23t-22.5 -9h-167q-14 0 -23 9t-9 23v192h-224q-14 0 -23 9t-9 23v128 q0 14 9 23t23 9h224v118h-224q-14 0 -23 9t-9 23v149q0 13 9 22.5t23 9.5h224v629q0 14 9 23t23 9h539q200 0 326.5 -122t126.5 -315z" />
<glyph unicode="&#xf159;" horiz-adv-x="1792" d="M514 341l81 299h-159l75 -300q1 -1 1 -3t1 -3q0 1 0.5 3.5t0.5 3.5zM630 768l35 128h-292l32 -128h225zM822 768h139l-35 128h-70zM1271 340l78 300h-162l81 -299q0 -1 0.5 -3.5t1.5 -3.5q0 1 0.5 3t0.5 3zM1382 768l33 128h-297l34 -128h230zM1792 736v-64q0 -14 -9 -23 t-23 -9h-213l-164 -616q-7 -24 -31 -24h-159q-24 0 -31 24l-166 616h-209l-167 -616q-7 -24 -31 -24h-159q-11 0 -19.5 7t-10.5 17l-160 616h-208q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h175l-33 128h-142q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h109l-89 344q-5 15 5 28 q10 12 26 12h137q26 0 31 -24l90 -360h359l97 360q7 24 31 24h126q24 0 31 -24l98 -360h365l93 360q5 24 31 24h137q16 0 26 -12q10 -13 5 -28l-91 -344h111q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-145l-34 -128h179q14 0 23 -9t9 -23z" />
<glyph unicode="&#xf15a;" horiz-adv-x="1280" d="M1167 896q18 -182 -131 -258q117 -28 175 -103t45 -214q-7 -71 -32.5 -125t-64.5 -89t-97 -58.5t-121.5 -34.5t-145.5 -15v-255h-154v251q-80 0 -122 1v-252h-154v255q-18 0 -54 0.5t-55 0.5h-200l31 183h111q50 0 58 51v402h16q-6 1 -16 1v287q-13 68 -89 68h-111v164 l212 -1q64 0 97 1v252h154v-247q82 2 122 2v245h154v-252q79 -7 140 -22.5t113 -45t82.5 -78t36.5 -114.5zM952 351q0 36 -15 64t-37 46t-57.5 30.5t-65.5 18.5t-74 9t-69 3t-64.5 -1t-47.5 -1v-338q8 0 37 -0.5t48 -0.5t53 1.5t58.5 4t57 8.5t55.5 14t47.5 21t39.5 30 t24.5 40t9.5 51zM881 827q0 33 -12.5 58.5t-30.5 42t-48 28t-55 16.5t-61.5 8t-58 2.5t-54 -1t-39.5 -0.5v-307q5 0 34.5 -0.5t46.5 0t50 2t55 5.5t51.5 11t48.5 18.5t37 27t27 38.5t9 51z" />
<glyph unicode="&#xf15b;" d="M1024 1024v472q22 -14 36 -28l408 -408q14 -14 28 -36h-472zM896 992q0 -40 28 -68t68 -28h544v-1056q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1600q0 40 28 68t68 28h800v-544z" />
<glyph unicode="&#xf15c;" d="M1468 1060q14 -14 28 -36h-472v472q22 -14 36 -28zM992 896h544v-1056q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1600q0 40 28 68t68 28h800v-544q0 -40 28 -68t68 -28zM1152 160v64q0 14 -9 23t-23 9h-704q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h704 q14 0 23 9t9 23zM1152 416v64q0 14 -9 23t-23 9h-704q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h704q14 0 23 9t9 23zM1152 672v64q0 14 -9 23t-23 9h-704q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h704q14 0 23 9t9 23z" />
<glyph unicode="&#xf15d;" horiz-adv-x="1664" d="M1191 1128h177l-72 218l-12 47q-2 16 -2 20h-4l-3 -20q0 -1 -3.5 -18t-7.5 -29zM736 96q0 -12 -10 -24l-319 -319q-10 -9 -23 -9q-12 0 -23 9l-320 320q-15 16 -7 35q8 20 30 20h192v1376q0 14 9 23t23 9h192q14 0 23 -9t9 -23v-1376h192q14 0 23 -9t9 -23zM1572 -23 v-233h-584v90l369 529q12 18 21 27l11 9v3q-2 0 -6.5 -0.5t-7.5 -0.5q-12 -3 -30 -3h-232v-115h-120v229h567v-89l-369 -530q-6 -8 -21 -26l-11 -11v-2l14 2q9 2 30 2h248v119h121zM1661 874v-106h-288v106h75l-47 144h-243l-47 -144h75v-106h-287v106h70l230 662h162 l230 -662h70z" />
<glyph unicode="&#xf15e;" horiz-adv-x="1664" d="M1191 104h177l-72 218l-12 47q-2 16 -2 20h-4l-3 -20q0 -1 -3.5 -18t-7.5 -29zM736 96q0 -12 -10 -24l-319 -319q-10 -9 -23 -9q-12 0 -23 9l-320 320q-15 16 -7 35q8 20 30 20h192v1376q0 14 9 23t23 9h192q14 0 23 -9t9 -23v-1376h192q14 0 23 -9t9 -23zM1661 -150 v-106h-288v106h75l-47 144h-243l-47 -144h75v-106h-287v106h70l230 662h162l230 -662h70zM1572 1001v-233h-584v90l369 529q12 18 21 27l11 9v3q-2 0 -6.5 -0.5t-7.5 -0.5q-12 -3 -30 -3h-232v-115h-120v229h567v-89l-369 -530q-6 -8 -21 -26l-11 -10v-3l14 3q9 1 30 1h248 v119h121z" />
<glyph unicode="&#xf160;" horiz-adv-x="1792" d="M736 96q0 -12 -10 -24l-319 -319q-10 -9 -23 -9q-12 0 -23 9l-320 320q-15 16 -7 35q8 20 30 20h192v1376q0 14 9 23t23 9h192q14 0 23 -9t9 -23v-1376h192q14 0 23 -9t9 -23zM1792 -32v-192q0 -14 -9 -23t-23 -9h-832q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h832 q14 0 23 -9t9 -23zM1600 480v-192q0 -14 -9 -23t-23 -9h-640q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h640q14 0 23 -9t9 -23zM1408 992v-192q0 -14 -9 -23t-23 -9h-448q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h448q14 0 23 -9t9 -23zM1216 1504v-192q0 -14 -9 -23t-23 -9h-256 q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h256q14 0 23 -9t9 -23z" />
<glyph unicode="&#xf161;" horiz-adv-x="1792" d="M1216 -32v-192q0 -14 -9 -23t-23 -9h-256q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h256q14 0 23 -9t9 -23zM736 96q0 -12 -10 -24l-319 -319q-10 -9 -23 -9q-12 0 -23 9l-320 320q-15 16 -7 35q8 20 30 20h192v1376q0 14 9 23t23 9h192q14 0 23 -9t9 -23v-1376h192 q14 0 23 -9t9 -23zM1408 480v-192q0 -14 -9 -23t-23 -9h-448q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h448q14 0 23 -9t9 -23zM1600 992v-192q0 -14 -9 -23t-23 -9h-640q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h640q14 0 23 -9t9 -23zM1792 1504v-192q0 -14 -9 -23t-23 -9h-832 q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h832q14 0 23 -9t9 -23z" />
<glyph unicode="&#xf162;" d="M1346 223q0 63 -44 116t-103 53q-52 0 -83 -37t-31 -94t36.5 -95t104.5 -38q50 0 85 27t35 68zM736 96q0 -12 -10 -24l-319 -319q-10 -9 -23 -9q-12 0 -23 9l-320 320q-15 16 -7 35q8 20 30 20h192v1376q0 14 9 23t23 9h192q14 0 23 -9t9 -23v-1376h192q14 0 23 -9t9 -23 zM1486 165q0 -62 -13 -121.5t-41 -114t-68 -95.5t-98.5 -65.5t-127.5 -24.5q-62 0 -108 16q-24 8 -42 15l39 113q15 -7 31 -11q37 -13 75 -13q84 0 134.5 58.5t66.5 145.5h-2q-21 -23 -61.5 -37t-84.5 -14q-106 0 -173 71.5t-67 172.5q0 105 72 178t181 73q123 0 205 -94.5 t82 -252.5zM1456 882v-114h-469v114h167v432q0 7 0.5 19t0.5 17v16h-2l-7 -12q-8 -13 -26 -31l-62 -58l-82 86l192 185h123v-654h165z" />
<glyph unicode="&#xf163;" d="M1346 1247q0 63 -44 116t-103 53q-52 0 -83 -37t-31 -94t36.5 -95t104.5 -38q50 0 85 27t35 68zM736 96q0 -12 -10 -24l-319 -319q-10 -9 -23 -9q-12 0 -23 9l-320 320q-15 16 -7 35q8 20 30 20h192v1376q0 14 9 23t23 9h192q14 0 23 -9t9 -23v-1376h192q14 0 23 -9 t9 -23zM1456 -142v-114h-469v114h167v432q0 7 0.5 19t0.5 17v16h-2l-7 -12q-8 -13 -26 -31l-62 -58l-82 86l192 185h123v-654h165zM1486 1189q0 -62 -13 -121.5t-41 -114t-68 -95.5t-98.5 -65.5t-127.5 -24.5q-62 0 -108 16q-24 8 -42 15l39 113q15 -7 31 -11q37 -13 75 -13 q84 0 134.5 58.5t66.5 145.5h-2q-21 -23 -61.5 -37t-84.5 -14q-106 0 -173 71.5t-67 172.5q0 105 72 178t181 73q123 0 205 -94.5t82 -252.5z" />
<glyph unicode="&#xf164;" horiz-adv-x="1664" d="M256 192q0 26 -19 45t-45 19q-27 0 -45.5 -19t-18.5 -45q0 -27 18.5 -45.5t45.5 -18.5q26 0 45 18.5t19 45.5zM416 704v-640q0 -26 -19 -45t-45 -19h-288q-26 0 -45 19t-19 45v640q0 26 19 45t45 19h288q26 0 45 -19t19 -45zM1600 704q0 -86 -55 -149q15 -44 15 -76 q3 -76 -43 -137q17 -56 0 -117q-15 -57 -54 -94q9 -112 -49 -181q-64 -76 -197 -78h-36h-76h-17q-66 0 -144 15.5t-121.5 29t-120.5 39.5q-123 43 -158 44q-26 1 -45 19.5t-19 44.5v641q0 25 18 43.5t43 20.5q24 2 76 59t101 121q68 87 101 120q18 18 31 48t17.5 48.5 t13.5 60.5q7 39 12.5 61t19.5 52t34 50q19 19 45 19q46 0 82.5 -10.5t60 -26t40 -40.5t24 -45t12 -50t5 -45t0.5 -39q0 -38 -9.5 -76t-19 -60t-27.5 -56q-3 -6 -10 -18t-11 -22t-8 -24h277q78 0 135 -57t57 -135z" />
<glyph unicode="&#xf165;" horiz-adv-x="1664" d="M256 960q0 -26 -19 -45t-45 -19q-27 0 -45.5 19t-18.5 45q0 27 18.5 45.5t45.5 18.5q26 0 45 -18.5t19 -45.5zM416 448v640q0 26 -19 45t-45 19h-288q-26 0 -45 -19t-19 -45v-640q0 -26 19 -45t45 -19h288q26 0 45 19t19 45zM1545 597q55 -61 55 -149q-1 -78 -57.5 -135 t-134.5 -57h-277q4 -14 8 -24t11 -22t10 -18q18 -37 27 -57t19 -58.5t10 -76.5q0 -24 -0.5 -39t-5 -45t-12 -50t-24 -45t-40 -40.5t-60 -26t-82.5 -10.5q-26 0 -45 19q-20 20 -34 50t-19.5 52t-12.5 61q-9 42 -13.5 60.5t-17.5 48.5t-31 48q-33 33 -101 120q-49 64 -101 121 t-76 59q-25 2 -43 20.5t-18 43.5v641q0 26 19 44.5t45 19.5q35 1 158 44q77 26 120.5 39.5t121.5 29t144 15.5h17h76h36q133 -2 197 -78q58 -69 49 -181q39 -37 54 -94q17 -61 0 -117q46 -61 43 -137q0 -32 -15 -76z" />
<glyph unicode="&#xf166;" d="M919 233v157q0 50 -29 50q-17 0 -33 -16v-224q16 -16 33 -16q29 0 29 49zM1103 355h66v34q0 51 -33 51t-33 -51v-34zM532 621v-70h-80v-423h-74v423h-78v70h232zM733 495v-367h-67v40q-39 -45 -76 -45q-33 0 -42 28q-6 16 -6 54v290h66v-270q0 -24 1 -26q1 -15 15 -15 q20 0 42 31v280h67zM985 384v-146q0 -52 -7 -73q-12 -42 -53 -42q-35 0 -68 41v-36h-67v493h67v-161q32 40 68 40q41 0 53 -42q7 -21 7 -74zM1236 255v-9q0 -29 -2 -43q-3 -22 -15 -40q-27 -40 -80 -40q-52 0 -81 38q-21 27 -21 86v129q0 59 20 86q29 38 80 38t78 -38 q21 -28 21 -86v-76h-133v-65q0 -51 34 -51q24 0 30 26q0 1 0.5 7t0.5 16.5v21.5h68zM785 1079v-156q0 -51 -32 -51t-32 51v156q0 52 32 52t32 -52zM1318 366q0 177 -19 260q-10 44 -43 73.5t-76 34.5q-136 15 -412 15q-275 0 -411 -15q-44 -5 -76.5 -34.5t-42.5 -73.5 q-20 -87 -20 -260q0 -176 20 -260q10 -43 42.5 -73t75.5 -35q137 -15 412 -15t412 15q43 5 75.5 35t42.5 73q20 84 20 260zM563 1017l90 296h-75l-51 -195l-53 195h-78l24 -69t23 -69q35 -103 46 -158v-201h74v201zM852 936v130q0 58 -21 87q-29 38 -78 38q-51 0 -78 -38 q-21 -29 -21 -87v-130q0 -58 21 -87q27 -38 78 -38q49 0 78 38q21 27 21 87zM1033 816h67v370h-67v-283q-22 -31 -42 -31q-15 0 -16 16q-1 2 -1 26v272h-67v-293q0 -37 6 -55q11 -27 43 -27q36 0 77 45v-40zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960 q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
<glyph unicode="&#xf167;" d="M971 292v-211q0 -67 -39 -67q-23 0 -45 22v301q22 22 45 22q39 0 39 -67zM1309 291v-46h-90v46q0 68 45 68t45 -68zM343 509h107v94h-312v-94h105v-569h100v569zM631 -60h89v494h-89v-378q-30 -42 -57 -42q-18 0 -21 21q-1 3 -1 35v364h-89v-391q0 -49 8 -73 q12 -37 58 -37q48 0 102 61v-54zM1060 88v197q0 73 -9 99q-17 56 -71 56q-50 0 -93 -54v217h-89v-663h89v48q45 -55 93 -55q54 0 71 55q9 27 9 100zM1398 98v13h-91q0 -51 -2 -61q-7 -36 -40 -36q-46 0 -46 69v87h179v103q0 79 -27 116q-39 51 -106 51q-68 0 -107 -51 q-28 -37 -28 -116v-173q0 -79 29 -116q39 -51 108 -51q72 0 108 53q18 27 21 54q2 9 2 58zM790 1011v210q0 69 -43 69t-43 -69v-210q0 -70 43 -70t43 70zM1509 260q0 -234 -26 -350q-14 -59 -58 -99t-102 -46q-184 -21 -555 -21t-555 21q-58 6 -102.5 46t-57.5 99 q-26 112 -26 350q0 234 26 350q14 59 58 99t103 47q183 20 554 20t555 -20q58 -7 102.5 -47t57.5 -99q26 -112 26 -350zM511 1536h102l-121 -399v-271h-100v271q-14 74 -61 212q-37 103 -65 187h106l71 -263zM881 1203v-175q0 -81 -28 -118q-37 -51 -106 -51q-67 0 -105 51 q-28 38 -28 118v175q0 80 28 117q38 51 105 51q69 0 106 -51q28 -37 28 -117zM1216 1365v-499h-91v55q-53 -62 -103 -62q-46 0 -59 37q-8 24 -8 75v394h91v-367q0 -33 1 -35q3 -22 21 -22q27 0 57 43v381h91z" />
<glyph unicode="&#xf168;" horiz-adv-x="1408" d="M597 869q-10 -18 -257 -456q-27 -46 -65 -46h-239q-21 0 -31 17t0 36l253 448q1 0 0 1l-161 279q-12 22 -1 37q9 15 32 15h239q40 0 66 -45zM1403 1511q11 -16 0 -37l-528 -934v-1l336 -615q11 -20 1 -37q-10 -15 -32 -15h-239q-42 0 -66 45l-339 622q18 32 531 942 q25 45 64 45h241q22 0 31 -15z" />
<glyph unicode="&#xf169;" d="M685 771q0 1 -126 222q-21 34 -52 34h-184q-18 0 -26 -11q-7 -12 1 -29l125 -216v-1l-196 -346q-9 -14 0 -28q8 -13 24 -13h185q31 0 50 36zM1309 1268q-7 12 -24 12h-187q-30 0 -49 -35l-411 -729q1 -2 262 -481q20 -35 52 -35h184q18 0 25 12q8 13 -1 28l-260 476v1 l409 723q8 16 0 28zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
<glyph unicode="&#xf16a;" horiz-adv-x="1792" d="M1280 640q0 37 -30 54l-512 320q-31 20 -65 2q-33 -18 -33 -56v-640q0 -38 33 -56q16 -8 31 -8q20 0 34 10l512 320q30 17 30 54zM1792 640q0 -96 -1 -150t-8.5 -136.5t-22.5 -147.5q-16 -73 -69 -123t-124 -58q-222 -25 -671 -25t-671 25q-71 8 -124.5 58t-69.5 123 q-14 65 -21.5 147.5t-8.5 136.5t-1 150t1 150t8.5 136.5t22.5 147.5q16 73 69 123t124 58q222 25 671 25t671 -25q71 -8 124.5 -58t69.5 -123q14 -65 21.5 -147.5t8.5 -136.5t1 -150z" />
<glyph unicode="&#xf16b;" horiz-adv-x="1792" d="M402 829l494 -305l-342 -285l-490 319zM1388 274v-108l-490 -293v-1l-1 1l-1 -1v1l-489 293v108l147 -96l342 284v2l1 -1l1 1v-2l343 -284zM554 1418l342 -285l-494 -304l-338 270zM1390 829l338 -271l-489 -319l-343 285zM1239 1418l489 -319l-338 -270l-494 304z" />
<glyph unicode="&#xf16c;" horiz-adv-x="1408" d="M928 135v-151l-707 -1v151zM1169 481v-701l-1 -35v-1h-1132l-35 1h-1v736h121v-618h928v618h120zM241 393l704 -65l-13 -150l-705 65zM309 709l683 -183l-39 -146l-683 183zM472 1058l609 -360l-77 -130l-609 360zM832 1389l398 -585l-124 -85l-399 584zM1285 1536 l121 -697l-149 -26l-121 697z" />
<glyph unicode="&#xf16d;" d="M1362 110v648h-135q20 -63 20 -131q0 -126 -64 -232.5t-174 -168.5t-240 -62q-197 0 -337 135.5t-140 327.5q0 68 20 131h-141v-648q0 -26 17.5 -43.5t43.5 -17.5h1069q25 0 43 17.5t18 43.5zM1078 643q0 124 -90.5 211.5t-218.5 87.5q-127 0 -217.5 -87.5t-90.5 -211.5 t90.5 -211.5t217.5 -87.5q128 0 218.5 87.5t90.5 211.5zM1362 1003v165q0 28 -20 48.5t-49 20.5h-174q-29 0 -49 -20.5t-20 -48.5v-165q0 -29 20 -49t49 -20h174q29 0 49 20t20 49zM1536 1211v-1142q0 -81 -58 -139t-139 -58h-1142q-81 0 -139 58t-58 139v1142q0 81 58 139 t139 58h1142q81 0 139 -58t58 -139z" />
<glyph unicode="&#xf16e;" d="M1248 1408q119 0 203.5 -84.5t84.5 -203.5v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960zM698 640q0 88 -62 150t-150 62t-150 -62t-62 -150t62 -150t150 -62t150 62t62 150zM1262 640q0 88 -62 150 t-150 62t-150 -62t-62 -150t62 -150t150 -62t150 62t62 150z" />
<glyph unicode="&#xf170;" d="M768 914l201 -306h-402zM1133 384h94l-459 691l-459 -691h94l104 160h522zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
<glyph unicode="&#xf171;" horiz-adv-x="1408" d="M815 677q8 -63 -50.5 -101t-111.5 -6q-39 17 -53.5 58t-0.5 82t52 58q36 18 72.5 12t64 -35.5t27.5 -67.5zM926 698q-14 107 -113 164t-197 13q-63 -28 -100.5 -88.5t-34.5 -129.5q4 -91 77.5 -155t165.5 -56q91 8 152 84t50 168zM1165 1240q-20 27 -56 44.5t-58 22 t-71 12.5q-291 47 -566 -2q-43 -7 -66 -12t-55 -22t-50 -43q30 -28 76 -45.5t73.5 -22t87.5 -11.5q228 -29 448 -1q63 8 89.5 12t72.5 21.5t75 46.5zM1222 205q-8 -26 -15.5 -76.5t-14 -84t-28.5 -70t-58 -56.5q-86 -48 -189.5 -71.5t-202 -22t-201.5 18.5q-46 8 -81.5 18 t-76.5 27t-73 43.5t-52 61.5q-25 96 -57 292l6 16l18 9q223 -148 506.5 -148t507.5 148q21 -6 24 -23t-5 -45t-8 -37zM1403 1166q-26 -167 -111 -655q-5 -30 -27 -56t-43.5 -40t-54.5 -31q-252 -126 -610 -88q-248 27 -394 139q-15 12 -25.5 26.5t-17 35t-9 34t-6 39.5 t-5.5 35q-9 50 -26.5 150t-28 161.5t-23.5 147.5t-22 158q3 26 17.5 48.5t31.5 37.5t45 30t46 22.5t48 18.5q125 46 313 64q379 37 676 -50q155 -46 215 -122q16 -20 16.5 -51t-5.5 -54z" />
<glyph unicode="&#xf172;" d="M848 666q0 43 -41 66t-77 1q-43 -20 -42.5 -72.5t43.5 -70.5q39 -23 81 4t36 72zM928 682q8 -66 -36 -121t-110 -61t-119 40t-56 113q-2 49 25.5 93t72.5 64q70 31 141.5 -10t81.5 -118zM1100 1073q-20 -21 -53.5 -34t-53 -16t-63.5 -8q-155 -20 -324 0q-44 6 -63 9.5 t-52.5 16t-54.5 32.5q13 19 36 31t40 15.5t47 8.5q198 35 408 1q33 -5 51 -8.5t43 -16t39 -31.5zM1142 327q0 7 5.5 26.5t3 32t-17.5 16.5q-161 -106 -365 -106t-366 106l-12 -6l-5 -12q26 -154 41 -210q47 -81 204 -108q249 -46 428 53q34 19 49 51.5t22.5 85.5t12.5 71z M1272 1020q9 53 -8 75q-43 55 -155 88q-216 63 -487 36q-132 -12 -226 -46q-38 -15 -59.5 -25t-47 -34t-29.5 -54q8 -68 19 -138t29 -171t24 -137q1 -5 5 -31t7 -36t12 -27t22 -28q105 -80 284 -100q259 -28 440 63q24 13 39.5 23t31 29t19.5 40q48 267 80 473zM1536 1120 v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
<glyph unicode="&#xf173;" horiz-adv-x="1024" d="M944 207l80 -237q-23 -35 -111 -66t-177 -32q-104 -2 -190.5 26t-142.5 74t-95 106t-55.5 120t-16.5 118v544h-168v215q72 26 129 69.5t91 90t58 102t34 99t15 88.5q1 5 4.5 8.5t7.5 3.5h244v-424h333v-252h-334v-518q0 -30 6.5 -56t22.5 -52.5t49.5 -41.5t81.5 -14 q78 2 134 29z" />
<glyph unicode="&#xf174;" d="M1136 75l-62 183q-44 -22 -103 -22q-36 -1 -62 10.5t-38.5 31.5t-17.5 40.5t-5 43.5v398h257v194h-256v326h-188q-8 0 -9 -10q-5 -44 -17.5 -87t-39 -95t-77 -95t-118.5 -68v-165h130v-418q0 -57 21.5 -115t65 -111t121 -85.5t176.5 -30.5q69 1 136.5 25t85.5 50z M1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
<glyph unicode="&#xf175;" horiz-adv-x="768" d="M765 237q8 -19 -5 -35l-350 -384q-10 -10 -23 -10q-14 0 -24 10l-355 384q-13 16 -5 35q9 19 29 19h224v1248q0 14 9 23t23 9h192q14 0 23 -9t9 -23v-1248h224q21 0 29 -19z" />
<glyph unicode="&#xf176;" horiz-adv-x="768" d="M765 1043q-9 -19 -29 -19h-224v-1248q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v1248h-224q-21 0 -29 19t5 35l350 384q10 10 23 10q14 0 24 -10l355 -384q13 -16 5 -35z" />
<glyph unicode="&#xf177;" horiz-adv-x="1792" d="M1792 736v-192q0 -14 -9 -23t-23 -9h-1248v-224q0 -21 -19 -29t-35 5l-384 350q-10 10 -10 23q0 14 10 24l384 354q16 14 35 6q19 -9 19 -29v-224h1248q14 0 23 -9t9 -23z" />
<glyph unicode="&#xf178;" horiz-adv-x="1792" d="M1728 643q0 -14 -10 -24l-384 -354q-16 -14 -35 -6q-19 9 -19 29v224h-1248q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h1248v224q0 21 19 29t35 -5l384 -350q10 -10 10 -23z" />
<glyph unicode="&#xf179;" horiz-adv-x="1408" d="M1393 321q-39 -125 -123 -250q-129 -196 -257 -196q-49 0 -140 32q-86 32 -151 32q-61 0 -142 -33q-81 -34 -132 -34q-152 0 -301 259q-147 261 -147 503q0 228 113 374q112 144 284 144q72 0 177 -30q104 -30 138 -30q45 0 143 34q102 34 173 34q119 0 213 -65 q52 -36 104 -100q-79 -67 -114 -118q-65 -94 -65 -207q0 -124 69 -223t158 -126zM1017 1494q0 -61 -29 -136q-30 -75 -93 -138q-54 -54 -108 -72q-37 -11 -104 -17q3 149 78 257q74 107 250 148q1 -3 2.5 -11t2.5 -11q0 -4 0.5 -10t0.5 -10z" />
<glyph unicode="&#xf17a;" horiz-adv-x="1664" d="M682 530v-651l-682 94v557h682zM682 1273v-659h-682v565zM1664 530v-786l-907 125v661h907zM1664 1408v-794h-907v669z" />
<glyph unicode="&#xf17b;" horiz-adv-x="1408" d="M493 1053q16 0 27.5 11.5t11.5 27.5t-11.5 27.5t-27.5 11.5t-27 -11.5t-11 -27.5t11 -27.5t27 -11.5zM915 1053q16 0 27 11.5t11 27.5t-11 27.5t-27 11.5t-27.5 -11.5t-11.5 -27.5t11.5 -27.5t27.5 -11.5zM103 869q42 0 72 -30t30 -72v-430q0 -43 -29.5 -73t-72.5 -30 t-73 30t-30 73v430q0 42 30 72t73 30zM1163 850v-666q0 -46 -32 -78t-77 -32h-75v-227q0 -43 -30 -73t-73 -30t-73 30t-30 73v227h-138v-227q0 -43 -30 -73t-73 -30q-42 0 -72 30t-30 73l-1 227h-74q-46 0 -78 32t-32 78v666h918zM931 1255q107 -55 171 -153.5t64 -215.5 h-925q0 117 64 215.5t172 153.5l-71 131q-7 13 5 20q13 6 20 -6l72 -132q95 42 201 42t201 -42l72 132q7 12 20 6q12 -7 5 -20zM1408 767v-430q0 -43 -30 -73t-73 -30q-42 0 -72 30t-30 73v430q0 43 30 72.5t72 29.5q43 0 73 -29.5t30 -72.5z" />
<glyph unicode="&#xf17c;" d="M663 1125q-11 -1 -15.5 -10.5t-8.5 -9.5q-5 -1 -5 5q0 12 19 15h10zM750 1111q-4 -1 -11.5 6.5t-17.5 4.5q24 11 32 -2q3 -6 -3 -9zM399 684q-4 1 -6 -3t-4.5 -12.5t-5.5 -13.5t-10 -13q-7 -10 -1 -12q4 -1 12.5 7t12.5 18q1 3 2 7t2 6t1.5 4.5t0.5 4v3t-1 2.5t-3 2z M1254 325q0 18 -55 42q4 15 7.5 27.5t5 26t3 21.5t0.5 22.5t-1 19.5t-3.5 22t-4 20.5t-5 25t-5.5 26.5q-10 48 -47 103t-72 75q24 -20 57 -83q87 -162 54 -278q-11 -40 -50 -42q-31 -4 -38.5 18.5t-8 83.5t-11.5 107q-9 39 -19.5 69t-19.5 45.5t-15.5 24.5t-13 15t-7.5 7 q-14 62 -31 103t-29.5 56t-23.5 33t-15 40q-4 21 6 53.5t4.5 49.5t-44.5 25q-15 3 -44.5 18t-35.5 16q-8 1 -11 26t8 51t36 27q37 3 51 -30t4 -58q-11 -19 -2 -26.5t30 -0.5q13 4 13 36v37q-5 30 -13.5 50t-21 30.5t-23.5 15t-27 7.5q-107 -8 -89 -134q0 -15 -1 -15 q-9 9 -29.5 10.5t-33 -0.5t-15.5 5q1 57 -16 90t-45 34q-27 1 -41.5 -27.5t-16.5 -59.5q-1 -15 3.5 -37t13 -37.5t15.5 -13.5q10 3 16 14q4 9 -7 8q-7 0 -15.5 14.5t-9.5 33.5q-1 22 9 37t34 14q17 0 27 -21t9.5 -39t-1.5 -22q-22 -15 -31 -29q-8 -12 -27.5 -23.5 t-20.5 -12.5q-13 -14 -15.5 -27t7.5 -18q14 -8 25 -19.5t16 -19t18.5 -13t35.5 -6.5q47 -2 102 15q2 1 23 7t34.5 10.5t29.5 13t21 17.5q9 14 20 8q5 -3 6.5 -8.5t-3 -12t-16.5 -9.5q-20 -6 -56.5 -21.5t-45.5 -19.5q-44 -19 -70 -23q-25 -5 -79 2q-10 2 -9 -2t17 -19 q25 -23 67 -22q17 1 36 7t36 14t33.5 17.5t30 17t24.5 12t17.5 2.5t8.5 -11q0 -2 -1 -4.5t-4 -5t-6 -4.5t-8.5 -5t-9 -4.5t-10 -5t-9.5 -4.5q-28 -14 -67.5 -44t-66.5 -43t-49 -1q-21 11 -63 73q-22 31 -25 22q-1 -3 -1 -10q0 -25 -15 -56.5t-29.5 -55.5t-21 -58t11.5 -63 q-23 -6 -62.5 -90t-47.5 -141q-2 -18 -1.5 -69t-5.5 -59q-8 -24 -29 -3q-32 31 -36 94q-2 28 4 56q4 19 -1 18l-4 -5q-36 -65 10 -166q5 -12 25 -28t24 -20q20 -23 104 -90.5t93 -76.5q16 -15 17.5 -38t-14 -43t-45.5 -23q8 -15 29 -44.5t28 -54t7 -70.5q46 24 7 92 q-4 8 -10.5 16t-9.5 12t-2 6q3 5 13 9.5t20 -2.5q46 -52 166 -36q133 15 177 87q23 38 34 30q12 -6 10 -52q-1 -25 -23 -92q-9 -23 -6 -37.5t24 -15.5q3 19 14.5 77t13.5 90q2 21 -6.5 73.5t-7.5 97t23 70.5q15 18 51 18q1 37 34.5 53t72.5 10.5t60 -22.5zM626 1152 q3 17 -2.5 30t-11.5 15q-9 2 -9 -7q2 -5 5 -6q10 0 7 -15q-3 -20 8 -20q3 0 3 3zM1045 955q-2 8 -6.5 11.5t-13 5t-14.5 5.5q-5 3 -9.5 8t-7 8t-5.5 6.5t-4 4t-4 -1.5q-14 -16 7 -43.5t39 -31.5q9 -1 14.5 8t3.5 20zM867 1168q0 11 -5 19.5t-11 12.5t-9 3q-14 -1 -7 -7l4 -2 q14 -4 18 -31q0 -3 8 2zM921 1401q0 2 -2.5 5t-9 7t-9.5 6q-15 15 -24 15q-9 -1 -11.5 -7.5t-1 -13t-0.5 -12.5q-1 -4 -6 -10.5t-6 -9t3 -8.5q4 -3 8 0t11 9t15 9q1 1 9 1t15 2t9 7zM1486 60q20 -12 31 -24.5t12 -24t-2.5 -22.5t-15.5 -22t-23.5 -19.5t-30 -18.5 t-31.5 -16.5t-32 -15.5t-27 -13q-38 -19 -85.5 -56t-75.5 -64q-17 -16 -68 -19.5t-89 14.5q-18 9 -29.5 23.5t-16.5 25.5t-22 19.5t-47 9.5q-44 1 -130 1q-19 0 -57 -1.5t-58 -2.5q-44 -1 -79.5 -15t-53.5 -30t-43.5 -28.5t-53.5 -11.5q-29 1 -111 31t-146 43q-19 4 -51 9.5 t-50 9t-39.5 9.5t-33.5 14.5t-17 19.5q-10 23 7 66.5t18 54.5q1 16 -4 40t-10 42.5t-4.5 36.5t10.5 27q14 12 57 14t60 12q30 18 42 35t12 51q21 -73 -32 -106q-32 -20 -83 -15q-34 3 -43 -10q-13 -15 5 -57q2 -6 8 -18t8.5 -18t4.5 -17t1 -22q0 -15 -17 -49t-14 -48 q3 -17 37 -26q20 -6 84.5 -18.5t99.5 -20.5q24 -6 74 -22t82.5 -23t55.5 -4q43 6 64.5 28t23 48t-7.5 58.5t-19 52t-20 36.5q-121 190 -169 242q-68 74 -113 40q-11 -9 -15 15q-3 16 -2 38q1 29 10 52t24 47t22 42q8 21 26.5 72t29.5 78t30 61t39 54q110 143 124 195 q-12 112 -16 310q-2 90 24 151.5t106 104.5q39 21 104 21q53 1 106 -13.5t89 -41.5q57 -42 91.5 -121.5t29.5 -147.5q-5 -95 30 -214q34 -113 133 -218q55 -59 99.5 -163t59.5 -191q8 -49 5 -84.5t-12 -55.5t-20 -22q-10 -2 -23.5 -19t-27 -35.5t-40.5 -33.5t-61 -14 q-18 1 -31.5 5t-22.5 13.5t-13.5 15.5t-11.5 20.5t-9 19.5q-22 37 -41 30t-28 -49t7 -97q20 -70 1 -195q-10 -65 18 -100.5t73 -33t85 35.5q59 49 89.5 66.5t103.5 42.5q53 18 77 36.5t18.5 34.5t-25 28.5t-51.5 23.5q-33 11 -49.5 48t-15 72.5t15.5 47.5q1 -31 8 -56.5 t14.5 -40.5t20.5 -28.5t21 -19t21.5 -13t16.5 -9.5z" />
<glyph unicode="&#xf17d;" d="M1024 36q-42 241 -140 498h-2l-2 -1q-16 -6 -43 -16.5t-101 -49t-137 -82t-131 -114.5t-103 -148l-15 11q184 -150 418 -150q132 0 256 52zM839 643q-21 49 -53 111q-311 -93 -673 -93q-1 -7 -1 -21q0 -124 44 -236.5t124 -201.5q50 89 123.5 166.5t142.5 124.5t130.5 81 t99.5 48l37 13q4 1 13 3.5t13 4.5zM732 855q-120 213 -244 378q-138 -65 -234 -186t-128 -272q302 0 606 80zM1416 536q-210 60 -409 29q87 -239 128 -469q111 75 185 189.5t96 250.5zM611 1277q-1 0 -2 -1q1 1 2 1zM1201 1132q-185 164 -433 164q-76 0 -155 -19 q131 -170 246 -382q69 26 130 60.5t96.5 61.5t65.5 57t37.5 40.5zM1424 647q-3 232 -149 410l-1 -1q-9 -12 -19 -24.5t-43.5 -44.5t-71 -60.5t-100 -65t-131.5 -64.5q25 -53 44 -95q2 -6 6.5 -17.5t7.5 -16.5q36 5 74.5 7t73.5 2t69 -1.5t64 -4t56.5 -5.5t48 -6.5t36.5 -6 t25 -4.5zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
<glyph unicode="&#xf17e;" d="M1173 473q0 50 -19.5 91.5t-48.5 68.5t-73 49t-82.5 34t-87.5 23l-104 24q-30 7 -44 10.5t-35 11.5t-30 16t-16.5 21t-7.5 30q0 77 144 77q43 0 77 -12t54 -28.5t38 -33.5t40 -29t48 -12q47 0 75.5 32t28.5 77q0 55 -56 99.5t-142 67.5t-182 23q-68 0 -132 -15.5 t-119.5 -47t-89 -87t-33.5 -128.5q0 -61 19 -106.5t56 -75.5t80 -48.5t103 -32.5l146 -36q90 -22 112 -36q32 -20 32 -60q0 -39 -40 -64.5t-105 -25.5q-51 0 -91.5 16t-65 38.5t-45.5 45t-46 38.5t-54 16q-50 0 -75.5 -30t-25.5 -75q0 -92 122 -157.5t291 -65.5 q73 0 140 18.5t122.5 53.5t88.5 93.5t33 131.5zM1536 256q0 -159 -112.5 -271.5t-271.5 -112.5q-130 0 -234 80q-77 -16 -150 -16q-143 0 -273.5 55.5t-225 150t-150 225t-55.5 273.5q0 73 16 150q-80 104 -80 234q0 159 112.5 271.5t271.5 112.5q130 0 234 -80 q77 16 150 16q143 0 273.5 -55.5t225 -150t150 -225t55.5 -273.5q0 -73 -16 -150q80 -104 80 -234z" />
<glyph unicode="&#xf180;" horiz-adv-x="1280" d="M1000 1102l37 194q5 23 -9 40t-35 17h-712q-23 0 -38.5 -17t-15.5 -37v-1101q0 -7 6 -1l291 352q23 26 38 33.5t48 7.5h239q22 0 37 14.5t18 29.5q24 130 37 191q4 21 -11.5 40t-36.5 19h-294q-29 0 -48 19t-19 48v42q0 29 19 47.5t48 18.5h346q18 0 35 13.5t20 29.5z M1227 1324q-15 -73 -53.5 -266.5t-69.5 -350t-35 -173.5q-6 -22 -9 -32.5t-14 -32.5t-24.5 -33t-38.5 -21t-58 -10h-271q-13 0 -22 -10q-8 -9 -426 -494q-22 -25 -58.5 -28.5t-48.5 5.5q-55 22 -55 98v1410q0 55 38 102.5t120 47.5h888q95 0 127 -53t10 -159zM1227 1324 l-158 -790q4 17 35 173.5t69.5 350t53.5 266.5z" />
<glyph unicode="&#xf181;" d="M704 192v1024q0 14 -9 23t-23 9h-480q-14 0 -23 -9t-9 -23v-1024q0 -14 9 -23t23 -9h480q14 0 23 9t9 23zM1376 576v640q0 14 -9 23t-23 9h-480q-14 0 -23 -9t-9 -23v-640q0 -14 9 -23t23 -9h480q14 0 23 9t9 23zM1536 1344v-1408q0 -26 -19 -45t-45 -19h-1408 q-26 0 -45 19t-19 45v1408q0 26 19 45t45 19h1408q26 0 45 -19t19 -45z" />
<glyph unicode="&#xf182;" horiz-adv-x="1280" d="M1280 480q0 -40 -28 -68t-68 -28q-51 0 -80 43l-227 341h-45v-132l247 -411q9 -15 9 -33q0 -26 -19 -45t-45 -19h-192v-272q0 -46 -33 -79t-79 -33h-160q-46 0 -79 33t-33 79v272h-192q-26 0 -45 19t-19 45q0 18 9 33l247 411v132h-45l-227 -341q-29 -43 -80 -43 q-40 0 -68 28t-28 68q0 29 16 53l256 384q73 107 176 107h384q103 0 176 -107l256 -384q16 -24 16 -53zM864 1280q0 -93 -65.5 -158.5t-158.5 -65.5t-158.5 65.5t-65.5 158.5t65.5 158.5t158.5 65.5t158.5 -65.5t65.5 -158.5z" />
<glyph unicode="&#xf183;" horiz-adv-x="1024" d="M1024 832v-416q0 -40 -28 -68t-68 -28t-68 28t-28 68v352h-64v-912q0 -46 -33 -79t-79 -33t-79 33t-33 79v464h-64v-464q0 -46 -33 -79t-79 -33t-79 33t-33 79v912h-64v-352q0 -40 -28 -68t-68 -28t-68 28t-28 68v416q0 80 56 136t136 56h640q80 0 136 -56t56 -136z M736 1280q0 -93 -65.5 -158.5t-158.5 -65.5t-158.5 65.5t-65.5 158.5t65.5 158.5t158.5 65.5t158.5 -65.5t65.5 -158.5z" />
<glyph unicode="&#xf184;" d="M773 234l350 473q16 22 24.5 59t-6 85t-61.5 79q-40 26 -83 25.5t-73.5 -17.5t-54.5 -45q-36 -40 -96 -40q-59 0 -95 40q-24 28 -54.5 45t-73.5 17.5t-84 -25.5q-46 -31 -60.5 -79t-6 -85t24.5 -59zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103 t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
<glyph unicode="&#xf185;" horiz-adv-x="1792" d="M1472 640q0 117 -45.5 223.5t-123 184t-184 123t-223.5 45.5t-223.5 -45.5t-184 -123t-123 -184t-45.5 -223.5t45.5 -223.5t123 -184t184 -123t223.5 -45.5t223.5 45.5t184 123t123 184t45.5 223.5zM1748 363q-4 -15 -20 -20l-292 -96v-306q0 -16 -13 -26q-15 -10 -29 -4 l-292 94l-180 -248q-10 -13 -26 -13t-26 13l-180 248l-292 -94q-14 -6 -29 4q-13 10 -13 26v306l-292 96q-16 5 -20 20q-5 17 4 29l180 248l-180 248q-9 13 -4 29q4 15 20 20l292 96v306q0 16 13 26q15 10 29 4l292 -94l180 248q9 12 26 12t26 -12l180 -248l292 94 q14 6 29 -4q13 -10 13 -26v-306l292 -96q16 -5 20 -20q5 -16 -4 -29l-180 -248l180 -248q9 -12 4 -29z" />
<glyph unicode="&#xf186;" d="M1262 233q-54 -9 -110 -9q-182 0 -337 90t-245 245t-90 337q0 192 104 357q-201 -60 -328.5 -229t-127.5 -384q0 -130 51 -248.5t136.5 -204t204 -136.5t248.5 -51q144 0 273.5 61.5t220.5 171.5zM1465 318q-94 -203 -283.5 -324.5t-413.5 -121.5q-156 0 -298 61 t-245 164t-164 245t-61 298q0 153 57.5 292.5t156 241.5t235.5 164.5t290 68.5q44 2 61 -39q18 -41 -15 -72q-86 -78 -131.5 -181.5t-45.5 -218.5q0 -148 73 -273t198 -198t273 -73q118 0 228 51q41 18 72 -13q14 -14 17.5 -34t-4.5 -38z" />
<glyph unicode="&#xf187;" horiz-adv-x="1792" d="M1088 704q0 26 -19 45t-45 19h-256q-26 0 -45 -19t-19 -45t19 -45t45 -19h256q26 0 45 19t19 45zM1664 896v-960q0 -26 -19 -45t-45 -19h-1408q-26 0 -45 19t-19 45v960q0 26 19 45t45 19h1408q26 0 45 -19t19 -45zM1728 1344v-256q0 -26 -19 -45t-45 -19h-1536 q-26 0 -45 19t-19 45v256q0 26 19 45t45 19h1536q26 0 45 -19t19 -45z" />
<glyph unicode="&#xf188;" horiz-adv-x="1664" d="M1632 576q0 -26 -19 -45t-45 -19h-224q0 -171 -67 -290l208 -209q19 -19 19 -45t-19 -45q-18 -19 -45 -19t-45 19l-198 197q-5 -5 -15 -13t-42 -28.5t-65 -36.5t-82 -29t-97 -13v896h-128v-896q-51 0 -101.5 13.5t-87 33t-66 39t-43.5 32.5l-15 14l-183 -207 q-20 -21 -48 -21q-24 0 -43 16q-19 18 -20.5 44.5t15.5 46.5l202 227q-58 114 -58 274h-224q-26 0 -45 19t-19 45t19 45t45 19h224v294l-173 173q-19 19 -19 45t19 45t45 19t45 -19l173 -173h844l173 173q19 19 45 19t45 -19t19 -45t-19 -45l-173 -173v-294h224q26 0 45 -19 t19 -45zM1152 1152h-640q0 133 93.5 226.5t226.5 93.5t226.5 -93.5t93.5 -226.5z" />
<glyph unicode="&#xf189;" horiz-adv-x="1920" d="M1917 1016q23 -64 -150 -294q-24 -32 -65 -85q-78 -100 -90 -131q-17 -41 14 -81q17 -21 81 -82h1l1 -1l1 -1l2 -2q141 -131 191 -221q3 -5 6.5 -12.5t7 -26.5t-0.5 -34t-25 -27.5t-59 -12.5l-256 -4q-24 -5 -56 5t-52 22l-20 12q-30 21 -70 64t-68.5 77.5t-61 58 t-56.5 15.5q-3 -1 -8 -3.5t-17 -14.5t-21.5 -29.5t-17 -52t-6.5 -77.5q0 -15 -3.5 -27.5t-7.5 -18.5l-4 -5q-18 -19 -53 -22h-115q-71 -4 -146 16.5t-131.5 53t-103 66t-70.5 57.5l-25 24q-10 10 -27.5 30t-71.5 91t-106 151t-122.5 211t-130.5 272q-6 16 -6 27t3 16l4 6 q15 19 57 19l274 2q12 -2 23 -6.5t16 -8.5l5 -3q16 -11 24 -32q20 -50 46 -103.5t41 -81.5l16 -29q29 -60 56 -104t48.5 -68.5t41.5 -38.5t34 -14t27 5q2 1 5 5t12 22t13.5 47t9.5 81t0 125q-2 40 -9 73t-14 46l-6 12q-25 34 -85 43q-13 2 5 24q17 19 38 30q53 26 239 24 q82 -1 135 -13q20 -5 33.5 -13.5t20.5 -24t10.5 -32t3.5 -45.5t-1 -55t-2.5 -70.5t-1.5 -82.5q0 -11 -1 -42t-0.5 -48t3.5 -40.5t11.5 -39t22.5 -24.5q8 -2 17 -4t26 11t38 34.5t52 67t68 107.5q60 104 107 225q4 10 10 17.5t11 10.5l4 3l5 2.5t13 3t20 0.5l288 2 q39 5 64 -2.5t31 -16.5z" />
<glyph unicode="&#xf18a;" horiz-adv-x="1792" d="M675 252q21 34 11 69t-45 50q-34 14 -73 1t-60 -46q-22 -34 -13 -68.5t43 -50.5t74.5 -2.5t62.5 47.5zM769 373q8 13 3.5 26.5t-17.5 18.5q-14 5 -28.5 -0.5t-21.5 -18.5q-17 -31 13 -45q14 -5 29 0.5t22 18.5zM943 266q-45 -102 -158 -150t-224 -12 q-107 34 -147.5 126.5t6.5 187.5q47 93 151.5 139t210.5 19q111 -29 158.5 -119.5t2.5 -190.5zM1255 426q-9 96 -89 170t-208.5 109t-274.5 21q-223 -23 -369.5 -141.5t-132.5 -264.5q9 -96 89 -170t208.5 -109t274.5 -21q223 23 369.5 141.5t132.5 264.5zM1563 422 q0 -68 -37 -139.5t-109 -137t-168.5 -117.5t-226 -83t-270.5 -31t-275 33.5t-240.5 93t-171.5 151t-65 199.5q0 115 69.5 245t197.5 258q169 169 341.5 236t246.5 -7q65 -64 20 -209q-4 -14 -1 -20t10 -7t14.5 0.5t13.5 3.5l6 2q139 59 246 59t153 -61q45 -63 0 -178 q-2 -13 -4.5 -20t4.5 -12.5t12 -7.5t17 -6q57 -18 103 -47t80 -81.5t34 -116.5zM1489 1046q42 -47 54.5 -108.5t-6.5 -117.5q-8 -23 -29.5 -34t-44.5 -4q-23 8 -34 29.5t-4 44.5q20 63 -24 111t-107 35q-24 -5 -45 8t-25 37q-5 24 8 44.5t37 25.5q60 13 119 -5.5t101 -65.5z M1670 1209q87 -96 112.5 -222.5t-13.5 -241.5q-9 -27 -34 -40t-52 -4t-40 34t-5 52q28 82 10 172t-80 158q-62 69 -148 95.5t-173 8.5q-28 -6 -52 9.5t-30 43.5t9.5 51.5t43.5 29.5q123 26 244 -11.5t208 -134.5z" />
<glyph unicode="&#xf18b;" d="M1133 -34q-171 -94 -368 -94q-196 0 -367 94q138 87 235.5 211t131.5 268q35 -144 132.5 -268t235.5 -211zM638 1394v-485q0 -252 -126.5 -459.5t-330.5 -306.5q-181 215 -181 495q0 187 83.5 349.5t229.5 269.5t325 137zM1536 638q0 -280 -181 -495 q-204 99 -330.5 306.5t-126.5 459.5v485q179 -30 325 -137t229.5 -269.5t83.5 -349.5z" />
<glyph unicode="&#xf18c;" horiz-adv-x="1408" d="M1402 433q-32 -80 -76 -138t-91 -88.5t-99 -46.5t-101.5 -14.5t-96.5 8.5t-86.5 22t-69.5 27.5t-46 22.5l-17 10q-113 -228 -289.5 -359.5t-384.5 -132.5q-19 0 -32 13t-13 32t13 31.5t32 12.5q173 1 322.5 107.5t251.5 294.5q-36 -14 -72 -23t-83 -13t-91 2.5t-93 28.5 t-92 59t-84.5 100t-74.5 146q114 47 214 57t167.5 -7.5t124.5 -56.5t88.5 -77t56.5 -82q53 131 79 291q-7 -1 -18 -2.5t-46.5 -2.5t-69.5 0.5t-81.5 10t-88.5 23t-84 42.5t-75 65t-54.5 94.5t-28.5 127.5q70 28 133.5 36.5t112.5 -1t92 -30t73.5 -50t56 -61t42 -63t27.5 -56 t16 -39.5l4 -16q12 122 12 195q-8 6 -21.5 16t-49 44.5t-63.5 71.5t-54 93t-33 112.5t12 127t70 138.5q73 -25 127.5 -61.5t84.5 -76.5t48 -85t20.5 -89t-0.5 -85.5t-13 -76.5t-19 -62t-17 -42l-7 -15q1 -5 1 -50.5t-1 -71.5q3 7 10 18.5t30.5 43t50.5 58t71 55.5t91.5 44.5 t112 14.5t132.5 -24q-2 -78 -21.5 -141.5t-50 -104.5t-69.5 -71.5t-81.5 -45.5t-84.5 -24t-80 -9.5t-67.5 1t-46.5 4.5l-17 3q-23 -147 -73 -283q6 7 18 18.5t49.5 41t77.5 52.5t99.5 42t117.5 20t129 -23.5t137 -77.5z" />
<glyph unicode="&#xf18d;" horiz-adv-x="1280" d="M1259 283v-66q0 -85 -57.5 -144.5t-138.5 -59.5h-57l-260 -269v269h-529q-81 0 -138.5 59.5t-57.5 144.5v66h1238zM1259 609v-255h-1238v255h1238zM1259 937v-255h-1238v255h1238zM1259 1077v-67h-1238v67q0 84 57.5 143.5t138.5 59.5h846q81 0 138.5 -59.5t57.5 -143.5z " />
<glyph unicode="&#xf18e;" d="M1152 640q0 -14 -9 -23l-320 -320q-9 -9 -23 -9q-13 0 -22.5 9.5t-9.5 22.5v192h-352q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h352v192q0 14 9 23t23 9q12 0 24 -10l319 -319q9 -9 9 -23zM1312 640q0 148 -73 273t-198 198t-273 73t-273 -73t-198 -198 t-73 -273t73 -273t198 -198t273 -73t273 73t198 198t73 273zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
<glyph unicode="&#xf190;" d="M1152 736v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-352v-192q0 -14 -9 -23t-23 -9q-12 0 -24 10l-319 319q-9 9 -9 23t9 23l320 320q9 9 23 9q13 0 22.5 -9.5t9.5 -22.5v-192h352q13 0 22.5 -9.5t9.5 -22.5zM1312 640q0 148 -73 273t-198 198t-273 73t-273 -73t-198 -198 t-73 -273t73 -273t198 -198t273 -73t273 73t198 198t73 273zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
<glyph unicode="&#xf191;" d="M1024 960v-640q0 -26 -19 -45t-45 -19q-20 0 -37 12l-448 320q-27 19 -27 52t27 52l448 320q17 12 37 12q26 0 45 -19t19 -45zM1280 160v960q0 13 -9.5 22.5t-22.5 9.5h-960q-13 0 -22.5 -9.5t-9.5 -22.5v-960q0 -13 9.5 -22.5t22.5 -9.5h960q13 0 22.5 9.5t9.5 22.5z M1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
<glyph unicode="&#xf192;" d="M1024 640q0 -106 -75 -181t-181 -75t-181 75t-75 181t75 181t181 75t181 -75t75 -181zM768 1184q-148 0 -273 -73t-198 -198t-73 -273t73 -273t198 -198t273 -73t273 73t198 198t73 273t-73 273t-198 198t-273 73zM1536 640q0 -209 -103 -385.5t-279.5 -279.5 t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
<glyph unicode="&#xf193;" horiz-adv-x="1664" d="M1023 349l102 -204q-58 -179 -210 -290t-339 -111q-156 0 -288.5 77.5t-210 210t-77.5 288.5q0 181 104.5 330t274.5 211l17 -131q-122 -54 -195 -165.5t-73 -244.5q0 -185 131.5 -316.5t316.5 -131.5q126 0 232.5 65t165 175.5t49.5 236.5zM1571 249l58 -114l-256 -128 q-13 -7 -29 -7q-40 0 -57 35l-239 477h-472q-24 0 -42.5 16.5t-21.5 40.5l-96 779q-2 16 6 42q14 51 57 82.5t97 31.5q66 0 113 -47t47 -113q0 -69 -52 -117.5t-120 -41.5l37 -289h423v-128h-407l16 -128h455q40 0 57 -35l228 -455z" />
<glyph unicode="&#xf194;" d="M1292 898q10 216 -161 222q-231 8 -312 -261q44 19 82 19q85 0 74 -96q-4 -57 -74 -167t-105 -110q-43 0 -82 169q-13 54 -45 255q-30 189 -160 177q-59 -7 -164 -100l-81 -72l-81 -72l52 -67q76 52 87 52q57 0 107 -179q15 -55 45 -164.5t45 -164.5q68 -179 164 -179 q157 0 383 294q220 283 226 444zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
<glyph unicode="&#xf195;" horiz-adv-x="1152" d="M1152 704q0 -191 -94.5 -353t-256.5 -256.5t-353 -94.5h-160q-14 0 -23 9t-9 23v611l-215 -66q-3 -1 -9 -1q-10 0 -19 6q-13 10 -13 26v128q0 23 23 31l233 71v93l-215 -66q-3 -1 -9 -1q-10 0 -19 6q-13 10 -13 26v128q0 23 23 31l233 71v250q0 14 9 23t23 9h160 q14 0 23 -9t9 -23v-181l375 116q15 5 28 -5t13 -26v-128q0 -23 -23 -31l-393 -121v-93l375 116q15 5 28 -5t13 -26v-128q0 -23 -23 -31l-393 -121v-487q188 13 318 151t130 328q0 14 9 23t23 9h160q14 0 23 -9t9 -23z" />
<glyph unicode="&#xf196;" horiz-adv-x="1408" d="M1152 736v-64q0 -14 -9 -23t-23 -9h-352v-352q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v352h-352q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h352v352q0 14 9 23t23 9h64q14 0 23 -9t9 -23v-352h352q14 0 23 -9t9 -23zM1280 288v832q0 66 -47 113t-113 47h-832 q-66 0 -113 -47t-47 -113v-832q0 -66 47 -113t113 -47h832q66 0 113 47t47 113zM1408 1120v-832q0 -119 -84.5 -203.5t-203.5 -84.5h-832q-119 0 -203.5 84.5t-84.5 203.5v832q0 119 84.5 203.5t203.5 84.5h832q119 0 203.5 -84.5t84.5 -203.5z" />
<glyph unicode="&#xf197;" horiz-adv-x="2176" d="M620 416q-110 -64 -268 -64h-128v64h-64q-13 0 -22.5 23.5t-9.5 56.5q0 24 7 49q-58 2 -96.5 10.5t-38.5 20.5t38.5 20.5t96.5 10.5q-7 25 -7 49q0 33 9.5 56.5t22.5 23.5h64v64h128q158 0 268 -64h1113q42 -7 106.5 -18t80.5 -14q89 -15 150 -40.5t83.5 -47.5t22.5 -40 t-22.5 -40t-83.5 -47.5t-150 -40.5q-16 -3 -80.5 -14t-106.5 -18h-1113zM1739 668q53 -36 53 -92t-53 -92l81 -30q68 48 68 122t-68 122zM625 400h1015q-217 -38 -456 -80q-57 0 -113 -24t-83 -48l-28 -24l-288 -288q-26 -26 -70.5 -45t-89.5 -19h-96l-93 464h29 q157 0 273 64zM352 816h-29l93 464h96q46 0 90 -19t70 -45l288 -288q4 -4 11 -10.5t30.5 -23t48.5 -29t61.5 -23t72.5 -10.5l456 -80h-1015q-116 64 -273 64z" />
<glyph unicode="&#xf198;" horiz-adv-x="1664" d="M1519 760q62 0 103.5 -40.5t41.5 -101.5q0 -97 -93 -130l-172 -59l56 -167q7 -21 7 -47q0 -59 -42 -102t-101 -43q-47 0 -85.5 27t-53.5 72l-55 165l-310 -106l55 -164q8 -24 8 -47q0 -59 -42 -102t-102 -43q-47 0 -85 27t-53 72l-55 163l-153 -53q-29 -9 -50 -9 q-61 0 -101.5 40t-40.5 101q0 47 27.5 85t71.5 53l156 53l-105 313l-156 -54q-26 -8 -48 -8q-60 0 -101 40.5t-41 100.5q0 47 27.5 85t71.5 53l157 53l-53 159q-8 24 -8 47q0 60 42 102.5t102 42.5q47 0 85 -27t53 -72l54 -160l310 105l-54 160q-8 24 -8 47q0 59 42.5 102 t101.5 43q47 0 85.5 -27.5t53.5 -71.5l53 -161l162 55q21 6 43 6q60 0 102.5 -39.5t42.5 -98.5q0 -45 -30 -81.5t-74 -51.5l-157 -54l105 -316l164 56q24 8 46 8zM725 498l310 105l-105 315l-310 -107z" />
<glyph unicode="&#xf199;" d="M1248 1408q119 0 203.5 -84.5t84.5 -203.5v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960zM1280 352v436q-31 -35 -64 -55q-34 -22 -132.5 -85t-151.5 -99q-98 -69 -164 -69v0v0q-66 0 -164 69 q-46 32 -141.5 92.5t-142.5 92.5q-12 8 -33 27t-31 27v-436q0 -40 28 -68t68 -28h832q40 0 68 28t28 68zM1280 925q0 41 -27.5 70t-68.5 29h-832q-40 0 -68 -28t-28 -68q0 -37 30.5 -76.5t67.5 -64.5q47 -32 137.5 -89t129.5 -83q3 -2 17 -11.5t21 -14t21 -13t23.5 -13 t21.5 -9.5t22.5 -7.5t20.5 -2.5t20.5 2.5t22.5 7.5t21.5 9.5t23.5 13t21 13t21 14t17 11.5l267 174q35 23 66.5 62.5t31.5 73.5z" />
<glyph unicode="&#xf19a;" horiz-adv-x="1792" d="M127 640q0 163 67 313l367 -1005q-196 95 -315 281t-119 411zM1415 679q0 -19 -2.5 -38.5t-10 -49.5t-11.5 -44t-17.5 -59t-17.5 -58l-76 -256l-278 826q46 3 88 8q19 2 26 18.5t-2.5 31t-28.5 13.5l-205 -10q-75 1 -202 10q-12 1 -20.5 -5t-11.5 -15t-1.5 -18.5t9 -16.5 t19.5 -8l80 -8l120 -328l-168 -504l-280 832q46 3 88 8q19 2 26 18.5t-2.5 31t-28.5 13.5l-205 -10q-7 0 -23 0.5t-26 0.5q105 160 274.5 253.5t367.5 93.5q147 0 280.5 -53t238.5 -149h-10q-55 0 -92 -40.5t-37 -95.5q0 -12 2 -24t4 -21.5t8 -23t9 -21t12 -22.5t12.5 -21 t14.5 -24t14 -23q63 -107 63 -212zM909 573l237 -647q1 -6 5 -11q-126 -44 -255 -44q-112 0 -217 32zM1570 1009q95 -174 95 -369q0 -209 -104 -385.5t-279 -278.5l235 678q59 169 59 276q0 42 -6 79zM896 1536q182 0 348 -71t286 -191t191 -286t71 -348t-71 -348t-191 -286 t-286 -191t-348 -71t-348 71t-286 191t-191 286t-71 348t71 348t191 286t286 191t348 71zM896 -215q173 0 331.5 68t273 182.5t182.5 273t68 331.5t-68 331.5t-182.5 273t-273 182.5t-331.5 68t-331.5 -68t-273 -182.5t-182.5 -273t-68 -331.5t68 -331.5t182.5 -273 t273 -182.5t331.5 -68z" />
<glyph unicode="&#xf19b;" horiz-adv-x="1792" d="M1086 1536v-1536l-272 -128q-228 20 -414 102t-293 208.5t-107 272.5q0 140 100.5 263.5t275 205.5t391.5 108v-172q-217 -38 -356.5 -150t-139.5 -255q0 -152 154.5 -267t388.5 -145v1360zM1755 954l37 -390l-525 114l147 83q-119 70 -280 99v172q277 -33 481 -157z" />
<glyph unicode="&#xf19c;" horiz-adv-x="2048" d="M960 1536l960 -384v-128h-128q0 -26 -20.5 -45t-48.5 -19h-1526q-28 0 -48.5 19t-20.5 45h-128v128zM256 896h256v-768h128v768h256v-768h128v768h256v-768h128v768h256v-768h59q28 0 48.5 -19t20.5 -45v-64h-1664v64q0 26 20.5 45t48.5 19h59v768zM1851 -64 q28 0 48.5 -19t20.5 -45v-128h-1920v128q0 26 20.5 45t48.5 19h1782z" />
<glyph unicode="&#xf19d;" horiz-adv-x="2304" d="M1774 700l18 -316q4 -69 -82 -128t-235 -93.5t-323 -34.5t-323 34.5t-235 93.5t-82 128l18 316l574 -181q22 -7 48 -7t48 7zM2304 1024q0 -23 -22 -31l-1120 -352q-4 -1 -10 -1t-10 1l-652 206q-43 -34 -71 -111.5t-34 -178.5q63 -36 63 -109q0 -69 -58 -107l58 -433 q2 -14 -8 -25q-9 -11 -24 -11h-192q-15 0 -24 11q-10 11 -8 25l58 433q-58 38 -58 107q0 73 65 111q11 207 98 330l-333 104q-22 8 -22 31t22 31l1120 352q4 1 10 1t10 -1l1120 -352q22 -8 22 -31z" />
<glyph unicode="&#xf19e;" d="M859 579l13 -707q-62 11 -105 11q-41 0 -105 -11l13 707q-40 69 -168.5 295.5t-216.5 374.5t-181 287q58 -15 108 -15q43 0 111 15q63 -111 133.5 -229.5t167 -276.5t138.5 -227q37 61 109.5 177.5t117.5 190t105 176t107 189.5q54 -14 107 -14q56 0 114 14v0 q-28 -39 -60 -88.5t-49.5 -78.5t-56.5 -96t-49 -84q-146 -248 -353 -610z" />
<glyph unicode="&#xf1a0;" horiz-adv-x="1280" d="M981 197q0 25 -7 49t-14.5 42t-27 41.5t-29.5 35t-38.5 34.5t-36.5 29t-41.5 30t-36.5 26q-16 2 -49 2q-53 0 -104.5 -7t-107 -25t-97 -46t-68.5 -74.5t-27 -105.5q0 -56 23.5 -102t61 -75.5t87 -50t100 -29t101.5 -8.5q58 0 111.5 13t99 39t73 73t27.5 109zM864 1055 q0 59 -17 125.5t-48 129t-84 103.5t-117 41q-42 0 -82.5 -19.5t-66.5 -52.5q-46 -59 -46 -160q0 -46 10 -97.5t31.5 -103t52 -92.5t75 -67t96.5 -26q37 0 77.5 16.5t65.5 43.5q53 56 53 159zM752 1536h417l-137 -88h-132q75 -63 113 -133t38 -160q0 -72 -24.5 -129.5 t-59.5 -93t-69.5 -65t-59 -61.5t-24.5 -66q0 -36 32 -70.5t77 -68t90.5 -73.5t77.5 -104t32 -142q0 -91 -49 -173q-71 -122 -209.5 -179.5t-298.5 -57.5q-132 0 -246.5 41.5t-172.5 137.5q-36 59 -36 131q0 81 44.5 150t118.5 115q131 82 404 100q-32 41 -47.5 73.5 t-15.5 73.5q0 40 21 85q-46 -4 -68 -4q-148 0 -249.5 96.5t-101.5 244.5q0 82 36 159t99 131q76 66 182 98t218 32z" />
<glyph unicode="&#xf1a1;" horiz-adv-x="1792" d="M1095 369q16 -16 0 -31q-62 -62 -199 -62t-199 62q-16 15 0 31q6 6 15 6t15 -6q48 -49 169 -49q120 0 169 49q6 6 15 6t15 -6zM788 550q0 -37 -26 -63t-63 -26t-63.5 26t-26.5 63q0 38 26.5 64t63.5 26t63 -26.5t26 -63.5zM1183 550q0 -37 -26.5 -63t-63.5 -26t-63 26 t-26 63t26 63.5t63 26.5t63.5 -26t26.5 -64zM1434 670q0 49 -35 84t-85 35t-86 -36q-130 90 -311 96l63 283l200 -45q0 -37 26 -63t63 -26t63.5 26.5t26.5 63.5t-26.5 63.5t-63.5 26.5q-54 0 -80 -50l-221 49q-19 5 -25 -16l-69 -312q-180 -7 -309 -97q-35 37 -87 37 q-50 0 -85 -35t-35 -84q0 -35 18.5 -64t49.5 -44q-6 -27 -6 -56q0 -142 140 -243t337 -101q198 0 338 101t140 243q0 32 -7 57q30 15 48 43.5t18 63.5zM1792 640q0 -182 -71 -348t-191 -286t-286 -191t-348 -71t-348 71t-286 191t-191 286t-71 348t71 348t191 286t286 191 t348 71t348 -71t286 -191t191 -286t71 -348z" />
<glyph unicode="&#xf1a2;" d="M939 407q13 -13 0 -26q-53 -53 -171 -53t-171 53q-13 13 0 26q5 6 13 6t13 -6q42 -42 145 -42t145 42q5 6 13 6t13 -6zM676 563q0 -31 -23 -54t-54 -23t-54 23t-23 54q0 32 22.5 54.5t54.5 22.5t54.5 -22.5t22.5 -54.5zM1014 563q0 -31 -23 -54t-54 -23t-54 23t-23 54 q0 32 22.5 54.5t54.5 22.5t54.5 -22.5t22.5 -54.5zM1229 666q0 42 -30 72t-73 30q-42 0 -73 -31q-113 78 -267 82l54 243l171 -39q1 -32 23.5 -54t53.5 -22q32 0 54.5 22.5t22.5 54.5t-22.5 54.5t-54.5 22.5q-48 0 -69 -43l-189 42q-17 5 -21 -13l-60 -268q-154 -6 -265 -83 q-30 32 -74 32q-43 0 -73 -30t-30 -72q0 -30 16 -55t42 -38q-5 -25 -5 -48q0 -122 120 -208.5t289 -86.5q170 0 290 86.5t120 208.5q0 25 -6 49q25 13 40.5 37.5t15.5 54.5zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960 q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
<glyph unicode="&#xf1a3;" d="M866 697l90 27v62q0 79 -58 135t-138 56t-138 -55.5t-58 -134.5v-283q0 -20 -14 -33.5t-33 -13.5t-32.5 13.5t-13.5 33.5v120h-151v-122q0 -82 57.5 -139t139.5 -57q81 0 138.5 56.5t57.5 136.5v280q0 19 13.5 33t33.5 14q19 0 32.5 -14t13.5 -33v-54zM1199 502v122h-150 v-126q0 -20 -13.5 -33.5t-33.5 -13.5q-19 0 -32.5 14t-13.5 33v123l-90 -26l-60 28v-123q0 -80 58 -137t139 -57t138.5 57t57.5 139zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103 t385.5 -103t279.5 -279.5t103 -385.5z" />
<glyph unicode="&#xf1a4;" horiz-adv-x="1920" d="M1062 824v118q0 42 -30 72t-72 30t-72 -30t-30 -72v-612q0 -175 -126 -299t-303 -124q-178 0 -303.5 125.5t-125.5 303.5v266h328v-262q0 -43 30 -72.5t72 -29.5t72 29.5t30 72.5v620q0 171 126.5 292t301.5 121q176 0 302 -122t126 -294v-136l-195 -58zM1592 602h328 v-266q0 -178 -125.5 -303.5t-303.5 -125.5q-177 0 -303 124.5t-126 300.5v268l131 -61l195 58v-270q0 -42 30 -71.5t72 -29.5t72 29.5t30 71.5v275z" />
<glyph unicode="&#xf1a5;" d="M1472 160v480h-704v704h-480q-93 0 -158.5 -65.5t-65.5 -158.5v-480h704v-704h480q93 0 158.5 65.5t65.5 158.5zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5 t84.5 -203.5z" />
<glyph unicode="&#xf1a6;" horiz-adv-x="2048" d="M328 1254h204v-983h-532v697h328v286zM328 435v369h-123v-369h123zM614 968v-697h205v697h-205zM614 1254v-204h205v204h-205zM901 968h533v-942h-533v163h328v82h-328v697zM1229 435v369h-123v-369h123zM1516 968h532v-942h-532v163h327v82h-327v697zM1843 435v369h-123 v-369h123z" />
<glyph unicode="&#xf1a7;" d="M1046 516q0 -64 -38 -109t-91 -45q-43 0 -70 15v277q28 17 70 17q53 0 91 -45.5t38 -109.5zM703 944q0 -64 -38 -109.5t-91 -45.5q-43 0 -70 15v277q28 17 70 17q53 0 91 -45t38 -109zM1265 513q0 134 -88 229t-213 95q-20 0 -39 -3q-23 -78 -78 -136q-87 -95 -211 -101 v-636l211 41v206q51 -19 117 -19q125 0 213 95t88 229zM922 940q0 134 -88.5 229t-213.5 95q-74 0 -141 -36h-186v-840l211 41v206q55 -19 116 -19q125 0 213.5 95t88.5 229zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960 q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
<glyph unicode="&#xf1a8;" horiz-adv-x="2038" d="M1222 607q75 3 143.5 -20.5t118 -58.5t101 -94.5t84 -108t75.5 -120.5q33 -56 78.5 -109t75.5 -80.5t99 -88.5q-48 -30 -108.5 -57.5t-138.5 -59t-114 -47.5q-44 37 -74 115t-43.5 164.5t-33 180.5t-42.5 168.5t-72.5 123t-122.5 48.5l-10 -2l-6 -4q4 -5 13 -14 q6 -5 28 -23.5t25.5 -22t19 -18t18 -20.5t11.5 -21t10.5 -27.5t4.5 -31t4 -40.5l1 -33q1 -26 -2.5 -57.5t-7.5 -52t-12.5 -58.5t-11.5 -53q-35 1 -101 -9.5t-98 -10.5q-39 0 -72 10q-2 16 -2 47q0 74 3 96q2 13 31.5 41.5t57 59t26.5 51.5q-24 2 -43 -24 q-36 -53 -111.5 -99.5t-136.5 -46.5q-25 0 -75.5 63t-106.5 139.5t-84 96.5q-6 4 -27 30q-482 -112 -513 -112q-16 0 -28 11t-12 27q0 15 8.5 26.5t22.5 14.5l486 106q-8 14 -8 25t5.5 17.5t16 11.5t20 7t23 4.5t18.5 4.5q4 1 15.5 7.5t17.5 6.5q15 0 28 -16t20 -33 q163 37 172 37q17 0 29.5 -11t12.5 -28q0 -15 -8.5 -26t-23.5 -14l-182 -40l-1 -16q-1 -26 81.5 -117.5t104.5 -91.5q47 0 119 80t72 129q0 36 -23.5 53t-51 18.5t-51 11.5t-23.5 34q0 16 10 34l-68 19q43 44 43 117q0 26 -5 58q82 16 144 16q44 0 71.5 -1.5t48.5 -8.5 t31 -13.5t20.5 -24.5t15.5 -33.5t17 -47.5t24 -60l50 25q-3 -40 -23 -60t-42.5 -21t-40 -6.5t-16.5 -20.5zM1282 842q-5 5 -13.5 15.5t-12 14.5t-10.5 11.5t-10 10.5l-8 8t-8.5 7.5t-8 5t-8.5 4.5q-7 3 -14.5 5t-20.5 2.5t-22 0.5h-32.5h-37.5q-126 0 -217 -43 q16 30 36 46.5t54 29.5t65.5 36t46 36.5t50 55t43.5 50.5q12 -9 28 -31.5t32 -36.5t38 -13l12 1v-76l22 -1q247 95 371 190q28 21 50 39t42.5 37.5t33 31t29.5 34t24 31t24.5 37t23 38t27 47.5t29.5 53l7 9q-2 -53 -43 -139q-79 -165 -205 -264t-306 -142q-14 -3 -42 -7.5 t-50 -9.5t-39 -14q3 -19 24.5 -46t21.5 -34q0 -11 -26 -30zM1061 -79q39 26 131.5 47.5t146.5 21.5q9 0 22.5 -15.5t28 -42.5t26 -50t24 -51t14.5 -33q-121 -45 -244 -45q-61 0 -125 11zM822 568l48 12l109 -177l-73 -48zM1323 51q3 -15 3 -16q0 -7 -17.5 -14.5t-46 -13 t-54 -9.5t-53.5 -7.5t-32 -4.5l-7 43q21 2 60.5 8.5t72 10t60.5 3.5h14zM866 679l-96 -20l-6 17q10 1 32.5 7t34.5 6q19 0 35 -10zM1061 45h31l10 -83l-41 -12v95zM1950 1535v1v-1zM1950 1535l-1 -5l-2 -2l1 3zM1950 1535l1 1z" />
<glyph unicode="&#xf1a9;" d="M1167 -50q-5 19 -24 5q-30 -22 -87 -39t-131 -17q-129 0 -193 49q-5 4 -13 4q-11 0 -26 -12q-7 -6 -7.5 -16t7.5 -20q34 -32 87.5 -46t102.5 -12.5t99 4.5q41 4 84.5 20.5t65 30t28.5 20.5q12 12 7 29zM1128 65q-19 47 -39 61q-23 15 -76 15q-47 0 -71 -10 q-29 -12 -78 -56q-26 -24 -12 -44q9 -8 17.5 -4.5t31.5 23.5q3 2 10.5 8.5t10.5 8.5t10 7t11.5 7t12.5 5t15 4.5t16.5 2.5t20.5 1q27 0 44.5 -7.5t23 -14.5t13.5 -22q10 -17 12.5 -20t12.5 1q23 12 14 34zM1483 346q0 22 -5 44.5t-16.5 45t-34 36.5t-52.5 14 q-33 0 -97 -41.5t-129 -83.5t-101 -42q-27 -1 -63.5 19t-76 49t-83.5 58t-100 49t-111 19q-115 -1 -197 -78.5t-84 -178.5q-2 -112 74 -164q29 -20 62.5 -28.5t103.5 -8.5q57 0 132 32.5t134 71t120 70.5t93 31q26 -1 65 -31.5t71.5 -67t68 -67.5t55.5 -32q35 -3 58.5 14 t55.5 63q28 41 42.5 101t14.5 106zM1536 506q0 -164 -62 -304.5t-166 -236t-242.5 -149.5t-290.5 -54t-293 57.5t-247.5 157t-170.5 241.5t-64 302q0 89 19.5 172.5t49 145.5t70.5 118.5t78.5 94t78.5 69.5t64.5 46.5t42.5 24.5q14 8 51 26.5t54.5 28.5t48 30t60.5 44 q36 28 58 72.5t30 125.5q129 -155 186 -193q44 -29 130 -68t129 -66q21 -13 39 -25t60.5 -46.5t76 -70.5t75 -95t69 -122t47 -148.5t19.5 -177.5z" />
<glyph unicode="&#xf1aa;" d="M1070 463l-160 -160l-151 -152l-30 -30q-65 -64 -151.5 -87t-171.5 -2q-16 -70 -72 -115t-129 -45q-85 0 -145 60.5t-60 145.5q0 72 44.5 128t113.5 72q-22 86 1 173t88 152l12 12l151 -152l-11 -11q-37 -37 -37 -89t37 -90q37 -37 89 -37t89 37l30 30l151 152l161 160z M729 1145l12 -12l-152 -152l-12 12q-37 37 -89 37t-89 -37t-37 -89.5t37 -89.5l29 -29l152 -152l160 -160l-151 -152l-161 160l-151 152l-30 30q-68 67 -90 159.5t5 179.5q-70 15 -115 71t-45 129q0 85 60 145.5t145 60.5q76 0 133.5 -49t69.5 -123q84 20 169.5 -3.5 t149.5 -87.5zM1536 78q0 -85 -60 -145.5t-145 -60.5q-74 0 -131 47t-71 118q-86 -28 -179.5 -6t-161.5 90l-11 12l151 152l12 -12q37 -37 89 -37t89 37t37 89t-37 89l-30 30l-152 152l-160 160l152 152l160 -160l152 -152l29 -30q64 -64 87.5 -150.5t2.5 -171.5 q76 -11 126.5 -68.5t50.5 -134.5zM1534 1202q0 -77 -51 -135t-127 -69q26 -85 3 -176.5t-90 -158.5l-12 -12l-151 152l12 12q37 37 37 89t-37 89t-89 37t-89 -37l-30 -30l-152 -152l-160 -160l-152 152l161 160l152 152l29 30q67 67 159 89.5t178 -3.5q11 75 68.5 126 t135.5 51q85 0 145 -60.5t60 -145.5z" />
<glyph unicode="&#xf1ab;" d="M654 458q-1 -3 -12.5 0.5t-31.5 11.5l-20 9q-44 20 -87 49q-7 5 -41 31.5t-38 28.5q-67 -103 -134 -181q-81 -95 -105 -110q-4 -2 -19.5 -4t-18.5 0q6 4 82 92q21 24 85.5 115t78.5 118q17 30 51 98.5t36 77.5q-8 1 -110 -33q-8 -2 -27.5 -7.5t-34.5 -9.5t-17 -5 q-2 -2 -2 -10.5t-1 -9.5q-5 -10 -31 -15q-23 -7 -47 0q-18 4 -28 21q-4 6 -5 23q6 2 24.5 5t29.5 6q58 16 105 32q100 35 102 35q10 2 43 19.5t44 21.5q9 3 21.5 8t14.5 5.5t6 -0.5q2 -12 -1 -33q0 -2 -12.5 -27t-26.5 -53.5t-17 -33.5q-25 -50 -77 -131l64 -28 q12 -6 74.5 -32t67.5 -28q4 -1 10.5 -25.5t4.5 -30.5zM449 944q3 -15 -4 -28q-12 -23 -50 -38q-30 -12 -60 -12q-26 3 -49 26q-14 15 -18 41l1 3q3 -3 19.5 -5t26.5 0t58 16q36 12 55 14q17 0 21 -17zM1147 815l63 -227l-139 42zM39 15l694 232v1032l-694 -233v-1031z M1280 332l102 -31l-181 657l-100 31l-216 -536l102 -31l45 110l211 -65zM777 1294l573 -184v380zM1088 -29l158 -13l-54 -160l-40 66q-130 -83 -276 -108q-58 -12 -91 -12h-84q-79 0 -199.5 39t-183.5 85q-8 7 -8 16q0 8 5 13.5t13 5.5q4 0 18 -7.5t30.5 -16.5t20.5 -11 q73 -37 159.5 -61.5t157.5 -24.5q95 0 167 14.5t157 50.5q15 7 30.5 15.5t34 19t28.5 16.5zM1536 1050v-1079l-774 246q-14 -6 -375 -127.5t-368 -121.5q-13 0 -18 13q0 1 -1 3v1078q3 9 4 10q5 6 20 11q106 35 149 50v384l558 -198q2 0 160.5 55t316 108.5t161.5 53.5 q20 0 20 -21v-418z" />
<glyph unicode="&#xf1ac;" horiz-adv-x="1792" d="M288 1152q66 0 113 -47t47 -113v-1088q0 -66 -47 -113t-113 -47h-128q-66 0 -113 47t-47 113v1088q0 66 47 113t113 47h128zM1664 989q58 -34 93 -93t35 -128v-768q0 -106 -75 -181t-181 -75h-864q-66 0 -113 47t-47 113v1536q0 40 28 68t68 28h672q40 0 88 -20t76 -48 l152 -152q28 -28 48 -76t20 -88v-163zM928 0v128q0 14 -9 23t-23 9h-128q-14 0 -23 -9t-9 -23v-128q0 -14 9 -23t23 -9h128q14 0 23 9t9 23zM928 256v128q0 14 -9 23t-23 9h-128q-14 0 -23 -9t-9 -23v-128q0 -14 9 -23t23 -9h128q14 0 23 9t9 23zM928 512v128q0 14 -9 23 t-23 9h-128q-14 0 -23 -9t-9 -23v-128q0 -14 9 -23t23 -9h128q14 0 23 9t9 23zM1184 0v128q0 14 -9 23t-23 9h-128q-14 0 -23 -9t-9 -23v-128q0 -14 9 -23t23 -9h128q14 0 23 9t9 23zM1184 256v128q0 14 -9 23t-23 9h-128q-14 0 -23 -9t-9 -23v-128q0 -14 9 -23t23 -9h128 q14 0 23 9t9 23zM1184 512v128q0 14 -9 23t-23 9h-128q-14 0 -23 -9t-9 -23v-128q0 -14 9 -23t23 -9h128q14 0 23 9t9 23zM1440 0v128q0 14 -9 23t-23 9h-128q-14 0 -23 -9t-9 -23v-128q0 -14 9 -23t23 -9h128q14 0 23 9t9 23zM1440 256v128q0 14 -9 23t-23 9h-128 q-14 0 -23 -9t-9 -23v-128q0 -14 9 -23t23 -9h128q14 0 23 9t9 23zM1440 512v128q0 14 -9 23t-23 9h-128q-14 0 -23 -9t-9 -23v-128q0 -14 9 -23t23 -9h128q14 0 23 9t9 23zM1536 896v256h-160q-40 0 -68 28t-28 68v160h-640v-512h896z" />
<glyph unicode="&#xf1ad;" d="M1344 1536q26 0 45 -19t19 -45v-1664q0 -26 -19 -45t-45 -19h-1280q-26 0 -45 19t-19 45v1664q0 26 19 45t45 19h1280zM512 1248v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23zM512 992v-64q0 -14 9 -23t23 -9h64q14 0 23 9 t9 23v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23zM512 736v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23zM512 480v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23zM384 160v64 q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM384 416v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM384 672v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h64 q14 0 23 9t9 23zM384 928v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM384 1184v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM896 -96v192q0 14 -9 23t-23 9h-320q-14 0 -23 -9 t-9 -23v-192q0 -14 9 -23t23 -9h320q14 0 23 9t9 23zM896 416v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM896 672v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM896 928v64 q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM896 1184v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM1152 160v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h64 q14 0 23 9t9 23zM1152 416v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM1152 672v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM1152 928v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9 t-9 -23v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM1152 1184v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23z" />
<glyph unicode="&#xf1ae;" horiz-adv-x="1280" d="M1188 988l-292 -292v-824q0 -46 -33 -79t-79 -33t-79 33t-33 79v384h-64v-384q0 -46 -33 -79t-79 -33t-79 33t-33 79v824l-292 292q-28 28 -28 68t28 68t68 28t68 -28l228 -228h368l228 228q28 28 68 28t68 -28t28 -68t-28 -68zM864 1152q0 -93 -65.5 -158.5 t-158.5 -65.5t-158.5 65.5t-65.5 158.5t65.5 158.5t158.5 65.5t158.5 -65.5t65.5 -158.5z" />
<glyph unicode="&#xf1b0;" horiz-adv-x="1664" d="M780 1064q0 -60 -19 -113.5t-63 -92.5t-105 -39q-76 0 -138 57.5t-92 135.5t-30 151q0 60 19 113.5t63 92.5t105 39q77 0 138.5 -57.5t91.5 -135t30 -151.5zM438 581q0 -80 -42 -139t-119 -59q-76 0 -141.5 55.5t-100.5 133.5t-35 152q0 80 42 139.5t119 59.5 q76 0 141.5 -55.5t100.5 -134t35 -152.5zM832 608q118 0 255 -97.5t229 -237t92 -254.5q0 -46 -17 -76.5t-48.5 -45t-64.5 -20t-76 -5.5q-68 0 -187.5 45t-182.5 45q-66 0 -192.5 -44.5t-200.5 -44.5q-183 0 -183 146q0 86 56 191.5t139.5 192.5t187.5 146t193 59zM1071 819 q-61 0 -105 39t-63 92.5t-19 113.5q0 74 30 151.5t91.5 135t138.5 57.5q61 0 105 -39t63 -92.5t19 -113.5q0 -73 -30 -151t-92 -135.5t-138 -57.5zM1503 923q77 0 119 -59.5t42 -139.5q0 -74 -35 -152t-100.5 -133.5t-141.5 -55.5q-77 0 -119 59t-42 139q0 74 35 152.5 t100.5 134t141.5 55.5z" />
<glyph unicode="&#xf1b1;" horiz-adv-x="768" d="M704 1008q0 -145 -57 -243.5t-152 -135.5l45 -821q2 -26 -16 -45t-44 -19h-192q-26 0 -44 19t-16 45l45 821q-95 37 -152 135.5t-57 243.5q0 128 42.5 249.5t117.5 200t160 78.5t160 -78.5t117.5 -200t42.5 -249.5z" />
<glyph unicode="&#xf1b2;" horiz-adv-x="1792" d="M896 -93l640 349v636l-640 -233v-752zM832 772l698 254l-698 254l-698 -254zM1664 1024v-768q0 -35 -18 -65t-49 -47l-704 -384q-28 -16 -61 -16t-61 16l-704 384q-31 17 -49 47t-18 65v768q0 40 23 73t61 47l704 256q22 8 44 8t44 -8l704 -256q38 -14 61 -47t23 -73z " />
<glyph unicode="&#xf1b3;" horiz-adv-x="2304" d="M640 -96l384 192v314l-384 -164v-342zM576 358l404 173l-404 173l-404 -173zM1664 -96l384 192v314l-384 -164v-342zM1600 358l404 173l-404 173l-404 -173zM1152 651l384 165v266l-384 -164v-267zM1088 1030l441 189l-441 189l-441 -189zM2176 512v-416q0 -36 -19 -67 t-52 -47l-448 -224q-25 -14 -57 -14t-57 14l-448 224q-5 2 -7 4q-2 -2 -7 -4l-448 -224q-25 -14 -57 -14t-57 14l-448 224q-33 16 -52 47t-19 67v416q0 38 21.5 70t56.5 48l434 186v400q0 38 21.5 70t56.5 48l448 192q23 10 50 10t50 -10l448 -192q35 -16 56.5 -48t21.5 -70 v-400l434 -186q36 -16 57 -48t21 -70z" />
<glyph unicode="&#xf1b4;" horiz-adv-x="2048" d="M1848 1197h-511v-124h511v124zM1596 771q-90 0 -146 -52.5t-62 -142.5h408q-18 195 -200 195zM1612 186q63 0 122 32t76 87h221q-100 -307 -427 -307q-214 0 -340.5 132t-126.5 347q0 208 130.5 345.5t336.5 137.5q138 0 240.5 -68t153 -179t50.5 -248q0 -17 -2 -47h-658 q0 -111 57.5 -171.5t166.5 -60.5zM277 236h296q205 0 205 167q0 180 -199 180h-302v-347zM277 773h281q78 0 123.5 36.5t45.5 113.5q0 144 -190 144h-260v-294zM0 1282h594q87 0 155 -14t126.5 -47.5t90 -96.5t31.5 -154q0 -181 -172 -263q114 -32 172 -115t58 -204 q0 -75 -24.5 -136.5t-66 -103.5t-98.5 -71t-121 -42t-134 -13h-611v1260z" />
<glyph unicode="&#xf1b5;" d="M1248 1408q119 0 203.5 -84.5t84.5 -203.5v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960zM499 1041h-371v-787h382q117 0 197 57.5t80 170.5q0 158 -143 200q107 52 107 164q0 57 -19.5 96.5 t-56.5 60.5t-79 29.5t-97 8.5zM477 723h-176v184h163q119 0 119 -90q0 -94 -106 -94zM486 388h-185v217h189q124 0 124 -113q0 -104 -128 -104zM1136 356q-68 0 -104 38t-36 107h411q1 10 1 30q0 132 -74.5 220.5t-203.5 88.5q-128 0 -210 -86t-82 -216q0 -135 79 -217 t213 -82q205 0 267 191h-138q-11 -34 -47.5 -54t-75.5 -20zM1126 722q113 0 124 -122h-254q4 56 39 89t91 33zM964 988h319v-77h-319v77z" />
<glyph unicode="&#xf1b6;" horiz-adv-x="1792" d="M1582 954q0 -101 -71.5 -172.5t-172.5 -71.5t-172.5 71.5t-71.5 172.5t71.5 172.5t172.5 71.5t172.5 -71.5t71.5 -172.5zM812 212q0 104 -73 177t-177 73q-27 0 -54 -6l104 -42q77 -31 109.5 -106.5t1.5 -151.5q-31 -77 -107 -109t-152 -1q-21 8 -62 24.5t-61 24.5 q32 -60 91 -96.5t130 -36.5q104 0 177 73t73 177zM1642 953q0 126 -89.5 215.5t-215.5 89.5q-127 0 -216.5 -89.5t-89.5 -215.5q0 -127 89.5 -216t216.5 -89q126 0 215.5 89t89.5 216zM1792 953q0 -189 -133.5 -322t-321.5 -133l-437 -319q-12 -129 -109 -218t-229 -89 q-121 0 -214 76t-118 192l-230 92v429l389 -157q79 48 173 48q13 0 35 -2l284 407q2 187 135.5 319t320.5 132q188 0 321.5 -133.5t133.5 -321.5z" />
<glyph unicode="&#xf1b7;" d="M1242 889q0 80 -57 136.5t-137 56.5t-136.5 -57t-56.5 -136q0 -80 56.5 -136.5t136.5 -56.5t137 56.5t57 136.5zM632 301q0 -83 -58 -140.5t-140 -57.5q-56 0 -103 29t-72 77q52 -20 98 -40q60 -24 120 1.5t85 86.5q24 60 -1.5 120t-86.5 84l-82 33q22 5 42 5 q82 0 140 -57.5t58 -140.5zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v153l172 -69q20 -92 93.5 -152t168.5 -60q104 0 181 70t87 173l345 252q150 0 255.5 105.5t105.5 254.5q0 150 -105.5 255.5t-255.5 105.5 q-148 0 -253 -104.5t-107 -252.5l-225 -322q-9 1 -28 1q-75 0 -137 -37l-297 119v468q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5zM1289 887q0 -100 -71 -170.5t-171 -70.5t-170.5 70.5t-70.5 170.5t70.5 171t170.5 71q101 0 171.5 -70.5t70.5 -171.5z " />
<glyph unicode="&#xf1b8;" horiz-adv-x="1792" d="M836 367l-15 -368l-2 -22l-420 29q-36 3 -67 31.5t-47 65.5q-11 27 -14.5 55t4 65t12 55t21.5 64t19 53q78 -12 509 -28zM449 953l180 -379l-147 92q-63 -72 -111.5 -144.5t-72.5 -125t-39.5 -94.5t-18.5 -63l-4 -21l-190 357q-17 26 -18 56t6 47l8 18q35 63 114 188 l-140 86zM1680 436l-188 -359q-12 -29 -36.5 -46.5t-43.5 -20.5l-18 -4q-71 -7 -219 -12l8 -164l-230 367l211 362l7 -173q170 -16 283 -5t170 33zM895 1360q-47 -63 -265 -435l-317 187l-19 12l225 356q20 31 60 45t80 10q24 -2 48.5 -12t42 -21t41.5 -33t36 -34.5 t36 -39.5t32 -35zM1550 1053l212 -363q18 -37 12.5 -76t-27.5 -74q-13 -20 -33 -37t-38 -28t-48.5 -22t-47 -16t-51.5 -14t-46 -12q-34 72 -265 436l313 195zM1407 1279l142 83l-220 -373l-419 20l151 86q-34 89 -75 166t-75.5 123.5t-64.5 80t-47 46.5l-17 13l405 -1 q31 3 58 -10.5t39 -28.5l11 -15q39 -61 112 -190z" />
<glyph unicode="&#xf1b9;" horiz-adv-x="2048" d="M480 448q0 66 -47 113t-113 47t-113 -47t-47 -113t47 -113t113 -47t113 47t47 113zM516 768h1016l-89 357q-2 8 -14 17.5t-21 9.5h-768q-9 0 -21 -9.5t-14 -17.5zM1888 448q0 66 -47 113t-113 47t-113 -47t-47 -113t47 -113t113 -47t113 47t47 113zM2048 544v-384 q0 -14 -9 -23t-23 -9h-96v-128q0 -80 -56 -136t-136 -56t-136 56t-56 136v128h-1024v-128q0 -80 -56 -136t-136 -56t-136 56t-56 136v128h-96q-14 0 -23 9t-9 23v384q0 93 65.5 158.5t158.5 65.5h28l105 419q23 94 104 157.5t179 63.5h768q98 0 179 -63.5t104 -157.5 l105 -419h28q93 0 158.5 -65.5t65.5 -158.5z" />
<glyph unicode="&#xf1ba;" horiz-adv-x="2048" d="M1824 640q93 0 158.5 -65.5t65.5 -158.5v-384q0 -14 -9 -23t-23 -9h-96v-64q0 -80 -56 -136t-136 -56t-136 56t-56 136v64h-1024v-64q0 -80 -56 -136t-136 -56t-136 56t-56 136v64h-96q-14 0 -23 9t-9 23v384q0 93 65.5 158.5t158.5 65.5h28l105 419q23 94 104 157.5 t179 63.5h128v224q0 14 9 23t23 9h448q14 0 23 -9t9 -23v-224h128q98 0 179 -63.5t104 -157.5l105 -419h28zM320 160q66 0 113 47t47 113t-47 113t-113 47t-113 -47t-47 -113t47 -113t113 -47zM516 640h1016l-89 357q-2 8 -14 17.5t-21 9.5h-768q-9 0 -21 -9.5t-14 -17.5z M1728 160q66 0 113 47t47 113t-47 113t-113 47t-113 -47t-47 -113t47 -113t113 -47z" />
<glyph unicode="&#xf1bb;" d="M1504 64q0 -26 -19 -45t-45 -19h-462q1 -17 6 -87.5t5 -108.5q0 -25 -18 -42.5t-43 -17.5h-320q-25 0 -43 17.5t-18 42.5q0 38 5 108.5t6 87.5h-462q-26 0 -45 19t-19 45t19 45l402 403h-229q-26 0 -45 19t-19 45t19 45l402 403h-197q-26 0 -45 19t-19 45t19 45l384 384 q19 19 45 19t45 -19l384 -384q19 -19 19 -45t-19 -45t-45 -19h-197l402 -403q19 -19 19 -45t-19 -45t-45 -19h-229l402 -403q19 -19 19 -45z" />
<glyph unicode="&#xf1bc;" d="M1127 326q0 32 -30 51q-193 115 -447 115q-133 0 -287 -34q-42 -9 -42 -52q0 -20 13.5 -34.5t35.5 -14.5q5 0 37 8q132 27 243 27q226 0 397 -103q19 -11 33 -11q19 0 33 13.5t14 34.5zM1223 541q0 40 -35 61q-237 141 -548 141q-153 0 -303 -42q-48 -13 -48 -64 q0 -25 17.5 -42.5t42.5 -17.5q7 0 37 8q122 33 251 33q279 0 488 -124q24 -13 38 -13q25 0 42.5 17.5t17.5 42.5zM1331 789q0 47 -40 70q-126 73 -293 110.5t-343 37.5q-204 0 -364 -47q-23 -7 -38.5 -25.5t-15.5 -48.5q0 -31 20.5 -52t51.5 -21q11 0 40 8q133 37 307 37 q159 0 309.5 -34t253.5 -95q21 -12 40 -12q29 0 50.5 20.5t21.5 51.5zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
<glyph unicode="&#xf1bd;" horiz-adv-x="1024" d="M1024 1233l-303 -582l24 -31h279v-415h-507l-44 -30l-142 -273l-30 -30h-301v303l303 583l-24 30h-279v415h507l44 30l142 273l30 30h301v-303z" />
<glyph unicode="&#xf1be;" horiz-adv-x="2304" d="M784 164l16 241l-16 523q-1 10 -7.5 17t-16.5 7q-9 0 -16 -7t-7 -17l-14 -523l14 -241q1 -10 7.5 -16.5t15.5 -6.5q22 0 24 23zM1080 193l11 211l-12 586q0 16 -13 24q-8 5 -16 5t-16 -5q-13 -8 -13 -24l-1 -6l-10 -579q0 -1 11 -236v-1q0 -10 6 -17q9 -11 23 -11 q11 0 20 9q9 7 9 20zM35 533l20 -128l-20 -126q-2 -9 -9 -9t-9 9l-17 126l17 128q2 9 9 9t9 -9zM121 612l26 -207l-26 -203q-2 -9 -10 -9q-9 0 -9 10l-23 202l23 207q0 9 9 9q8 0 10 -9zM401 159zM213 650l25 -245l-25 -237q0 -11 -11 -11q-10 0 -12 11l-21 237l21 245 q2 12 12 12q11 0 11 -12zM307 657l23 -252l-23 -244q-2 -13 -14 -13q-13 0 -13 13l-21 244l21 252q0 13 13 13q12 0 14 -13zM401 639l21 -234l-21 -246q-2 -16 -16 -16q-6 0 -10.5 4.5t-4.5 11.5l-20 246l20 234q0 6 4.5 10.5t10.5 4.5q14 0 16 -15zM784 164zM495 785 l21 -380l-21 -246q0 -7 -5 -12.5t-12 -5.5q-16 0 -18 18l-18 246l18 380q2 18 18 18q7 0 12 -5.5t5 -12.5zM589 871l19 -468l-19 -244q0 -8 -5.5 -13.5t-13.5 -5.5q-18 0 -20 19l-16 244l16 468q2 19 20 19q8 0 13.5 -5.5t5.5 -13.5zM687 911l18 -506l-18 -242 q-2 -21 -22 -21q-19 0 -21 21l-16 242l16 506q0 9 6.5 15.5t14.5 6.5q9 0 15 -6.5t7 -15.5zM1079 169v0v0zM881 915l15 -510l-15 -239q0 -10 -7.5 -17.5t-17.5 -7.5t-17 7t-8 18l-14 239l14 510q0 11 7.5 18t17.5 7t17.5 -7t7.5 -18zM980 896l14 -492l-14 -236q0 -11 -8 -19 t-19 -8t-19 8t-9 19l-12 236l12 492q1 12 9 20t19 8t18.5 -8t8.5 -20zM1192 404l-14 -231v0q0 -13 -9 -22t-22 -9t-22 9t-10 22l-6 114l-6 117l12 636v3q2 15 12 24q9 7 20 7q8 0 15 -5q14 -8 16 -26zM2304 423q0 -117 -83 -199.5t-200 -82.5h-786q-13 2 -22 11t-9 22v899 q0 23 28 33q85 34 181 34q195 0 338 -131.5t160 -323.5q53 22 110 22q117 0 200 -83t83 -201z" />
<glyph unicode="&#xf1c0;" d="M768 768q237 0 443 43t325 127v-170q0 -69 -103 -128t-280 -93.5t-385 -34.5t-385 34.5t-280 93.5t-103 128v170q119 -84 325 -127t443 -43zM768 0q237 0 443 43t325 127v-170q0 -69 -103 -128t-280 -93.5t-385 -34.5t-385 34.5t-280 93.5t-103 128v170q119 -84 325 -127 t443 -43zM768 384q237 0 443 43t325 127v-170q0 -69 -103 -128t-280 -93.5t-385 -34.5t-385 34.5t-280 93.5t-103 128v170q119 -84 325 -127t443 -43zM768 1536q208 0 385 -34.5t280 -93.5t103 -128v-128q0 -69 -103 -128t-280 -93.5t-385 -34.5t-385 34.5t-280 93.5 t-103 128v128q0 69 103 128t280 93.5t385 34.5z" />
<glyph unicode="&#xf1c1;" d="M1468 1156q28 -28 48 -76t20 -88v-1152q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1600q0 40 28 68t68 28h896q40 0 88 -20t76 -48zM1024 1400v-376h376q-10 29 -22 41l-313 313q-12 12 -41 22zM1408 -128v1024h-416q-40 0 -68 28t-28 68v416h-768v-1536h1280z M894 465q33 -26 84 -56q59 7 117 7q147 0 177 -49q16 -22 2 -52q0 -1 -1 -2l-2 -2v-1q-6 -38 -71 -38q-48 0 -115 20t-130 53q-221 -24 -392 -83q-153 -262 -242 -262q-15 0 -28 7l-24 12q-1 1 -6 5q-10 10 -6 36q9 40 56 91.5t132 96.5q14 9 23 -6q2 -2 2 -4q52 85 107 197 q68 136 104 262q-24 82 -30.5 159.5t6.5 127.5q11 40 42 40h21h1q23 0 35 -15q18 -21 9 -68q-2 -6 -4 -8q1 -3 1 -8v-30q-2 -123 -14 -192q55 -164 146 -238zM318 54q52 24 137 158q-51 -40 -87.5 -84t-49.5 -74zM716 974q-15 -42 -2 -132q1 7 7 44q0 3 7 43q1 4 4 8 q-1 1 -1 2t-0.5 1.5t-0.5 1.5q-1 22 -13 36q0 -1 -1 -2v-2zM592 313q135 54 284 81q-2 1 -13 9.5t-16 13.5q-76 67 -127 176q-27 -86 -83 -197q-30 -56 -45 -83zM1238 329q-24 24 -140 24q76 -28 124 -28q14 0 18 1q0 1 -2 3z" />
<glyph unicode="&#xf1c2;" d="M1468 1156q28 -28 48 -76t20 -88v-1152q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1600q0 40 28 68t68 28h896q40 0 88 -20t76 -48zM1024 1400v-376h376q-10 29 -22 41l-313 313q-12 12 -41 22zM1408 -128v1024h-416q-40 0 -68 28t-28 68v416h-768v-1536h1280z M233 768v-107h70l164 -661h159l128 485q7 20 10 46q2 16 2 24h4l3 -24q1 -3 3.5 -20t5.5 -26l128 -485h159l164 661h70v107h-300v-107h90l-99 -438q-5 -20 -7 -46l-2 -21h-4l-3 21q-1 5 -4 21t-5 25l-144 545h-114l-144 -545q-2 -9 -4.5 -24.5t-3.5 -21.5l-4 -21h-4l-2 21 q-2 26 -7 46l-99 438h90v107h-300z" />
<glyph unicode="&#xf1c3;" d="M1468 1156q28 -28 48 -76t20 -88v-1152q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1600q0 40 28 68t68 28h896q40 0 88 -20t76 -48zM1024 1400v-376h376q-10 29 -22 41l-313 313q-12 12 -41 22zM1408 -128v1024h-416q-40 0 -68 28t-28 68v416h-768v-1536h1280z M429 106v-106h281v106h-75l103 161q5 7 10 16.5t7.5 13.5t3.5 4h2q1 -4 5 -10q2 -4 4.5 -7.5t6 -8t6.5 -8.5l107 -161h-76v-106h291v106h-68l-192 273l195 282h67v107h-279v-107h74l-103 -159q-4 -7 -10 -16.5t-9 -13.5l-2 -3h-2q-1 4 -5 10q-6 11 -17 23l-106 159h76v107 h-290v-107h68l189 -272l-194 -283h-68z" />
<glyph unicode="&#xf1c4;" d="M1468 1156q28 -28 48 -76t20 -88v-1152q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1600q0 40 28 68t68 28h896q40 0 88 -20t76 -48zM1024 1400v-376h376q-10 29 -22 41l-313 313q-12 12 -41 22zM1408 -128v1024h-416q-40 0 -68 28t-28 68v416h-768v-1536h1280z M416 106v-106h327v106h-93v167h137q76 0 118 15q67 23 106.5 87t39.5 146q0 81 -37 141t-100 87q-48 19 -130 19h-368v-107h92v-555h-92zM769 386h-119v268h120q52 0 83 -18q56 -33 56 -115q0 -89 -62 -120q-31 -15 -78 -15z" />
<glyph unicode="&#xf1c5;" d="M1468 1156q28 -28 48 -76t20 -88v-1152q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1600q0 40 28 68t68 28h896q40 0 88 -20t76 -48zM1024 1400v-376h376q-10 29 -22 41l-313 313q-12 12 -41 22zM1408 -128v1024h-416q-40 0 -68 28t-28 68v416h-768v-1536h1280z M1280 320v-320h-1024v192l192 192l128 -128l384 384zM448 512q-80 0 -136 56t-56 136t56 136t136 56t136 -56t56 -136t-56 -136t-136 -56z" />
<glyph unicode="&#xf1c6;" d="M640 1152v128h-128v-128h128zM768 1024v128h-128v-128h128zM640 896v128h-128v-128h128zM768 768v128h-128v-128h128zM1468 1156q28 -28 48 -76t20 -88v-1152q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1600q0 40 28 68t68 28h896q40 0 88 -20t76 -48zM1024 1400 v-376h376q-10 29 -22 41l-313 313q-12 12 -41 22zM1408 -128v1024h-416q-40 0 -68 28t-28 68v416h-128v-128h-128v128h-512v-1536h1280zM781 593l107 -349q8 -27 8 -52q0 -83 -72.5 -137.5t-183.5 -54.5t-183.5 54.5t-72.5 137.5q0 25 8 52q21 63 120 396v128h128v-128h79 q22 0 39 -13t23 -34zM640 128q53 0 90.5 19t37.5 45t-37.5 45t-90.5 19t-90.5 -19t-37.5 -45t37.5 -45t90.5 -19z" />
<glyph unicode="&#xf1c7;" d="M1468 1156q28 -28 48 -76t20 -88v-1152q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1600q0 40 28 68t68 28h896q40 0 88 -20t76 -48zM1024 1400v-376h376q-10 29 -22 41l-313 313q-12 12 -41 22zM1408 -128v1024h-416q-40 0 -68 28t-28 68v416h-768v-1536h1280z M620 686q20 -8 20 -30v-544q0 -22 -20 -30q-8 -2 -12 -2q-12 0 -23 9l-166 167h-131q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h131l166 167q16 15 35 7zM1037 -3q31 0 50 24q129 159 129 363t-129 363q-16 21 -43 24t-47 -14q-21 -17 -23.5 -43.5t14.5 -47.5 q100 -123 100 -282t-100 -282q-17 -21 -14.5 -47.5t23.5 -42.5q18 -15 40 -15zM826 145q27 0 47 20q87 93 87 219t-87 219q-18 19 -45 20t-46 -17t-20 -44.5t18 -46.5q52 -57 52 -131t-52 -131q-19 -20 -18 -46.5t20 -44.5q20 -17 44 -17z" />
<glyph unicode="&#xf1c8;" d="M1468 1156q28 -28 48 -76t20 -88v-1152q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1600q0 40 28 68t68 28h896q40 0 88 -20t76 -48zM1024 1400v-376h376q-10 29 -22 41l-313 313q-12 12 -41 22zM1408 -128v1024h-416q-40 0 -68 28t-28 68v416h-768v-1536h1280z M768 768q52 0 90 -38t38 -90v-384q0 -52 -38 -90t-90 -38h-384q-52 0 -90 38t-38 90v384q0 52 38 90t90 38h384zM1260 766q20 -8 20 -30v-576q0 -22 -20 -30q-8 -2 -12 -2q-14 0 -23 9l-265 266v90l265 266q9 9 23 9q4 0 12 -2z" />
<glyph unicode="&#xf1c9;" d="M1468 1156q28 -28 48 -76t20 -88v-1152q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1600q0 40 28 68t68 28h896q40 0 88 -20t76 -48zM1024 1400v-376h376q-10 29 -22 41l-313 313q-12 12 -41 22zM1408 -128v1024h-416q-40 0 -68 28t-28 68v416h-768v-1536h1280z M480 768q8 11 21 12.5t24 -6.5l51 -38q11 -8 12.5 -21t-6.5 -24l-182 -243l182 -243q8 -11 6.5 -24t-12.5 -21l-51 -38q-11 -8 -24 -6.5t-21 12.5l-226 301q-14 19 0 38zM1282 467q14 -19 0 -38l-226 -301q-8 -11 -21 -12.5t-24 6.5l-51 38q-11 8 -12.5 21t6.5 24l182 243 l-182 243q-8 11 -6.5 24t12.5 21l51 38q11 8 24 6.5t21 -12.5zM662 6q-13 2 -20.5 13t-5.5 24l138 831q2 13 13 20.5t24 5.5l63 -10q13 -2 20.5 -13t5.5 -24l-138 -831q-2 -13 -13 -20.5t-24 -5.5z" />
<glyph unicode="&#xf1ca;" d="M1497 709v-198q-101 -23 -198 -23q-65 -136 -165.5 -271t-181.5 -215.5t-128 -106.5q-80 -45 -162 3q-28 17 -60.5 43.5t-85 83.5t-102.5 128.5t-107.5 184t-105.5 244t-91.5 314.5t-70.5 390h283q26 -218 70 -398.5t104.5 -317t121.5 -235.5t140 -195q169 169 287 406 q-142 72 -223 220t-81 333q0 192 104 314.5t284 122.5q178 0 273 -105.5t95 -297.5q0 -159 -58 -286q-7 -1 -19.5 -3t-46 -2t-63 6t-62 25.5t-50.5 51.5q31 103 31 184q0 87 -29 132t-79 45q-53 0 -85 -49.5t-32 -140.5q0 -186 105 -293.5t267 -107.5q62 0 121 14z" />
<glyph unicode="&#xf1cb;" horiz-adv-x="1792" d="M216 367l603 -402v359l-334 223zM154 511l193 129l-193 129v-258zM973 -35l603 402l-269 180l-334 -223v-359zM896 458l272 182l-272 182l-272 -182zM485 733l334 223v359l-603 -402zM1445 640l193 -129v258zM1307 733l269 180l-603 402v-359zM1792 913v-546 q0 -41 -34 -64l-819 -546q-21 -13 -43 -13t-43 13l-819 546q-34 23 -34 64v546q0 41 34 64l819 546q21 13 43 13t43 -13l819 -546q34 -23 34 -64z" />
<glyph unicode="&#xf1cc;" horiz-adv-x="2048" d="M1800 764q111 -46 179.5 -145.5t68.5 -221.5q0 -164 -118 -280.5t-285 -116.5q-4 0 -11.5 0.5t-10.5 0.5h-1209h-1h-2h-5q-170 10 -288 125.5t-118 280.5q0 110 55 203t147 147q-12 39 -12 82q0 115 82 196t199 81q95 0 172 -58q75 154 222.5 248t326.5 94 q166 0 306 -80.5t221.5 -218.5t81.5 -301q0 -6 -0.5 -18t-0.5 -18zM468 498q0 -122 84 -193t208 -71q137 0 240 99q-16 20 -47.5 56.5t-43.5 50.5q-67 -65 -144 -65q-55 0 -93.5 33.5t-38.5 87.5q0 53 38.5 87t91.5 34q44 0 84.5 -21t73 -55t65 -75t69 -82t77 -75t97 -55 t121.5 -21q121 0 204.5 71.5t83.5 190.5q0 121 -84 192t-207 71q-143 0 -241 -97q14 -16 29.5 -34t34.5 -40t29 -34q66 64 142 64q52 0 92 -33t40 -84q0 -57 -37 -91.5t-94 -34.5q-43 0 -82.5 21t-72 55t-65.5 75t-69.5 82t-77.5 75t-96.5 55t-118.5 21q-122 0 -207 -70.5 t-85 -189.5z" />
<glyph unicode="&#xf1cd;" horiz-adv-x="1792" d="M896 1536q182 0 348 -71t286 -191t191 -286t71 -348t-71 -348t-191 -286t-286 -191t-348 -71t-348 71t-286 191t-191 286t-71 348t71 348t191 286t286 191t348 71zM896 1408q-190 0 -361 -90l194 -194q82 28 167 28t167 -28l194 194q-171 90 -361 90zM218 279l194 194 q-28 82 -28 167t28 167l-194 194q-90 -171 -90 -361t90 -361zM896 -128q190 0 361 90l-194 194q-82 -28 -167 -28t-167 28l-194 -194q171 -90 361 -90zM896 256q159 0 271.5 112.5t112.5 271.5t-112.5 271.5t-271.5 112.5t-271.5 -112.5t-112.5 -271.5t112.5 -271.5 t271.5 -112.5zM1380 473l194 -194q90 171 90 361t-90 361l-194 -194q28 -82 28 -167t-28 -167z" />
<glyph unicode="&#xf1ce;" horiz-adv-x="1792" d="M1792 640q0 -182 -71 -348t-191 -286t-286 -191t-348 -71t-348 71t-286 191t-191 286t-71 348q0 222 101 414.5t276.5 317t390.5 155.5v-260q-221 -45 -366.5 -221t-145.5 -406q0 -130 51 -248.5t136.5 -204t204 -136.5t248.5 -51t248.5 51t204 136.5t136.5 204t51 248.5 q0 230 -145.5 406t-366.5 221v260q215 -31 390.5 -155.5t276.5 -317t101 -414.5z" />
<glyph unicode="&#xf1d0;" horiz-adv-x="1792" d="M19 662q8 217 116 406t305 318h5q0 -1 -1 -3q-8 -8 -28 -33.5t-52 -76.5t-60 -110.5t-44.5 -135.5t-14 -150.5t39 -157.5t108.5 -154q50 -50 102 -69.5t90.5 -11.5t69.5 23.5t47 32.5l16 16q39 51 53 116.5t6.5 122.5t-21 107t-26.5 80l-14 29q-10 25 -30.5 49.5t-43 41 t-43.5 29.5t-35 19l-13 6l104 115q39 -17 78 -52t59 -61l19 -27q1 48 -18.5 103.5t-40.5 87.5l-20 31l161 183l160 -181q-33 -46 -52.5 -102.5t-22.5 -90.5l-4 -33q22 37 61.5 72.5t67.5 52.5l28 17l103 -115q-44 -14 -85 -50t-60 -65l-19 -29q-31 -56 -48 -133.5t-7 -170 t57 -156.5q33 -45 77.5 -60.5t85 -5.5t76 26.5t57.5 33.5l21 16q60 53 96.5 115t48.5 121.5t10 121.5t-18 118t-37 107.5t-45.5 93t-45 72t-34.5 47.5l-13 17q-14 13 -7 13l10 -3q40 -29 62.5 -46t62 -50t64 -58t58.5 -65t55.5 -77t45.5 -88t38 -103t23.5 -117t10.5 -136 q3 -259 -108 -465t-312 -321t-456 -115q-185 0 -351 74t-283.5 198t-184 293t-60.5 353z" />
<glyph unicode="&#xf1d1;" horiz-adv-x="1792" d="M874 -102v-66q-208 6 -385 109.5t-283 275.5l58 34q29 -49 73 -99l65 57q148 -168 368 -212l-17 -86q65 -12 121 -13zM276 428l-83 -28q22 -60 49 -112l-57 -33q-98 180 -98 385t98 385l57 -33q-30 -56 -49 -112l82 -28q-35 -100 -35 -212q0 -109 36 -212zM1528 251 l58 -34q-106 -172 -283 -275.5t-385 -109.5v66q56 1 121 13l-17 86q220 44 368 212l65 -57q44 50 73 99zM1377 805l-233 -80q14 -42 14 -85t-14 -85l232 -80q-31 -92 -98 -169l-185 162q-57 -67 -147 -85l48 -241q-52 -10 -98 -10t-98 10l48 241q-90 18 -147 85l-185 -162 q-67 77 -98 169l232 80q-14 42 -14 85t14 85l-233 80q33 93 99 169l185 -162q59 68 147 86l-48 240q44 10 98 10t98 -10l-48 -240q88 -18 147 -86l185 162q66 -76 99 -169zM874 1448v-66q-65 -2 -121 -13l17 -86q-220 -42 -368 -211l-65 56q-38 -42 -73 -98l-57 33 q106 172 282 275.5t385 109.5zM1705 640q0 -205 -98 -385l-57 33q27 52 49 112l-83 28q36 103 36 212q0 112 -35 212l82 28q-19 56 -49 112l57 33q98 -180 98 -385zM1585 1063l-57 -33q-35 56 -73 98l-65 -56q-148 169 -368 211l17 86q-56 11 -121 13v66q209 -6 385 -109.5 t282 -275.5zM1748 640q0 173 -67.5 331t-181.5 272t-272 181.5t-331 67.5t-331 -67.5t-272 -181.5t-181.5 -272t-67.5 -331t67.5 -331t181.5 -272t272 -181.5t331 -67.5t331 67.5t272 181.5t181.5 272t67.5 331zM1792 640q0 -182 -71 -348t-191 -286t-286 -191t-348 -71 t-348 71t-286 191t-191 286t-71 348t71 348t191 286t286 191t348 71t348 -71t286 -191t191 -286t71 -348z" />
<glyph unicode="&#xf1d2;" d="M582 228q0 -66 -93 -66q-107 0 -107 63q0 64 98 64q102 0 102 -61zM546 694q0 -85 -74 -85q-77 0 -77 84q0 90 77 90q36 0 55 -25.5t19 -63.5zM712 769v125q-78 -29 -135 -29q-50 29 -110 29q-86 0 -145 -57t-59 -143q0 -50 29.5 -102t73.5 -67v-3q-38 -17 -38 -85 q0 -53 41 -77v-3q-113 -37 -113 -139q0 -45 20 -78.5t54 -51t72 -25.5t81 -8q224 0 224 188q0 67 -48 99t-126 46q-27 5 -51.5 20.5t-24.5 39.5q0 44 49 52q77 15 122 70t45 134q0 24 -10 52q37 9 49 13zM771 350h137q-2 27 -2 82v387q0 46 2 69h-137q3 -23 3 -71v-392 q0 -50 -3 -75zM1280 366v121q-30 -21 -68 -21q-53 0 -53 82v225h52q9 0 26.5 -1t26.5 -1v117h-105q0 82 3 102h-140q4 -24 4 -55v-47h-60v-117q36 3 37 3q3 0 11 -0.5t12 -0.5v-2h-2v-217q0 -37 2.5 -64t11.5 -56.5t24.5 -48.5t43.5 -31t66 -12q64 0 108 24zM924 1072 q0 36 -24 63.5t-60 27.5t-60.5 -27t-24.5 -64q0 -36 25 -62.5t60 -26.5t59.5 27t24.5 62zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
<glyph unicode="&#xf1d3;" horiz-adv-x="1792" d="M595 22q0 100 -165 100q-158 0 -158 -104q0 -101 172 -101q151 0 151 105zM536 777q0 61 -30 102t-89 41q-124 0 -124 -145q0 -135 124 -135q119 0 119 137zM805 1101v-202q-36 -12 -79 -22q16 -43 16 -84q0 -127 -73 -216.5t-197 -112.5q-40 -8 -59.5 -27t-19.5 -58 q0 -31 22.5 -51.5t58 -32t78.5 -22t86 -25.5t78.5 -37.5t58 -64t22.5 -98.5q0 -304 -363 -304q-69 0 -130 12.5t-116 41t-87.5 82t-32.5 127.5q0 165 182 225v4q-67 41 -67 126q0 109 63 137v4q-72 24 -119.5 108.5t-47.5 165.5q0 139 95 231.5t235 92.5q96 0 178 -47 q98 0 218 47zM1123 220h-222q4 45 4 134v609q0 94 -4 128h222q-4 -33 -4 -124v-613q0 -89 4 -134zM1724 442v-196q-71 -39 -174 -39q-62 0 -107 20t-70 50t-39.5 78t-18.5 92t-4 103v351h2v4q-7 0 -19 1t-18 1q-21 0 -59 -6v190h96v76q0 54 -6 89h227q-6 -41 -6 -165h171 v-190q-15 0 -43.5 2t-42.5 2h-85v-365q0 -131 87 -131q61 0 109 33zM1148 1389q0 -58 -39 -101.5t-96 -43.5q-58 0 -98 43.5t-40 101.5q0 59 39.5 103t98.5 44q58 0 96.5 -44.5t38.5 -102.5z" />
<glyph unicode="&#xf1d4;" d="M809 532l266 499h-112l-157 -312q-24 -48 -44 -92l-42 92l-155 312h-120l263 -493v-324h101v318zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
<glyph unicode="&#xf1d5;" horiz-adv-x="1280" d="M842 964q0 -80 -57 -136.5t-136 -56.5q-60 0 -111 35q-62 -67 -115 -146q-247 -371 -202 -859q1 -22 -12.5 -38.5t-34.5 -18.5h-5q-20 0 -35 13.5t-17 33.5q-14 126 -3.5 247.5t29.5 217t54 186t69 155.5t74 125q61 90 132 165q-16 35 -16 77q0 80 56.5 136.5t136.5 56.5 t136.5 -56.5t56.5 -136.5zM1223 953q0 -158 -78 -292t-212.5 -212t-292.5 -78q-64 0 -131 14q-21 5 -32.5 23.5t-6.5 39.5q5 20 23 31.5t39 7.5q51 -13 108 -13q97 0 186 38t153 102t102 153t38 186t-38 186t-102 153t-153 102t-186 38t-186 -38t-153 -102t-102 -153 t-38 -186q0 -114 52 -218q10 -20 3.5 -40t-25.5 -30t-39.5 -3t-30.5 26q-64 123 -64 265q0 119 46.5 227t124.5 186t186 124t226 46q158 0 292.5 -78t212.5 -212.5t78 -292.5z" />
<glyph unicode="&#xf1d6;" horiz-adv-x="1792" d="M270 730q-8 19 -8 52q0 20 11 49t24 45q-1 22 7.5 53t22.5 43q0 139 92.5 288.5t217.5 209.5q139 66 324 66q133 0 266 -55q49 -21 90 -48t71 -56t55 -68t42 -74t32.5 -84.5t25.5 -89.5t22 -98l1 -5q55 -83 55 -150q0 -14 -9 -40t-9 -38q0 -1 1.5 -3.5t3.5 -5t2 -3.5 q77 -114 120.5 -214.5t43.5 -208.5q0 -43 -19.5 -100t-55.5 -57q-9 0 -19.5 7.5t-19 17.5t-19 26t-16 26.5t-13.5 26t-9 17.5q-1 1 -3 1l-5 -4q-59 -154 -132 -223q20 -20 61.5 -38.5t69 -41.5t35.5 -65q-2 -4 -4 -16t-7 -18q-64 -97 -302 -97q-53 0 -110.5 9t-98 20 t-104.5 30q-15 5 -23 7q-14 4 -46 4.5t-40 1.5q-41 -45 -127.5 -65t-168.5 -20q-35 0 -69 1.5t-93 9t-101 20.5t-74.5 40t-32.5 64q0 40 10 59.5t41 48.5q11 2 40.5 13t49.5 12q4 0 14 2q2 2 2 4l-2 3q-48 11 -108 105.5t-73 156.5l-5 3q-4 0 -12 -20q-18 -41 -54.5 -74.5 t-77.5 -37.5h-1q-4 0 -6 4.5t-5 5.5q-23 54 -23 100q0 275 252 466z" />
<glyph unicode="&#xf1d7;" horiz-adv-x="2048" d="M580 1075q0 41 -25 66t-66 25q-43 0 -76 -25.5t-33 -65.5q0 -39 33 -64.5t76 -25.5q41 0 66 24.5t25 65.5zM1323 568q0 28 -25.5 50t-65.5 22q-27 0 -49.5 -22.5t-22.5 -49.5q0 -28 22.5 -50.5t49.5 -22.5q40 0 65.5 22t25.5 51zM1087 1075q0 41 -24.5 66t-65.5 25 q-43 0 -76 -25.5t-33 -65.5q0 -39 33 -64.5t76 -25.5q41 0 65.5 24.5t24.5 65.5zM1722 568q0 28 -26 50t-65 22q-27 0 -49.5 -22.5t-22.5 -49.5q0 -28 22.5 -50.5t49.5 -22.5q39 0 65 22t26 51zM1456 965q-31 4 -70 4q-169 0 -311 -77t-223.5 -208.5t-81.5 -287.5 q0 -78 23 -152q-35 -3 -68 -3q-26 0 -50 1.5t-55 6.5t-44.5 7t-54.5 10.5t-50 10.5l-253 -127l72 218q-290 203 -290 490q0 169 97.5 311t264 223.5t363.5 81.5q176 0 332.5 -66t262 -182.5t136.5 -260.5zM2048 404q0 -117 -68.5 -223.5t-185.5 -193.5l55 -181l-199 109 q-150 -37 -218 -37q-169 0 -311 70.5t-223.5 191.5t-81.5 264t81.5 264t223.5 191.5t311 70.5q161 0 303 -70.5t227.5 -192t85.5 -263.5z" />
<glyph unicode="&#xf1d8;" horiz-adv-x="1792" d="M1764 1525q33 -24 27 -64l-256 -1536q-5 -29 -32 -45q-14 -8 -31 -8q-11 0 -24 5l-453 185l-242 -295q-18 -23 -49 -23q-13 0 -22 4q-19 7 -30.5 23.5t-11.5 36.5v349l864 1059l-1069 -925l-395 162q-37 14 -40 55q-2 40 32 59l1664 960q15 9 32 9q20 0 36 -11z" />
<glyph unicode="&#xf1d9;" horiz-adv-x="1792" d="M1764 1525q33 -24 27 -64l-256 -1536q-5 -29 -32 -45q-14 -8 -31 -8q-11 0 -24 5l-527 215l-298 -327q-18 -21 -47 -21q-14 0 -23 4q-19 7 -30 23.5t-11 36.5v452l-472 193q-37 14 -40 55q-3 39 32 59l1664 960q35 21 68 -2zM1422 26l221 1323l-1434 -827l336 -137 l863 639l-478 -797z" />
<glyph unicode="&#xf1da;" d="M1536 640q0 -156 -61 -298t-164 -245t-245 -164t-298 -61q-172 0 -327 72.5t-264 204.5q-7 10 -6.5 22.5t8.5 20.5l137 138q10 9 25 9q16 -2 23 -12q73 -95 179 -147t225 -52q104 0 198.5 40.5t163.5 109.5t109.5 163.5t40.5 198.5t-40.5 198.5t-109.5 163.5 t-163.5 109.5t-198.5 40.5q-98 0 -188 -35.5t-160 -101.5l137 -138q31 -30 14 -69q-17 -40 -59 -40h-448q-26 0 -45 19t-19 45v448q0 42 40 59q39 17 69 -14l130 -129q107 101 244.5 156.5t284.5 55.5q156 0 298 -61t245 -164t164 -245t61 -298zM896 928v-448q0 -14 -9 -23 t-23 -9h-320q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h224v352q0 14 9 23t23 9h64q14 0 23 -9t9 -23z" />
<glyph unicode="&#xf1db;" d="M768 1280q-130 0 -248.5 -51t-204 -136.5t-136.5 -204t-51 -248.5t51 -248.5t136.5 -204t204 -136.5t248.5 -51t248.5 51t204 136.5t136.5 204t51 248.5t-51 248.5t-136.5 204t-204 136.5t-248.5 51zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103 t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
<glyph unicode="&#xf1dc;" horiz-adv-x="1792" d="M1682 -128q-44 0 -132.5 3.5t-133.5 3.5q-44 0 -132 -3.5t-132 -3.5q-24 0 -37 20.5t-13 45.5q0 31 17 46t39 17t51 7t45 15q33 21 33 140l-1 391q0 21 -1 31q-13 4 -50 4h-675q-38 0 -51 -4q-1 -10 -1 -31l-1 -371q0 -142 37 -164q16 -10 48 -13t57 -3.5t45 -15 t20 -45.5q0 -26 -12.5 -48t-36.5 -22q-47 0 -139.5 3.5t-138.5 3.5q-43 0 -128 -3.5t-127 -3.5q-23 0 -35.5 21t-12.5 45q0 30 15.5 45t36 17.5t47.5 7.5t42 15q33 23 33 143l-1 57v813q0 3 0.5 26t0 36.5t-1.5 38.5t-3.5 42t-6.5 36.5t-11 31.5t-16 18q-15 10 -45 12t-53 2 t-41 14t-18 45q0 26 12 48t36 22q46 0 138.5 -3.5t138.5 -3.5q42 0 126.5 3.5t126.5 3.5q25 0 37.5 -22t12.5 -48q0 -30 -17 -43.5t-38.5 -14.5t-49.5 -4t-43 -13q-35 -21 -35 -160l1 -320q0 -21 1 -32q13 -3 39 -3h699q25 0 38 3q1 11 1 32l1 320q0 139 -35 160 q-18 11 -58.5 12.5t-66 13t-25.5 49.5q0 26 12.5 48t37.5 22q44 0 132 -3.5t132 -3.5q43 0 129 3.5t129 3.5q25 0 37.5 -22t12.5 -48q0 -30 -17.5 -44t-40 -14.5t-51.5 -3t-44 -12.5q-35 -23 -35 -161l1 -943q0 -119 34 -140q16 -10 46 -13.5t53.5 -4.5t41.5 -15.5t18 -44.5 q0 -26 -12 -48t-36 -22z" />
<glyph unicode="&#xf1dd;" horiz-adv-x="1280" d="M1278 1347v-73q0 -29 -18.5 -61t-42.5 -32q-50 0 -54 -1q-26 -6 -32 -31q-3 -11 -3 -64v-1152q0 -25 -18 -43t-43 -18h-108q-25 0 -43 18t-18 43v1218h-143v-1218q0 -25 -17.5 -43t-43.5 -18h-108q-26 0 -43.5 18t-17.5 43v496q-147 12 -245 59q-126 58 -192 179 q-64 117 -64 259q0 166 88 286q88 118 209 159q111 37 417 37h479q25 0 43 -18t18 -43z" />
<glyph unicode="&#xf1de;" d="M352 128v-128h-352v128h352zM704 256q26 0 45 -19t19 -45v-256q0 -26 -19 -45t-45 -19h-256q-26 0 -45 19t-19 45v256q0 26 19 45t45 19h256zM864 640v-128h-864v128h864zM224 1152v-128h-224v128h224zM1536 128v-128h-736v128h736zM576 1280q26 0 45 -19t19 -45v-256 q0 -26 -19 -45t-45 -19h-256q-26 0 -45 19t-19 45v256q0 26 19 45t45 19h256zM1216 768q26 0 45 -19t19 -45v-256q0 -26 -19 -45t-45 -19h-256q-26 0 -45 19t-19 45v256q0 26 19 45t45 19h256zM1536 640v-128h-224v128h224zM1536 1152v-128h-864v128h864z" />
<glyph unicode="&#xf1e0;" d="M1216 512q133 0 226.5 -93.5t93.5 -226.5t-93.5 -226.5t-226.5 -93.5t-226.5 93.5t-93.5 226.5q0 12 2 34l-360 180q-92 -86 -218 -86q-133 0 -226.5 93.5t-93.5 226.5t93.5 226.5t226.5 93.5q126 0 218 -86l360 180q-2 22 -2 34q0 133 93.5 226.5t226.5 93.5 t226.5 -93.5t93.5 -226.5t-93.5 -226.5t-226.5 -93.5q-126 0 -218 86l-360 -180q2 -22 2 -34t-2 -34l360 -180q92 86 218 86z" />
<glyph unicode="&#xf1e1;" d="M1280 341q0 88 -62.5 151t-150.5 63q-84 0 -145 -58l-241 120q2 16 2 23t-2 23l241 120q61 -58 145 -58q88 0 150.5 63t62.5 151t-62.5 150.5t-150.5 62.5t-151 -62.5t-63 -150.5q0 -7 2 -23l-241 -120q-62 57 -145 57q-88 0 -150.5 -62.5t-62.5 -150.5t62.5 -150.5 t150.5 -62.5q83 0 145 57l241 -120q-2 -16 -2 -23q0 -88 63 -150.5t151 -62.5t150.5 62.5t62.5 150.5zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
<glyph unicode="&#xf1e2;" horiz-adv-x="1792" d="M571 947q-10 25 -34 35t-49 0q-108 -44 -191 -127t-127 -191q-10 -25 0 -49t35 -34q13 -5 24 -5q42 0 60 40q34 84 98.5 148.5t148.5 98.5q25 11 35 35t0 49zM1513 1303l46 -46l-244 -243l68 -68q19 -19 19 -45.5t-19 -45.5l-64 -64q89 -161 89 -343q0 -143 -55.5 -273.5 t-150 -225t-225 -150t-273.5 -55.5t-273.5 55.5t-225 150t-150 225t-55.5 273.5t55.5 273.5t150 225t225 150t273.5 55.5q182 0 343 -89l64 64q19 19 45.5 19t45.5 -19l68 -68zM1521 1359q-10 -10 -22 -10q-13 0 -23 10l-91 90q-9 10 -9 23t9 23q10 9 23 9t23 -9l90 -91 q10 -9 10 -22.5t-10 -22.5zM1751 1129q-11 -9 -23 -9t-23 9l-90 91q-10 9 -10 22.5t10 22.5q9 10 22.5 10t22.5 -10l91 -90q9 -10 9 -23t-9 -23zM1792 1312q0 -14 -9 -23t-23 -9h-96q-14 0 -23 9t-9 23t9 23t23 9h96q14 0 23 -9t9 -23zM1600 1504v-96q0 -14 -9 -23t-23 -9 t-23 9t-9 23v96q0 14 9 23t23 9t23 -9t9 -23zM1751 1449l-91 -90q-10 -10 -22 -10q-13 0 -23 10q-10 9 -10 22.5t10 22.5l90 91q10 9 23 9t23 -9q9 -10 9 -23t-9 -23z" />
<glyph unicode="&#xf1e3;" horiz-adv-x="1792" d="M609 720l287 208l287 -208l-109 -336h-355zM896 1536q182 0 348 -71t286 -191t191 -286t71 -348t-71 -348t-191 -286t-286 -191t-348 -71t-348 71t-286 191t-191 286t-71 348t71 348t191 286t286 191t348 71zM1515 186q149 203 149 454v3l-102 -89l-240 224l63 323 l134 -12q-150 206 -389 282l53 -124l-287 -159l-287 159l53 124q-239 -76 -389 -282l135 12l62 -323l-240 -224l-102 89v-3q0 -251 149 -454l30 132l326 -40l139 -298l-116 -69q117 -39 240 -39t240 39l-116 69l139 298l326 40z" />
<glyph unicode="&#xf1e4;" horiz-adv-x="1792" d="M448 224v-192q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM256 608v-192q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM832 224v-192q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23 v192q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM640 608v-192q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM66 768q-28 0 -47 19t-19 46v129h514v-129q0 -27 -19 -46t-46 -19h-383zM1216 224v-192q0 -14 -9 -23t-23 -9h-192 q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM1024 608v-192q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM1600 224v-192q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h192q14 0 23 -9t9 -23 zM1408 608v-192q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM1792 1016v-13h-514v10q0 104 -382 102q-382 -1 -382 -102v-10h-514v13q0 17 8.5 43t34 64t65.5 75.5t110.5 76t160 67.5t224 47.5t293.5 18.5t293 -18.5t224 -47.5 t160.5 -67.5t110.5 -76t65.5 -75.5t34 -64t8.5 -43zM1792 608v-192q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM1792 962v-129q0 -27 -19 -46t-46 -19h-384q-27 0 -46 19t-19 46v129h514z" />
<glyph unicode="&#xf1e5;" horiz-adv-x="1792" d="M704 1216v-768q0 -26 -19 -45t-45 -19v-576q0 -26 -19 -45t-45 -19h-512q-26 0 -45 19t-19 45v512l249 873q7 23 31 23h424zM1024 1216v-704h-256v704h256zM1792 320v-512q0 -26 -19 -45t-45 -19h-512q-26 0 -45 19t-19 45v576q-26 0 -45 19t-19 45v768h424q24 0 31 -23z M736 1504v-224h-352v224q0 14 9 23t23 9h288q14 0 23 -9t9 -23zM1408 1504v-224h-352v224q0 14 9 23t23 9h288q14 0 23 -9t9 -23z" />
<glyph unicode="&#xf1e6;" horiz-adv-x="1792" d="M1755 1083q37 -37 37 -90t-37 -91l-401 -400l150 -150l-160 -160q-163 -163 -389.5 -186.5t-411.5 100.5l-362 -362h-181v181l362 362q-124 185 -100.5 411.5t186.5 389.5l160 160l150 -150l400 401q38 37 91 37t90 -37t37 -90.5t-37 -90.5l-400 -401l234 -234l401 400 q38 37 91 37t90 -37z" />
<glyph unicode="&#xf1e7;" horiz-adv-x="1792" d="M873 796q0 -83 -63.5 -142.5t-152.5 -59.5t-152.5 59.5t-63.5 142.5q0 84 63.5 143t152.5 59t152.5 -59t63.5 -143zM1375 796q0 -83 -63 -142.5t-153 -59.5q-89 0 -152.5 59.5t-63.5 142.5q0 84 63.5 143t152.5 59q90 0 153 -59t63 -143zM1600 616v667q0 87 -32 123.5 t-111 36.5h-1112q-83 0 -112.5 -34t-29.5 -126v-673q43 -23 88.5 -40t81 -28t81 -18.5t71 -11t70 -4t58.5 -0.5t56.5 2t44.5 2q68 1 95 -27q6 -6 10 -9q26 -25 61 -51q7 91 118 87q5 0 36.5 -1.5t43 -2t45.5 -1t53 1t54.5 4.5t61 8.5t62 13.5t67 19.5t67.5 27t72 34.5z M1763 621q-121 -149 -372 -252q84 -285 -23 -465q-66 -113 -183 -148q-104 -32 -182 15q-86 51 -82 164l-1 326v1q-8 2 -24.5 6t-23.5 5l-1 -338q4 -114 -83 -164q-79 -47 -183 -15q-117 36 -182 150q-105 180 -22 463q-251 103 -372 252q-25 37 -4 63t60 -1q3 -2 11 -7 t11 -8v694q0 72 47 123t114 51h1257q67 0 114 -51t47 -123v-694l21 15q39 27 60 1t-4 -63z" />
<glyph unicode="&#xf1e8;" horiz-adv-x="1792" d="M896 1102v-434h-145v434h145zM1294 1102v-434h-145v434h145zM1294 342l253 254v795h-1194v-1049h326v-217l217 217h398zM1692 1536v-1013l-434 -434h-326l-217 -217h-217v217h-398v1158l109 289h1483z" />
<glyph unicode="&#xf1e9;" d="M773 217v-127q-1 -292 -6 -305q-12 -32 -51 -40q-54 -9 -181.5 38t-162.5 89q-13 15 -17 36q-1 12 4 26q4 10 34 47t181 216q1 0 60 70q15 19 39.5 24.5t49.5 -3.5q24 -10 37.5 -29t12.5 -42zM624 468q-3 -55 -52 -70l-120 -39q-275 -88 -292 -88q-35 2 -54 36 q-12 25 -17 75q-8 76 1 166.5t30 124.5t56 32q13 0 202 -77q70 -29 115 -47l84 -34q23 -9 35.5 -30.5t11.5 -48.5zM1450 171q-7 -54 -91.5 -161t-135.5 -127q-37 -14 -63 7q-14 10 -184 287l-47 77q-14 21 -11.5 46t19.5 46q35 43 83 26q1 -1 119 -40q203 -66 242 -79.5 t47 -20.5q28 -22 22 -61zM778 803q5 -102 -54 -122q-58 -17 -114 71l-378 598q-8 35 19 62q41 43 207.5 89.5t224.5 31.5q40 -10 49 -45q3 -18 22 -305.5t24 -379.5zM1440 695q3 -39 -26 -59q-15 -10 -329 -86q-67 -15 -91 -23l1 2q-23 -6 -46 4t-37 32q-30 47 0 87 q1 1 75 102q125 171 150 204t34 39q28 19 65 2q48 -23 123 -133.5t81 -167.5v-3z" />
<glyph unicode="&#xf1ea;" horiz-adv-x="2048" d="M1024 1024h-384v-384h384v384zM1152 384v-128h-640v128h640zM1152 1152v-640h-640v640h640zM1792 384v-128h-512v128h512zM1792 640v-128h-512v128h512zM1792 896v-128h-512v128h512zM1792 1152v-128h-512v128h512zM256 192v960h-128v-960q0 -26 19 -45t45 -19t45 19 t19 45zM1920 192v1088h-1536v-1088q0 -33 -11 -64h1483q26 0 45 19t19 45zM2048 1408v-1216q0 -80 -56 -136t-136 -56h-1664q-80 0 -136 56t-56 136v1088h256v128h1792z" />
<glyph unicode="&#xf1eb;" horiz-adv-x="2048" d="M1024 13q-20 0 -93 73.5t-73 93.5q0 32 62.5 54t103.5 22t103.5 -22t62.5 -54q0 -20 -73 -93.5t-93 -73.5zM1294 284q-2 0 -40 25t-101.5 50t-128.5 25t-128.5 -25t-101 -50t-40.5 -25q-18 0 -93.5 75t-75.5 93q0 13 10 23q78 77 196 121t233 44t233 -44t196 -121 q10 -10 10 -23q0 -18 -75.5 -93t-93.5 -75zM1567 556q-11 0 -23 8q-136 105 -252 154.5t-268 49.5q-85 0 -170.5 -22t-149 -53t-113.5 -62t-79 -53t-31 -22q-17 0 -92 75t-75 93q0 12 10 22q132 132 320 205t380 73t380 -73t320 -205q10 -10 10 -22q0 -18 -75 -93t-92 -75z M1838 827q-11 0 -22 9q-179 157 -371.5 236.5t-420.5 79.5t-420.5 -79.5t-371.5 -236.5q-11 -9 -22 -9q-17 0 -92.5 75t-75.5 93q0 13 10 23q187 186 445 288t527 102t527 -102t445 -288q10 -10 10 -23q0 -18 -75.5 -93t-92.5 -75z" />
<glyph unicode="&#xf1ec;" horiz-adv-x="1792" d="M384 0q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM768 0q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM384 384q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5 t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1152 0q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM768 384q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5 t37.5 90.5zM384 768q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1152 384q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM768 768q0 53 -37.5 90.5t-90.5 37.5 t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1536 0v384q0 52 -38 90t-90 38t-90 -38t-38 -90v-384q0 -52 38 -90t90 -38t90 38t38 90zM1152 768q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5z M1536 1088v256q0 26 -19 45t-45 19h-1280q-26 0 -45 -19t-19 -45v-256q0 -26 19 -45t45 -19h1280q26 0 45 19t19 45zM1536 768q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1664 1408v-1536q0 -52 -38 -90t-90 -38 h-1408q-52 0 -90 38t-38 90v1536q0 52 38 90t90 38h1408q52 0 90 -38t38 -90z" />
<glyph unicode="&#xf1ed;" d="M1519 890q18 -84 -4 -204q-87 -444 -565 -444h-44q-25 0 -44 -16.5t-24 -42.5l-4 -19l-55 -346l-2 -15q-5 -26 -24.5 -42.5t-44.5 -16.5h-251q-21 0 -33 15t-9 36q9 56 26.5 168t26.5 168t27 167.5t27 167.5q5 37 43 37h131q133 -2 236 21q175 39 287 144q102 95 155 246 q24 70 35 133q1 6 2.5 7.5t3.5 1t6 -3.5q79 -59 98 -162zM1347 1172q0 -107 -46 -236q-80 -233 -302 -315q-113 -40 -252 -42q0 -1 -90 -1l-90 1q-100 0 -118 -96q-2 -8 -85 -530q-1 -10 -12 -10h-295q-22 0 -36.5 16.5t-11.5 38.5l232 1471q5 29 27.5 48t51.5 19h598 q34 0 97.5 -13t111.5 -32q107 -41 163.5 -123t56.5 -196z" />
<glyph unicode="&#xf1ee;" horiz-adv-x="1792" d="M602 949q19 -61 31 -123.5t17 -141.5t-14 -159t-62 -145q-21 81 -67 157t-95.5 127t-99 90.5t-78.5 57.5t-33 19q-62 34 -81.5 100t14.5 128t101 81.5t129 -14.5q138 -83 238 -177zM927 1236q11 -25 20.5 -46t36.5 -100.5t42.5 -150.5t25.5 -179.5t0 -205.5t-47.5 -209.5 t-105.5 -208.5q-51 -72 -138 -72q-54 0 -98 31q-57 40 -69 109t28 127q60 85 81 195t13 199.5t-32 180.5t-39 128t-22 52q-31 63 -8.5 129.5t85.5 97.5q34 17 75 17q47 0 88.5 -25t63.5 -69zM1248 567q-17 -160 -72 -311q-17 131 -63 246q25 174 -5 361q-27 178 -94 342 q114 -90 212 -211q9 -37 15 -80q26 -179 7 -347zM1520 1440q9 -17 23.5 -49.5t43.5 -117.5t50.5 -178t34 -227.5t5 -269t-47 -300t-112.5 -323.5q-22 -48 -66 -75.5t-95 -27.5q-39 0 -74 16q-67 31 -92.5 100t4.5 136q58 126 90 257.5t37.5 239.5t-3.5 213.5t-26.5 180.5 t-38.5 138.5t-32.5 90t-15.5 32.5q-34 65 -11.5 135.5t87.5 104.5q37 20 81 20q49 0 91.5 -25.5t66.5 -70.5z" />
<glyph unicode="&#xf1f0;" horiz-adv-x="2304" d="M1975 546h-138q14 37 66 179l3 9q4 10 10 26t9 26l12 -55zM531 611l-58 295q-11 54 -75 54h-268l-2 -13q311 -79 403 -336zM710 960l-162 -438l-17 89q-26 70 -85 129.5t-131 88.5l135 -510h175l261 641h-176zM849 318h166l104 642h-166zM1617 944q-69 27 -149 27 q-123 0 -201 -59t-79 -153q-1 -102 145 -174q48 -23 67 -41t19 -39q0 -30 -30 -46t-69 -16q-86 0 -156 33l-22 11l-23 -144q74 -34 185 -34q130 -1 208.5 59t80.5 160q0 106 -140 174q-49 25 -71 42t-22 38q0 22 24.5 38.5t70.5 16.5q70 1 124 -24l15 -8zM2042 960h-128 q-65 0 -87 -54l-246 -588h174l35 96h212q5 -22 20 -96h154zM2304 1280v-1280q0 -52 -38 -90t-90 -38h-2048q-52 0 -90 38t-38 90v1280q0 52 38 90t90 38h2048q52 0 90 -38t38 -90z" />
<glyph unicode="&#xf1f1;" horiz-adv-x="2304" d="M671 603h-13q-47 0 -47 -32q0 -22 20 -22q17 0 28 15t12 39zM1066 639h62v3q1 4 0.5 6.5t-1 7t-2 8t-4.5 6.5t-7.5 5t-11.5 2q-28 0 -36 -38zM1606 603h-12q-48 0 -48 -32q0 -22 20 -22q17 0 28 15t12 39zM1925 629q0 41 -30 41q-19 0 -31 -20t-12 -51q0 -42 28 -42 q20 0 32.5 20t12.5 52zM480 770h87l-44 -262h-56l32 201l-71 -201h-39l-4 200l-34 -200h-53l44 262h81l2 -163zM733 663q0 -6 -4 -42q-16 -101 -17 -113h-47l1 22q-20 -26 -58 -26q-23 0 -37.5 16t-14.5 42q0 39 26 60.5t73 21.5q14 0 23 -1q0 3 0.5 5.5t1 4.5t0.5 3 q0 20 -36 20q-29 0 -59 -10q0 4 7 48q38 11 67 11q74 0 74 -62zM889 721l-8 -49q-22 3 -41 3q-27 0 -27 -17q0 -8 4.5 -12t21.5 -11q40 -19 40 -60q0 -72 -87 -71q-34 0 -58 6q0 2 7 49q29 -8 51 -8q32 0 32 19q0 7 -4.5 11.5t-21.5 12.5q-43 20 -43 59q0 72 84 72 q30 0 50 -4zM977 721h28l-7 -52h-29q-2 -17 -6.5 -40.5t-7 -38.5t-2.5 -18q0 -16 19 -16q8 0 16 2l-8 -47q-21 -7 -40 -7q-43 0 -45 47q0 12 8 56q3 20 25 146h55zM1180 648q0 -23 -7 -52h-111q-3 -22 10 -33t38 -11q30 0 58 14l-9 -54q-30 -8 -57 -8q-95 0 -95 95 q0 55 27.5 90.5t69.5 35.5q35 0 55.5 -21t20.5 -56zM1319 722q-13 -23 -22 -62q-22 2 -31 -24t-25 -128h-56l3 14q22 130 29 199h51l-3 -33q14 21 25.5 29.5t28.5 4.5zM1506 763l-9 -57q-28 14 -50 14q-31 0 -51 -27.5t-20 -70.5q0 -30 13.5 -47t38.5 -17q21 0 48 13 l-10 -59q-28 -8 -50 -8q-45 0 -71.5 30.5t-26.5 82.5q0 70 35.5 114.5t91.5 44.5q26 0 61 -13zM1668 663q0 -18 -4 -42q-13 -79 -17 -113h-46l1 22q-20 -26 -59 -26q-23 0 -37 16t-14 42q0 39 25.5 60.5t72.5 21.5q15 0 23 -1q2 7 2 13q0 20 -36 20q-29 0 -59 -10q0 4 8 48 q38 11 67 11q73 0 73 -62zM1809 722q-14 -24 -21 -62q-23 2 -31.5 -23t-25.5 -129h-56l3 14q19 104 29 199h52q0 -11 -4 -33q15 21 26.5 29.5t27.5 4.5zM1950 770h56l-43 -262h-53l3 19q-23 -23 -52 -23q-31 0 -49.5 24t-18.5 64q0 53 27.5 92t64.5 39q31 0 53 -29z M2061 640q0 148 -72.5 273t-198 198t-273.5 73q-181 0 -328 -110q127 -116 171 -284h-50q-44 150 -158 253q-114 -103 -158 -253h-50q44 168 171 284q-147 110 -328 110q-148 0 -273.5 -73t-198 -198t-72.5 -273t72.5 -273t198 -198t273.5 -73q181 0 328 110 q-120 111 -165 264h50q46 -138 152 -233q106 95 152 233h50q-45 -153 -165 -264q147 -110 328 -110q148 0 273.5 73t198 198t72.5 273zM2304 1280v-1280q0 -52 -38 -90t-90 -38h-2048q-52 0 -90 38t-38 90v1280q0 52 38 90t90 38h2048q52 0 90 -38t38 -90z" />
<glyph unicode="&#xf1f2;" horiz-adv-x="2304" d="M313 759q0 -51 -36 -84q-29 -26 -89 -26h-17v220h17q61 0 89 -27q36 -31 36 -83zM2089 824q0 -52 -64 -52h-19v101h20q63 0 63 -49zM380 759q0 74 -50 120.5t-129 46.5h-95v-333h95q74 0 119 38q60 51 60 128zM410 593h65v333h-65v-333zM730 694q0 40 -20.5 62t-75.5 42 q-29 10 -39.5 19t-10.5 23q0 16 13.5 26.5t34.5 10.5q29 0 53 -27l34 44q-41 37 -98 37q-44 0 -74 -27.5t-30 -67.5q0 -35 18 -55.5t64 -36.5q37 -13 45 -19q19 -12 19 -34q0 -20 -14 -33.5t-36 -13.5q-48 0 -71 44l-42 -40q44 -64 115 -64q51 0 83 30.5t32 79.5zM1008 604 v77q-37 -37 -78 -37q-49 0 -80.5 32.5t-31.5 82.5q0 48 31.5 81.5t77.5 33.5q43 0 81 -38v77q-40 20 -80 20q-74 0 -125.5 -50.5t-51.5 -123.5t51 -123.5t125 -50.5q42 0 81 19zM2240 0v527q-65 -40 -144.5 -84t-237.5 -117t-329.5 -137.5t-417.5 -134.5t-504 -118h1569 q26 0 45 19t19 45zM1389 757q0 75 -53 128t-128 53t-128 -53t-53 -128t53 -128t128 -53t128 53t53 128zM1541 584l144 342h-71l-90 -224l-89 224h-71l142 -342h35zM1714 593h184v56h-119v90h115v56h-115v74h119v57h-184v-333zM2105 593h80l-105 140q76 16 76 94q0 47 -31 73 t-87 26h-97v-333h65v133h9zM2304 1274v-1268q0 -56 -38.5 -95t-93.5 -39h-2040q-55 0 -93.5 39t-38.5 95v1268q0 56 38.5 95t93.5 39h2040q55 0 93.5 -39t38.5 -95z" />
<glyph unicode="&#xf1f3;" horiz-adv-x="2304" d="M119 854h89l-45 108zM740 328l74 79l-70 79h-163v-49h142v-55h-142v-54h159zM898 406l99 -110v217zM1186 453q0 33 -40 33h-84v-69h83q41 0 41 36zM1475 457q0 29 -42 29h-82v-61h81q43 0 43 32zM1197 923q0 29 -42 29h-82v-60h81q43 0 43 31zM1656 854h89l-44 108z M699 1009v-271h-66v212l-94 -212h-57l-94 212v-212h-132l-25 60h-135l-25 -60h-70l116 271h96l110 -257v257h106l85 -184l77 184h108zM1255 453q0 -20 -5.5 -35t-14 -25t-22.5 -16.5t-26 -10t-31.5 -4.5t-31.5 -1t-32.5 0.5t-29.5 0.5v-91h-126l-80 90l-83 -90h-256v271h260 l80 -89l82 89h207q109 0 109 -89zM964 794v-56h-217v271h217v-57h-152v-49h148v-55h-148v-54h152zM2304 235v-229q0 -55 -38.5 -94.5t-93.5 -39.5h-2040q-55 0 -93.5 39.5t-38.5 94.5v678h111l25 61h55l25 -61h218v46l19 -46h113l20 47v-47h541v99l10 1q10 0 10 -14v-86h279 v23q23 -12 55 -18t52.5 -6.5t63 0.5t51.5 1l25 61h56l25 -61h227v58l34 -58h182v378h-180v-44l-25 44h-185v-44l-23 44h-249q-69 0 -109 -22v22h-172v-22q-24 22 -73 22h-628l-43 -97l-43 97h-198v-44l-22 44h-169l-78 -179v391q0 55 38.5 94.5t93.5 39.5h2040 q55 0 93.5 -39.5t38.5 -94.5v-678h-120q-51 0 -81 -22v22h-177q-55 0 -78 -22v22h-316v-22q-31 22 -87 22h-209v-22q-23 22 -91 22h-234l-54 -58l-50 58h-349v-378h343l55 59l52 -59h211v89h21q59 0 90 13v-102h174v99h8q8 0 10 -2t2 -10v-87h529q57 0 88 24v-24h168 q60 0 95 17zM1546 469q0 -23 -12 -43t-34 -29q25 -9 34 -26t9 -46v-54h-65v45q0 33 -12 43.5t-46 10.5h-69v-99h-65v271h154q48 0 77 -15t29 -58zM1269 936q0 -24 -12.5 -44t-33.5 -29q26 -9 34.5 -25.5t8.5 -46.5v-53h-65q0 9 0.5 26.5t0 25t-3 18.5t-8.5 16t-17.5 8.5 t-29.5 3.5h-70v-98h-64v271l153 -1q49 0 78 -14.5t29 -57.5zM1798 327v-56h-216v271h216v-56h-151v-49h148v-55h-148v-54zM1372 1009v-271h-66v271h66zM2065 357q0 -86 -102 -86h-126v58h126q34 0 34 25q0 16 -17 21t-41.5 5t-49.5 3.5t-42 22.5t-17 55q0 39 26 60t66 21 h130v-57h-119q-36 0 -36 -25q0 -16 17.5 -20.5t42 -4t49 -2.5t42 -21.5t17.5 -54.5zM2304 407v-101q-24 -35 -88 -35h-125v58h125q33 0 33 25q0 13 -12.5 19t-31 5.5t-40 2t-40 8t-31 24t-12.5 48.5q0 39 26.5 60t66.5 21h129v-57h-118q-36 0 -36 -25q0 -20 29 -22t68.5 -5 t56.5 -26zM2139 1008v-270h-92l-122 203v-203h-132l-26 60h-134l-25 -60h-75q-129 0 -129 133q0 138 133 138h63v-59q-7 0 -28 1t-28.5 0.5t-23 -2t-21.5 -6.5t-14.5 -13.5t-11.5 -23t-3 -33.5q0 -38 13.5 -58t49.5 -20h29l92 213h97l109 -256v256h99l114 -188v188h66z" />
<glyph unicode="&#xf1f4;" horiz-adv-x="2304" d="M745 630q0 -37 -25.5 -61.5t-62.5 -24.5q-29 0 -46.5 16t-17.5 44q0 37 25 62.5t62 25.5q28 0 46.5 -16.5t18.5 -45.5zM1530 779q0 -42 -22 -57t-66 -15l-32 -1l17 107q2 11 13 11h18q22 0 35 -2t25 -12.5t12 -30.5zM1881 630q0 -36 -25.5 -61t-61.5 -25q-29 0 -47 16 t-18 44q0 37 25 62.5t62 25.5q28 0 46.5 -16.5t18.5 -45.5zM513 801q0 59 -38.5 85.5t-100.5 26.5h-160q-19 0 -21 -19l-65 -408q-1 -6 3 -11t10 -5h76q20 0 22 19l18 110q1 8 7 13t15 6.5t17 1.5t19 -1t14 -1q86 0 135 48.5t49 134.5zM822 489l41 261q1 6 -3 11t-10 5h-76 q-14 0 -17 -33q-27 40 -95 40q-72 0 -122.5 -54t-50.5 -127q0 -59 34.5 -94t92.5 -35q28 0 58 12t48 32q-4 -12 -4 -21q0 -16 13 -16h69q19 0 22 19zM1269 752q0 5 -4 9.5t-9 4.5h-77q-11 0 -18 -10l-106 -156l-44 150q-5 16 -22 16h-75q-5 0 -9 -4.5t-4 -9.5q0 -2 19.5 -59 t42 -123t23.5 -70q-82 -112 -82 -120q0 -13 13 -13h77q11 0 18 10l255 368q2 2 2 7zM1649 801q0 59 -38.5 85.5t-100.5 26.5h-159q-20 0 -22 -19l-65 -408q-1 -6 3 -11t10 -5h82q12 0 16 13l18 116q1 8 7 13t15 6.5t17 1.5t19 -1t14 -1q86 0 135 48.5t49 134.5zM1958 489 l41 261q1 6 -3 11t-10 5h-76q-14 0 -17 -33q-26 40 -95 40q-72 0 -122.5 -54t-50.5 -127q0 -59 34.5 -94t92.5 -35q29 0 59 12t47 32q0 -1 -2 -9t-2 -12q0 -16 13 -16h69q19 0 22 19zM2176 898v1q0 14 -13 14h-74q-11 0 -13 -11l-65 -416l-1 -2q0 -5 4 -9.5t10 -4.5h66 q19 0 21 19zM392 764q-5 -35 -26 -46t-60 -11l-33 -1l17 107q2 11 13 11h19q40 0 58 -11.5t12 -48.5zM2304 1280v-1280q0 -52 -38 -90t-90 -38h-2048q-52 0 -90 38t-38 90v1280q0 52 38 90t90 38h2048q52 0 90 -38t38 -90z" />
<glyph unicode="&#xf1f5;" horiz-adv-x="2304" d="M1597 633q0 -69 -21 -106q-19 -35 -52 -35q-23 0 -41 9v224q29 30 57 30q57 0 57 -122zM2035 669h-110q6 98 56 98q51 0 54 -98zM476 534q0 59 -33 91.5t-101 57.5q-36 13 -52 24t-16 25q0 26 38 26q58 0 124 -33l18 112q-67 32 -149 32q-77 0 -123 -38q-48 -39 -48 -109 q0 -58 32.5 -90.5t99.5 -56.5q39 -14 54.5 -25.5t15.5 -27.5q0 -31 -48 -31q-29 0 -70 12.5t-72 30.5l-18 -113q72 -41 168 -41q81 0 129 37q51 41 51 117zM771 749l19 111h-96v135l-129 -21l-18 -114l-46 -8l-17 -103h62v-219q0 -84 44 -120q38 -30 111 -30q32 0 79 11v118 q-32 -7 -44 -7q-42 0 -42 50v197h77zM1087 724v139q-15 3 -28 3q-32 0 -55.5 -16t-33.5 -46l-10 56h-131v-471h150v306q26 31 82 31q16 0 26 -2zM1124 389h150v471h-150v-471zM1746 638q0 122 -45 179q-40 52 -111 52q-64 0 -117 -56l-8 47h-132v-645l150 25v151 q36 -11 68 -11q83 0 134 56q61 65 61 202zM1278 986q0 33 -23 56t-56 23t-56 -23t-23 -56t23 -56.5t56 -23.5t56 23.5t23 56.5zM2176 629q0 113 -48 176q-50 64 -144 64q-96 0 -151.5 -66t-55.5 -180q0 -128 63 -188q55 -55 161 -55q101 0 160 40l-16 103q-57 -31 -128 -31 q-43 0 -63 19q-23 19 -28 66h248q2 14 2 52zM2304 1280v-1280q0 -52 -38 -90t-90 -38h-2048q-52 0 -90 38t-38 90v1280q0 52 38 90t90 38h2048q52 0 90 -38t38 -90z" />
<glyph unicode="&#xf1f6;" horiz-adv-x="2048" d="M1558 684q61 -356 298 -556q0 -52 -38 -90t-90 -38h-448q0 -106 -75 -181t-181 -75t-180.5 74.5t-75.5 180.5zM1024 -176q16 0 16 16t-16 16q-59 0 -101.5 42.5t-42.5 101.5q0 16 -16 16t-16 -16q0 -73 51.5 -124.5t124.5 -51.5zM2026 1424q8 -10 7.5 -23.5t-10.5 -22.5 l-1872 -1622q-10 -8 -23.5 -7t-21.5 11l-84 96q-8 10 -7.5 23.5t10.5 21.5l186 161q-19 32 -19 66q50 42 91 88t85 119.5t74.5 158.5t50 206t19.5 260q0 152 117 282.5t307 158.5q-8 19 -8 39q0 40 28 68t68 28t68 -28t28 -68q0 -20 -8 -39q124 -18 219 -82.5t148 -157.5 l418 363q10 8 23.5 7t21.5 -11z" />
<glyph unicode="&#xf1f7;" horiz-adv-x="2048" d="M1040 -160q0 16 -16 16q-59 0 -101.5 42.5t-42.5 101.5q0 16 -16 16t-16 -16q0 -73 51.5 -124.5t124.5 -51.5q16 0 16 16zM503 315l877 760q-42 88 -132.5 146.5t-223.5 58.5q-93 0 -169.5 -31.5t-121.5 -80.5t-69 -103t-24 -105q0 -384 -137 -645zM1856 128 q0 -52 -38 -90t-90 -38h-448q0 -106 -75 -181t-181 -75t-180.5 74.5t-75.5 180.5l149 129h757q-166 187 -227 459l111 97q61 -356 298 -556zM1942 1520l84 -96q8 -10 7.5 -23.5t-10.5 -22.5l-1872 -1622q-10 -8 -23.5 -7t-21.5 11l-84 96q-8 10 -7.5 23.5t10.5 21.5l186 161 q-19 32 -19 66q50 42 91 88t85 119.5t74.5 158.5t50 206t19.5 260q0 152 117 282.5t307 158.5q-8 19 -8 39q0 40 28 68t68 28t68 -28t28 -68q0 -20 -8 -39q124 -18 219 -82.5t148 -157.5l418 363q10 8 23.5 7t21.5 -11z" />
<glyph unicode="&#xf1f8;" horiz-adv-x="1408" d="M512 160v704q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-704q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM768 160v704q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-704q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM1024 160v704q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-704 q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM480 1152h448l-48 117q-7 9 -17 11h-317q-10 -2 -17 -11zM1408 1120v-64q0 -14 -9 -23t-23 -9h-96v-948q0 -83 -47 -143.5t-113 -60.5h-832q-66 0 -113 58.5t-47 141.5v952h-96q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h309l70 167 q15 37 54 63t79 26h320q40 0 79 -26t54 -63l70 -167h309q14 0 23 -9t9 -23z" />
<glyph unicode="&#xf1f9;" d="M1150 462v-109q0 -50 -36.5 -89t-94 -60.5t-118 -32.5t-117.5 -11q-205 0 -342.5 139t-137.5 346q0 203 136 339t339 136q34 0 75.5 -4.5t93 -18t92.5 -34t69 -56.5t28 -81v-109q0 -16 -16 -16h-118q-16 0 -16 16v70q0 43 -65.5 67.5t-137.5 24.5q-140 0 -228.5 -91.5 t-88.5 -237.5q0 -151 91.5 -249.5t233.5 -98.5q68 0 138 24t70 66v70q0 7 4.5 11.5t10.5 4.5h119q6 0 11 -4.5t5 -11.5zM768 1280q-130 0 -248.5 -51t-204 -136.5t-136.5 -204t-51 -248.5t51 -248.5t136.5 -204t204 -136.5t248.5 -51t248.5 51t204 136.5t136.5 204t51 248.5 t-51 248.5t-136.5 204t-204 136.5t-248.5 51zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
<glyph unicode="&#xf1fa;" d="M972 761q0 108 -53.5 169t-147.5 61q-63 0 -124 -30.5t-110 -84.5t-79.5 -137t-30.5 -180q0 -112 53.5 -173t150.5 -61q96 0 176 66.5t122.5 166t42.5 203.5zM1536 640q0 -111 -37 -197t-98.5 -135t-131.5 -74.5t-145 -27.5q-6 0 -15.5 -0.5t-16.5 -0.5q-95 0 -142 53 q-28 33 -33 83q-52 -66 -131.5 -110t-173.5 -44q-161 0 -249.5 95.5t-88.5 269.5q0 157 66 290t179 210.5t246 77.5q87 0 155 -35.5t106 -99.5l2 19l11 56q1 6 5.5 12t9.5 6h118q5 0 13 -11q5 -5 3 -16l-120 -614q-5 -24 -5 -48q0 -39 12.5 -52t44.5 -13q28 1 57 5.5t73 24 t77 50t57 89.5t24 137q0 292 -174 466t-466 174q-130 0 -248.5 -51t-204 -136.5t-136.5 -204t-51 -248.5t51 -248.5t136.5 -204t204 -136.5t248.5 -51q228 0 405 144q11 9 24 8t21 -12l41 -49q8 -12 7 -24q-2 -13 -12 -22q-102 -83 -227.5 -128t-258.5 -45q-156 0 -298 61 t-245 164t-164 245t-61 298t61 298t164 245t245 164t298 61q344 0 556 -212t212 -556z" />
<glyph unicode="&#xf1fb;" horiz-adv-x="1792" d="M1698 1442q94 -94 94 -226.5t-94 -225.5l-225 -223l104 -104q10 -10 10 -23t-10 -23l-210 -210q-10 -10 -23 -10t-23 10l-105 105l-603 -603q-37 -37 -90 -37h-203l-256 -128l-64 64l128 256v203q0 53 37 90l603 603l-105 105q-10 10 -10 23t10 23l210 210q10 10 23 10 t23 -10l104 -104l223 225q93 94 225.5 94t226.5 -94zM512 64l576 576l-192 192l-576 -576v-192h192z" />
<glyph unicode="&#xf1fc;" horiz-adv-x="1792" d="M1615 1536q70 0 122.5 -46.5t52.5 -116.5q0 -63 -45 -151q-332 -629 -465 -752q-97 -91 -218 -91q-126 0 -216.5 92.5t-90.5 219.5q0 128 92 212l638 579q59 54 130 54zM706 502q39 -76 106.5 -130t150.5 -76l1 -71q4 -213 -129.5 -347t-348.5 -134q-123 0 -218 46.5 t-152.5 127.5t-86.5 183t-29 220q7 -5 41 -30t62 -44.5t59 -36.5t46 -17q41 0 55 37q25 66 57.5 112.5t69.5 76t88 47.5t103 25.5t125 10.5z" />
<glyph unicode="&#xf1fd;" horiz-adv-x="1792" d="M1792 128v-384h-1792v384q45 0 85 14t59 27.5t47 37.5q30 27 51.5 38t56.5 11t55.5 -11t52.5 -38q29 -25 47 -38t58 -27t86 -14q45 0 85 14.5t58 27t48 37.5q21 19 32.5 27t31 15t43.5 7q35 0 56.5 -11t51.5 -38q28 -24 47 -37.5t59 -27.5t85 -14t85 14t59 27.5t47 37.5 q30 27 51.5 38t56.5 11q34 0 55.5 -11t51.5 -38q28 -24 47 -37.5t59 -27.5t85 -14zM1792 448v-192q-35 0 -55.5 11t-52.5 38q-29 25 -47 38t-58 27t-85 14q-46 0 -86 -14t-58 -27t-47 -38q-22 -19 -33 -27t-31 -15t-44 -7q-35 0 -56.5 11t-51.5 38q-29 25 -47 38t-58 27 t-86 14q-45 0 -85 -14.5t-58 -27t-48 -37.5q-21 -19 -32.5 -27t-31 -15t-43.5 -7q-35 0 -56.5 11t-51.5 38q-28 24 -47 37.5t-59 27.5t-85 14q-46 0 -86 -14t-58 -27t-47 -38q-30 -27 -51.5 -38t-56.5 -11v192q0 80 56 136t136 56h64v448h256v-448h256v448h256v-448h256v448 h256v-448h64q80 0 136 -56t56 -136zM512 1312q0 -77 -36 -118.5t-92 -41.5q-53 0 -90.5 37.5t-37.5 90.5q0 29 9.5 51t23.5 34t31 28t31 31.5t23.5 44.5t9.5 67q38 0 83 -74t45 -150zM1024 1312q0 -77 -36 -118.5t-92 -41.5q-53 0 -90.5 37.5t-37.5 90.5q0 29 9.5 51 t23.5 34t31 28t31 31.5t23.5 44.5t9.5 67q38 0 83 -74t45 -150zM1536 1312q0 -77 -36 -118.5t-92 -41.5q-53 0 -90.5 37.5t-37.5 90.5q0 29 9.5 51t23.5 34t31 28t31 31.5t23.5 44.5t9.5 67q38 0 83 -74t45 -150z" />
<glyph unicode="&#xf1fe;" horiz-adv-x="2048" d="M2048 0v-128h-2048v1536h128v-1408h1920zM1664 1024l256 -896h-1664v576l448 576l576 -576z" />
<glyph unicode="&#xf200;" horiz-adv-x="1792" d="M768 646l546 -546q-106 -108 -247.5 -168t-298.5 -60q-209 0 -385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103v-762zM955 640h773q0 -157 -60 -298.5t-168 -247.5zM1664 768h-768v768q209 0 385.5 -103t279.5 -279.5t103 -385.5z" />
<glyph unicode="&#xf201;" horiz-adv-x="2048" d="M2048 0v-128h-2048v1536h128v-1408h1920zM1920 1248v-435q0 -21 -19.5 -29.5t-35.5 7.5l-121 121l-633 -633q-10 -10 -23 -10t-23 10l-233 233l-416 -416l-192 192l585 585q10 10 23 10t23 -10l233 -233l464 464l-121 121q-16 16 -7.5 35.5t29.5 19.5h435q14 0 23 -9 t9 -23z" />
<glyph unicode="&#xf202;" horiz-adv-x="1792" d="M1292 832q0 -6 10 -41q10 -29 25 -49.5t41 -34t44 -20t55 -16.5q325 -91 325 -332q0 -146 -105.5 -242.5t-254.5 -96.5q-59 0 -111.5 18.5t-91.5 45.5t-77 74.5t-63 87.5t-53.5 103.5t-43.5 103t-39.5 106.5t-35.5 95q-32 81 -61.5 133.5t-73.5 96.5t-104 64t-142 20 q-96 0 -183 -55.5t-138 -144.5t-51 -185q0 -160 106.5 -279.5t263.5 -119.5q177 0 258 95q56 63 83 116l84 -152q-15 -34 -44 -70l1 -1q-131 -152 -388 -152q-147 0 -269.5 79t-190.5 207.5t-68 274.5q0 105 43.5 206t116 176.5t172 121.5t204.5 46q87 0 159 -19t123.5 -50 t95 -80t72.5 -99t58.5 -117t50.5 -124.5t50 -130.5t55 -127q96 -200 233 -200q81 0 138.5 48.5t57.5 128.5q0 42 -19 72t-50.5 46t-72.5 31.5t-84.5 27t-87.5 34t-81 52t-65 82t-39 122.5q-3 16 -3 33q0 110 87.5 192t198.5 78q78 -3 120.5 -14.5t90.5 -53.5h-1 q12 -11 23 -24.5t26 -36t19 -27.5l-129 -99q-26 49 -54 70v1q-23 21 -97 21q-49 0 -84 -33t-35 -83z" />
<glyph unicode="&#xf203;" d="M1432 484q0 173 -234 239q-35 10 -53 16.5t-38 25t-29 46.5q0 2 -2 8.5t-3 12t-1 7.5q0 36 24.5 59.5t60.5 23.5q54 0 71 -15h-1q20 -15 39 -51l93 71q-39 54 -49 64q-33 29 -67.5 39t-85.5 10q-80 0 -142 -57.5t-62 -137.5q0 -7 2 -23q16 -96 64.5 -140t148.5 -73 q29 -8 49 -15.5t45 -21.5t38.5 -34.5t13.5 -46.5v-5q1 -58 -40.5 -93t-100.5 -35q-97 0 -167 144q-23 47 -51.5 121.5t-48 125.5t-54 110.5t-74 95.5t-103.5 60.5t-147 24.5q-101 0 -192 -56t-144 -148t-50 -192v-1q4 -108 50.5 -199t133.5 -147.5t196 -56.5q186 0 279 110 q20 27 31 51l-60 109q-42 -80 -99 -116t-146 -36q-115 0 -191 87t-76 204q0 105 82 189t186 84q112 0 170 -53.5t104 -172.5q8 -21 25.5 -68.5t28.5 -76.5t31.5 -74.5t38.5 -74t45.5 -62.5t55.5 -53.5t66 -33t80 -13.5q107 0 183 69.5t76 174.5zM1536 1120v-960 q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
<glyph unicode="&#xf204;" horiz-adv-x="2048" d="M1152 640q0 104 -40.5 198.5t-109.5 163.5t-163.5 109.5t-198.5 40.5t-198.5 -40.5t-163.5 -109.5t-109.5 -163.5t-40.5 -198.5t40.5 -198.5t109.5 -163.5t163.5 -109.5t198.5 -40.5t198.5 40.5t163.5 109.5t109.5 163.5t40.5 198.5zM1920 640q0 104 -40.5 198.5 t-109.5 163.5t-163.5 109.5t-198.5 40.5h-386q119 -90 188.5 -224t69.5 -288t-69.5 -288t-188.5 -224h386q104 0 198.5 40.5t163.5 109.5t109.5 163.5t40.5 198.5zM2048 640q0 -130 -51 -248.5t-136.5 -204t-204 -136.5t-248.5 -51h-768q-130 0 -248.5 51t-204 136.5 t-136.5 204t-51 248.5t51 248.5t136.5 204t204 136.5t248.5 51h768q130 0 248.5 -51t204 -136.5t136.5 -204t51 -248.5z" />
<glyph unicode="&#xf205;" horiz-adv-x="2048" d="M0 640q0 130 51 248.5t136.5 204t204 136.5t248.5 51h768q130 0 248.5 -51t204 -136.5t136.5 -204t51 -248.5t-51 -248.5t-136.5 -204t-204 -136.5t-248.5 -51h-768q-130 0 -248.5 51t-204 136.5t-136.5 204t-51 248.5zM1408 128q104 0 198.5 40.5t163.5 109.5 t109.5 163.5t40.5 198.5t-40.5 198.5t-109.5 163.5t-163.5 109.5t-198.5 40.5t-198.5 -40.5t-163.5 -109.5t-109.5 -163.5t-40.5 -198.5t40.5 -198.5t109.5 -163.5t163.5 -109.5t198.5 -40.5z" />
<glyph unicode="&#xf206;" horiz-adv-x="2304" d="M762 384h-314q-40 0 -57.5 35t6.5 67l188 251q-65 31 -137 31q-132 0 -226 -94t-94 -226t94 -226t226 -94q115 0 203 72.5t111 183.5zM576 512h186q-18 85 -75 148zM1056 512l288 384h-480l-99 -132q105 -103 126 -252h165zM2176 448q0 132 -94 226t-226 94 q-60 0 -121 -24l174 -260q15 -23 10 -49t-27 -40q-15 -11 -36 -11q-35 0 -53 29l-174 260q-93 -95 -93 -225q0 -132 94 -226t226 -94t226 94t94 226zM2304 448q0 -185 -131.5 -316.5t-316.5 -131.5t-316.5 131.5t-131.5 316.5q0 97 39.5 183.5t109.5 149.5l-65 98l-353 -469 q-18 -26 -51 -26h-197q-23 -164 -149 -274t-294 -110q-185 0 -316.5 131.5t-131.5 316.5t131.5 316.5t316.5 131.5q114 0 215 -55l137 183h-224q-26 0 -45 19t-19 45t19 45t45 19h384v-128h435l-85 128h-222q-26 0 -45 19t-19 45t19 45t45 19h256q33 0 53 -28l267 -400 q91 44 192 44q185 0 316.5 -131.5t131.5 -316.5z" />
<glyph unicode="&#xf207;" d="M384 320q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1408 320q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1362 716l-72 384q-5 23 -22.5 37.5t-40.5 14.5 h-918q-23 0 -40.5 -14.5t-22.5 -37.5l-72 -384q-5 -30 14 -53t49 -23h1062q30 0 49 23t14 53zM1136 1328q0 20 -14 34t-34 14h-640q-20 0 -34 -14t-14 -34t14 -34t34 -14h640q20 0 34 14t14 34zM1536 603v-603h-128v-128q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5 t-37.5 90.5v128h-768v-128q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5v128h-128v603q0 112 25 223l103 454q9 78 97.5 137t230 89t312.5 30t312.5 -30t230 -89t97.5 -137l105 -454q23 -102 23 -223z" />
<glyph unicode="&#xf208;" horiz-adv-x="2048" d="M1463 704q0 -35 -25 -60.5t-61 -25.5h-702q-36 0 -61 25.5t-25 60.5t25 60.5t61 25.5h702q36 0 61 -25.5t25 -60.5zM1677 704q0 86 -23 170h-982q-36 0 -61 25t-25 60q0 36 25 61t61 25h908q-88 143 -235 227t-320 84q-177 0 -327.5 -87.5t-238 -237.5t-87.5 -327 q0 -86 23 -170h982q36 0 61 -25t25 -60q0 -36 -25 -61t-61 -25h-908q88 -143 235.5 -227t320.5 -84q132 0 253 51.5t208 139t139 208t52 253.5zM2048 959q0 -35 -25 -60t-61 -25h-131q17 -85 17 -170q0 -167 -65.5 -319.5t-175.5 -263t-262.5 -176t-319.5 -65.5 q-246 0 -448.5 133t-301.5 350h-189q-36 0 -61 25t-25 61q0 35 25 60t61 25h132q-17 85 -17 170q0 167 65.5 319.5t175.5 263t262.5 176t320.5 65.5q245 0 447.5 -133t301.5 -350h188q36 0 61 -25t25 -61z" />
<glyph unicode="&#xf209;" horiz-adv-x="1280" d="M953 1158l-114 -328l117 -21q165 451 165 518q0 56 -38 56q-57 0 -130 -225zM654 471l33 -88q37 42 71 67l-33 5.5t-38.5 7t-32.5 8.5zM362 1367q0 -98 159 -521q18 10 49 10q15 0 75 -5l-121 351q-75 220 -123 220q-19 0 -29 -17.5t-10 -37.5zM283 608q0 -36 51.5 -119 t117.5 -153t100 -70q14 0 25.5 13t11.5 27q0 24 -32 102q-13 32 -32 72t-47.5 89t-61.5 81t-62 32q-20 0 -45.5 -27t-25.5 -47zM125 273q0 -41 25 -104q59 -145 183.5 -227t281.5 -82q227 0 382 170q152 169 152 427q0 43 -1 67t-11.5 62t-30.5 56q-56 49 -211.5 75.5 t-270.5 26.5q-37 0 -49 -11q-12 -5 -12 -35q0 -34 21.5 -60t55.5 -40t77.5 -23.5t87.5 -11.5t85 -4t70 0h23q24 0 40 -19q15 -19 19 -55q-28 -28 -96 -54q-61 -22 -93 -46q-64 -46 -108.5 -114t-44.5 -137q0 -31 18.5 -88.5t18.5 -87.5l-3 -12q-4 -12 -4 -14 q-137 10 -146 216q-8 -2 -41 -2q2 -7 2 -21q0 -53 -40.5 -89.5t-94.5 -36.5q-82 0 -166.5 78t-84.5 159q0 34 33 67q52 -64 60 -76q77 -104 133 -104q12 0 26.5 8.5t14.5 20.5q0 34 -87.5 145t-116.5 111q-43 0 -70 -44.5t-27 -90.5zM11 264q0 101 42.5 163t136.5 88 q-28 74 -28 104q0 62 61 123t122 61q29 0 70 -15q-163 462 -163 567q0 80 41 130.5t119 50.5q131 0 325 -581q6 -17 8 -23q6 16 29 79.5t43.5 118.5t54 127.5t64.5 123t70.5 86.5t76.5 36q71 0 112 -49t41 -122q0 -108 -159 -550q61 -15 100.5 -46t58.5 -78t26 -93.5 t7 -110.5q0 -150 -47 -280t-132 -225t-211 -150t-278 -55q-111 0 -223 42q-149 57 -258 191.5t-109 286.5z" />
<glyph unicode="&#xf20a;" horiz-adv-x="2048" d="M785 528h207q-14 -158 -98.5 -248.5t-214.5 -90.5q-162 0 -254.5 116t-92.5 316q0 194 93 311.5t233 117.5q148 0 232 -87t97 -247h-203q-5 64 -35.5 99t-81.5 35q-57 0 -88.5 -60.5t-31.5 -177.5q0 -48 5 -84t18 -69.5t40 -51.5t66 -18q95 0 109 139zM1497 528h206 q-14 -158 -98 -248.5t-214 -90.5q-162 0 -254.5 116t-92.5 316q0 194 93 311.5t233 117.5q148 0 232 -87t97 -247h-204q-4 64 -35 99t-81 35q-57 0 -88.5 -60.5t-31.5 -177.5q0 -48 5 -84t18 -69.5t39.5 -51.5t65.5 -18q49 0 76.5 38t33.5 101zM1856 647q0 207 -15.5 307 t-60.5 161q-6 8 -13.5 14t-21.5 15t-16 11q-86 63 -697 63q-625 0 -710 -63q-5 -4 -17.5 -11.5t-21 -14t-14.5 -14.5q-45 -60 -60 -159.5t-15 -308.5q0 -208 15 -307.5t60 -160.5q6 -8 15 -15t20.5 -14t17.5 -12q44 -33 239.5 -49t470.5 -16q610 0 697 65q5 4 17 11t20.5 14 t13.5 16q46 60 61 159t15 309zM2048 1408v-1536h-2048v1536h2048z" />
<glyph unicode="&#xf20b;" d="M992 912v-496q0 -14 -9 -23t-23 -9h-160q-14 0 -23 9t-9 23v496q0 112 -80 192t-192 80h-272v-1152q0 -14 -9 -23t-23 -9h-160q-14 0 -23 9t-9 23v1344q0 14 9 23t23 9h464q135 0 249 -66.5t180.5 -180.5t66.5 -249zM1376 1376v-880q0 -135 -66.5 -249t-180.5 -180.5 t-249 -66.5h-464q-14 0 -23 9t-9 23v960q0 14 9 23t23 9h160q14 0 23 -9t9 -23v-768h272q112 0 192 80t80 192v880q0 14 9 23t23 9h160q14 0 23 -9t9 -23z" />
<glyph unicode="&#xf20c;" d="M1311 694v-114q0 -24 -13.5 -38t-37.5 -14h-202q-24 0 -38 14t-14 38v114q0 24 14 38t38 14h202q24 0 37.5 -14t13.5 -38zM821 464v250q0 53 -32.5 85.5t-85.5 32.5h-133q-68 0 -96 -52q-28 52 -96 52h-130q-53 0 -85.5 -32.5t-32.5 -85.5v-250q0 -22 21 -22h55 q22 0 22 22v230q0 24 13.5 38t38.5 14h94q24 0 38 -14t14 -38v-230q0 -22 21 -22h54q22 0 22 22v230q0 24 14 38t38 14h97q24 0 37.5 -14t13.5 -38v-230q0 -22 22 -22h55q21 0 21 22zM1410 560v154q0 53 -33 85.5t-86 32.5h-264q-53 0 -86 -32.5t-33 -85.5v-410 q0 -21 22 -21h55q21 0 21 21v180q31 -42 94 -42h191q53 0 86 32.5t33 85.5zM1536 1176v-1072q0 -96 -68 -164t-164 -68h-1072q-96 0 -164 68t-68 164v1072q0 96 68 164t164 68h1072q96 0 164 -68t68 -164z" />
<glyph unicode="&#xf20d;" d="M915 450h-294l147 551zM1001 128h311l-324 1024h-440l-324 -1024h311l383 314zM1536 1120v-960q0 -118 -85 -203t-203 -85h-960q-118 0 -203 85t-85 203v960q0 118 85 203t203 85h960q118 0 203 -85t85 -203z" />
<glyph unicode="&#xf20e;" horiz-adv-x="2048" d="M2048 641q0 -21 -13 -36.5t-33 -19.5l-205 -356q3 -9 3 -18q0 -20 -12.5 -35.5t-32.5 -19.5l-193 -337q3 -8 3 -16q0 -23 -16.5 -40t-40.5 -17q-25 0 -41 18h-400q-17 -20 -43 -20t-43 20h-399q-17 -20 -43 -20q-23 0 -40 16.5t-17 40.5q0 8 4 20l-193 335 q-20 4 -32.5 19.5t-12.5 35.5q0 9 3 18l-206 356q-20 5 -32.5 20.5t-12.5 35.5q0 21 13.5 36.5t33.5 19.5l199 344q0 1 -0.5 3t-0.5 3q0 36 34 51l209 363q-4 10 -4 18q0 24 17 40.5t40 16.5q26 0 44 -21h396q16 21 43 21t43 -21h398q18 21 44 21q23 0 40 -16.5t17 -40.5 q0 -6 -4 -18l207 -358q23 -1 39 -17.5t16 -38.5q0 -13 -7 -27l187 -324q19 -4 31.5 -19.5t12.5 -35.5zM1063 -158h389l-342 354h-143l-342 -354h360q18 16 39 16t39 -16zM112 654q1 -4 1 -13q0 -10 -2 -15l208 -360q2 0 4.5 -1t5.5 -2.5l5 -2.5l188 199v347l-187 194 q-13 -8 -29 -10zM986 1438h-388l190 -200l554 200h-280q-16 -16 -38 -16t-38 16zM1689 226q1 6 5 11l-64 68l-17 -79h76zM1583 226l22 105l-252 266l-296 -307l63 -64h463zM1495 -142l16 28l65 310h-427l333 -343q8 4 13 5zM578 -158h5l342 354h-373v-335l4 -6q14 -5 22 -13 zM552 226h402l64 66l-309 321l-157 -166v-221zM359 226h163v189l-168 -177q4 -8 5 -12zM358 1051q0 -1 0.5 -2t0.5 -2q0 -16 -8 -29l171 -177v269zM552 1121v-311l153 -157l297 314l-223 236zM556 1425l-4 -8v-264l205 74l-191 201q-6 -2 -10 -3zM1447 1438h-16l-621 -224 l213 -225zM1023 946l-297 -315l311 -319l296 307zM688 634l-136 141v-284zM1038 270l-42 -44h85zM1374 618l238 -251l132 624l-3 5l-1 1zM1718 1018q-8 13 -8 29v2l-216 376q-5 1 -13 5l-437 -463l310 -327zM522 1142v223l-163 -282zM522 196h-163l163 -283v283zM1607 196 l-48 -227l130 227h-82zM1729 266l207 361q-2 10 -2 14q0 1 3 16l-171 296l-129 -612l77 -82q5 3 15 7z" />
<glyph unicode="&#xf210;" d="M0 856q0 131 91.5 226.5t222.5 95.5h742l352 358v-1470q0 -132 -91.5 -227t-222.5 -95h-780q-131 0 -222.5 95t-91.5 227v790zM1232 102l-176 180v425q0 46 -32 79t-78 33h-484q-46 0 -78 -33t-32 -79v-492q0 -46 32.5 -79.5t77.5 -33.5h770z" />
<glyph unicode="&#xf211;" d="M934 1386q-317 -121 -556 -362.5t-358 -560.5q-20 89 -20 176q0 208 102.5 384.5t278.5 279t384 102.5q82 0 169 -19zM1203 1267q93 -65 164 -155q-389 -113 -674.5 -400.5t-396.5 -676.5q-93 72 -155 162q112 386 395 671t667 399zM470 -67q115 356 379.5 622t619.5 384 q40 -92 54 -195q-292 -120 -516 -345t-343 -518q-103 14 -194 52zM1536 -125q-193 50 -367 115q-135 -84 -290 -107q109 205 274 370.5t369 275.5q-21 -152 -101 -284q65 -175 115 -370z" />
<glyph unicode="&#xf212;" horiz-adv-x="2048" d="M1893 1144l155 -1272q-131 0 -257 57q-200 91 -393 91q-226 0 -374 -148q-148 148 -374 148q-193 0 -393 -91q-128 -57 -252 -57h-5l155 1272q224 127 482 127q233 0 387 -106q154 106 387 106q258 0 482 -127zM1398 157q129 0 232 -28.5t260 -93.5l-124 1021 q-171 78 -368 78q-224 0 -374 -141q-150 141 -374 141q-197 0 -368 -78l-124 -1021q105 43 165.5 65t148.5 39.5t178 17.5q202 0 374 -108q172 108 374 108zM1438 191l-55 907q-211 -4 -359 -155q-152 155 -374 155q-176 0 -336 -66l-114 -941q124 51 228.5 76t221.5 25 q209 0 374 -102q172 107 374 102z" />
<glyph unicode="&#xf213;" horiz-adv-x="2048" d="M1500 165v733q0 21 -15 36t-35 15h-93q-20 0 -35 -15t-15 -36v-733q0 -20 15 -35t35 -15h93q20 0 35 15t15 35zM1216 165v531q0 20 -15 35t-35 15h-101q-20 0 -35 -15t-15 -35v-531q0 -20 15 -35t35 -15h101q20 0 35 15t15 35zM924 165v429q0 20 -15 35t-35 15h-101 q-20 0 -35 -15t-15 -35v-429q0 -20 15 -35t35 -15h101q20 0 35 15t15 35zM632 165v362q0 20 -15 35t-35 15h-101q-20 0 -35 -15t-15 -35v-362q0 -20 15 -35t35 -15h101q20 0 35 15t15 35zM2048 311q0 -166 -118 -284t-284 -118h-1244q-166 0 -284 118t-118 284 q0 116 63 214.5t168 148.5q-10 34 -10 73q0 113 80.5 193.5t193.5 80.5q102 0 180 -67q45 183 194 300t338 117q149 0 275 -73.5t199.5 -199.5t73.5 -275q0 -66 -14 -122q135 -33 221 -142.5t86 -247.5z" />
<glyph unicode="&#xf214;" d="M0 1536h1536v-1392l-776 -338l-760 338v1392zM1436 209v926h-1336v-926l661 -294zM1436 1235v201h-1336v-201h1336zM181 937v-115h-37v115h37zM181 789v-115h-37v115h37zM181 641v-115h-37v115h37zM181 493v-115h-37v115h37zM181 345v-115h-37v115h37zM207 202l15 34 l105 -47l-15 -33zM343 142l15 34l105 -46l-15 -34zM478 82l15 34l105 -46l-15 -34zM614 23l15 33l104 -46l-15 -34zM797 10l105 46l15 -33l-105 -47zM932 70l105 46l15 -34l-105 -46zM1068 130l105 46l15 -34l-105 -46zM1203 189l105 47l15 -34l-105 -46zM259 1389v-36h-114 v36h114zM421 1389v-36h-115v36h115zM583 1389v-36h-115v36h115zM744 1389v-36h-114v36h114zM906 1389v-36h-114v36h114zM1068 1389v-36h-115v36h115zM1230 1389v-36h-115v36h115zM1391 1389v-36h-114v36h114zM181 1049v-79h-37v115h115v-36h-78zM421 1085v-36h-115v36h115z M583 1085v-36h-115v36h115zM744 1085v-36h-114v36h114zM906 1085v-36h-114v36h114zM1068 1085v-36h-115v36h115zM1230 1085v-36h-115v36h115zM1355 970v79h-78v36h115v-115h-37zM1355 822v115h37v-115h-37zM1355 674v115h37v-115h-37zM1355 526v115h37v-115h-37zM1355 378 v115h37v-115h-37zM1355 230v115h37v-115h-37zM760 265q-129 0 -221 91.5t-92 221.5q0 129 92 221t221 92q130 0 221.5 -92t91.5 -221q0 -130 -91.5 -221.5t-221.5 -91.5zM595 646q0 -36 19.5 -56.5t49.5 -25t64 -7t64 -2t49.5 -9t19.5 -30.5q0 -49 -112 -49q-97 0 -123 51 h-3l-31 -63q67 -42 162 -42q29 0 56.5 5t55.5 16t45.5 33t17.5 53q0 46 -27.5 69.5t-67.5 27t-79.5 3t-67 5t-27.5 25.5q0 21 20.5 33t40.5 15t41 3q34 0 70.5 -11t51.5 -34h3l30 58q-3 1 -21 8.5t-22.5 9t-19.5 7t-22 7t-20 4.5t-24 4t-23 1q-29 0 -56.5 -5t-54 -16.5 t-43 -34t-16.5 -53.5z" />
<glyph unicode="&#xf215;" horiz-adv-x="2048" d="M863 504q0 112 -79.5 191.5t-191.5 79.5t-191 -79.5t-79 -191.5t79 -191t191 -79t191.5 79t79.5 191zM1726 505q0 112 -79 191t-191 79t-191.5 -79t-79.5 -191q0 -113 79.5 -192t191.5 -79t191 79.5t79 191.5zM2048 1314v-1348q0 -44 -31.5 -75.5t-76.5 -31.5h-1832 q-45 0 -76.5 31.5t-31.5 75.5v1348q0 44 31.5 75.5t76.5 31.5h431q44 0 76 -31.5t32 -75.5v-161h754v161q0 44 32 75.5t76 31.5h431q45 0 76.5 -31.5t31.5 -75.5z" />
<glyph unicode="&#xf216;" horiz-adv-x="2048" d="M1430 953zM1690 749q148 0 253 -98.5t105 -244.5q0 -157 -109 -261.5t-267 -104.5q-85 0 -162 27.5t-138 73.5t-118 106t-109 126.5t-103.5 132.5t-108.5 126t-117 106t-136 73.5t-159 27.5q-154 0 -251.5 -91.5t-97.5 -244.5q0 -157 104 -250t263 -93q100 0 208 37.5 t193 98.5q5 4 21 18.5t30 24t22 9.5q14 0 24.5 -10.5t10.5 -24.5q0 -24 -60 -77q-101 -88 -234.5 -142t-260.5 -54q-133 0 -245.5 58t-180 165t-67.5 241q0 205 141.5 341t347.5 136q120 0 226.5 -43.5t185.5 -113t151.5 -153t139 -167.5t133.5 -153.5t149.5 -113 t172.5 -43.5q102 0 168.5 61.5t66.5 162.5q0 95 -64.5 159t-159.5 64q-30 0 -81.5 -18.5t-68.5 -18.5q-20 0 -35.5 15t-15.5 35q0 18 8.5 57t8.5 59q0 159 -107.5 263t-266.5 104q-58 0 -111.5 -18.5t-84 -40.5t-55.5 -40.5t-33 -18.5q-15 0 -25.5 10.5t-10.5 25.5 q0 19 25 46q59 67 147 103.5t182 36.5q191 0 318 -125.5t127 -315.5q0 -37 -4 -66q57 15 115 15z" />
<glyph unicode="&#xf217;" horiz-adv-x="1664" d="M1216 832q0 26 -19 45t-45 19h-128v128q0 26 -19 45t-45 19t-45 -19t-19 -45v-128h-128q-26 0 -45 -19t-19 -45t19 -45t45 -19h128v-128q0 -26 19 -45t45 -19t45 19t19 45v128h128q26 0 45 19t19 45zM640 0q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5 t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1536 0q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1664 1088v-512q0 -24 -16 -42.5t-41 -21.5l-1044 -122q1 -7 4.5 -21.5t6 -26.5t2.5 -22q0 -16 -24 -64h920 q26 0 45 -19t19 -45t-19 -45t-45 -19h-1024q-26 0 -45 19t-19 45q0 14 11 39.5t29.5 59.5t20.5 38l-177 823h-204q-26 0 -45 19t-19 45t19 45t45 19h256q16 0 28.5 -6.5t20 -15.5t13 -24.5t7.5 -26.5t5.5 -29.5t4.5 -25.5h1201q26 0 45 -19t19 -45z" />
<glyph unicode="&#xf218;" horiz-adv-x="1664" d="M1280 832q0 26 -19 45t-45 19t-45 -19l-147 -146v293q0 26 -19 45t-45 19t-45 -19t-19 -45v-293l-147 146q-19 19 -45 19t-45 -19t-19 -45t19 -45l256 -256q19 -19 45 -19t45 19l256 256q19 19 19 45zM640 0q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5 t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1536 0q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1664 1088v-512q0 -24 -16 -42.5t-41 -21.5l-1044 -122q1 -7 4.5 -21.5t6 -26.5t2.5 -22q0 -16 -24 -64h920 q26 0 45 -19t19 -45t-19 -45t-45 -19h-1024q-26 0 -45 19t-19 45q0 14 11 39.5t29.5 59.5t20.5 38l-177 823h-204q-26 0 -45 19t-19 45t19 45t45 19h256q16 0 28.5 -6.5t20 -15.5t13 -24.5t7.5 -26.5t5.5 -29.5t4.5 -25.5h1201q26 0 45 -19t19 -45z" />
<glyph unicode="&#xf219;" horiz-adv-x="2048" d="M212 768l623 -665l-300 665h-323zM1024 -4l349 772h-698zM538 896l204 384h-262l-288 -384h346zM1213 103l623 665h-323zM683 896h682l-204 384h-274zM1510 896h346l-288 384h-262zM1651 1382l384 -512q14 -18 13 -41.5t-17 -40.5l-960 -1024q-18 -20 -47 -20t-47 20 l-960 1024q-16 17 -17 40.5t13 41.5l384 512q18 26 51 26h1152q33 0 51 -26z" />
<glyph unicode="&#xf21a;" horiz-adv-x="2048" d="M1811 -19q19 19 45 19t45 -19l128 -128l-90 -90l-83 83l-83 -83q-18 -19 -45 -19t-45 19l-83 83l-83 -83q-19 -19 -45 -19t-45 19l-83 83l-83 -83q-19 -19 -45 -19t-45 19l-83 83l-83 -83q-19 -19 -45 -19t-45 19l-83 83l-83 -83q-19 -19 -45 -19t-45 19l-83 83l-83 -83 q-19 -19 -45 -19t-45 19l-83 83l-83 -83q-19 -19 -45 -19t-45 19l-128 128l90 90l83 -83l83 83q19 19 45 19t45 -19l83 -83l83 83q19 19 45 19t45 -19l83 -83l83 83q19 19 45 19t45 -19l83 -83l83 83q19 19 45 19t45 -19l83 -83l83 83q19 19 45 19t45 -19l83 -83l83 83 q19 19 45 19t45 -19l83 -83zM237 19q-19 -19 -45 -19t-45 19l-128 128l90 90l83 -82l83 82q19 19 45 19t45 -19l83 -82l64 64v293l-210 314q-17 26 -7 56.5t40 40.5l177 58v299h128v128h256v128h256v-128h256v-128h128v-299l177 -58q30 -10 40 -40.5t-7 -56.5l-210 -314 v-293l19 18q19 19 45 19t45 -19l83 -82l83 82q19 19 45 19t45 -19l128 -128l-90 -90l-83 83l-83 -83q-18 -19 -45 -19t-45 19l-83 83l-83 -83q-19 -19 -45 -19t-45 19l-83 83l-83 -83q-19 -19 -45 -19t-45 19l-83 83l-83 -83q-19 -19 -45 -19t-45 19l-83 83l-83 -83 q-19 -19 -45 -19t-45 19l-83 83l-83 -83q-19 -19 -45 -19t-45 19l-83 83zM640 1152v-128l384 128l384 -128v128h-128v128h-512v-128h-128z" />
<glyph unicode="&#xf21b;" d="M576 0l96 448l-96 128l-128 64zM832 0l128 640l-128 -64l-96 -128zM992 1010q-2 4 -4 6q-10 8 -96 8q-70 0 -167 -19q-7 -2 -21 -2t-21 2q-97 19 -167 19q-86 0 -96 -8q-2 -2 -4 -6q2 -18 4 -27q2 -3 7.5 -6.5t7.5 -10.5q2 -4 7.5 -20.5t7 -20.5t7.5 -17t8.5 -17t9 -14 t12 -13.5t14 -9.5t17.5 -8t20.5 -4t24.5 -2q36 0 59 12.5t32.5 30t14.5 34.5t11.5 29.5t17.5 12.5h12q11 0 17.5 -12.5t11.5 -29.5t14.5 -34.5t32.5 -30t59 -12.5q13 0 24.5 2t20.5 4t17.5 8t14 9.5t12 13.5t9 14t8.5 17t7.5 17t7 20.5t7.5 20.5q2 7 7.5 10.5t7.5 6.5 q2 9 4 27zM1408 131q0 -121 -73 -190t-194 -69h-874q-121 0 -194 69t-73 190q0 61 4.5 118t19 125.5t37.5 123.5t63.5 103.5t93.5 74.5l-90 220h214q-22 64 -22 128q0 12 2 32q-194 40 -194 96q0 57 210 99q17 62 51.5 134t70.5 114q32 37 76 37q30 0 84 -31t84 -31t84 31 t84 31q44 0 76 -37q36 -42 70.5 -114t51.5 -134q210 -42 210 -99q0 -56 -194 -96q7 -81 -20 -160h214l-82 -225q63 -33 107.5 -96.5t65.5 -143.5t29 -151.5t8 -148.5z" />
<glyph unicode="&#xf21c;" horiz-adv-x="2304" d="M2301 500q12 -103 -22 -198.5t-99 -163.5t-158.5 -106t-196.5 -31q-161 11 -279.5 125t-134.5 274q-12 111 27.5 210.5t118.5 170.5l-71 107q-96 -80 -151 -194t-55 -244q0 -27 -18.5 -46.5t-45.5 -19.5h-256h-69q-23 -164 -149 -274t-294 -110q-185 0 -316.5 131.5 t-131.5 316.5t131.5 316.5t316.5 131.5q76 0 152 -27l24 45q-123 110 -304 110h-64q-26 0 -45 19t-19 45t19 45t45 19h128q78 0 145 -13.5t116.5 -38.5t71.5 -39.5t51 -36.5h512h115l-85 128h-222q-30 0 -49 22.5t-14 52.5q4 23 23 38t43 15h253q33 0 53 -28l70 -105 l114 114q19 19 46 19h101q26 0 45 -19t19 -45v-128q0 -26 -19 -45t-45 -19h-179l115 -172q131 63 275 36q143 -26 244 -134.5t118 -253.5zM448 128q115 0 203 72.5t111 183.5h-314q-35 0 -55 31q-18 32 -1 63l147 277q-47 13 -91 13q-132 0 -226 -94t-94 -226t94 -226 t226 -94zM1856 128q132 0 226 94t94 226t-94 226t-226 94q-60 0 -121 -24l174 -260q15 -23 10 -49t-27 -40q-15 -11 -36 -11q-35 0 -53 29l-174 260q-93 -95 -93 -225q0 -132 94 -226t226 -94z" />
<glyph unicode="&#xf21d;" d="M1408 0q0 -63 -61.5 -113.5t-164 -81t-225 -46t-253.5 -15.5t-253.5 15.5t-225 46t-164 81t-61.5 113.5q0 49 33 88.5t91 66.5t118 44.5t131 29.5q26 5 48 -10.5t26 -41.5q5 -26 -10.5 -48t-41.5 -26q-58 -10 -106 -23.5t-76.5 -25.5t-48.5 -23.5t-27.5 -19.5t-8.5 -12 q3 -11 27 -26.5t73 -33t114 -32.5t160.5 -25t201.5 -10t201.5 10t160.5 25t114 33t73 33.5t27 27.5q-1 4 -8.5 11t-27.5 19t-48.5 23.5t-76.5 25t-106 23.5q-26 4 -41.5 26t-10.5 48q4 26 26 41.5t48 10.5q71 -12 131 -29.5t118 -44.5t91 -66.5t33 -88.5zM1024 896v-384 q0 -26 -19 -45t-45 -19h-64v-384q0 -26 -19 -45t-45 -19h-256q-26 0 -45 19t-19 45v384h-64q-26 0 -45 19t-19 45v384q0 53 37.5 90.5t90.5 37.5h384q53 0 90.5 -37.5t37.5 -90.5zM928 1280q0 -93 -65.5 -158.5t-158.5 -65.5t-158.5 65.5t-65.5 158.5t65.5 158.5t158.5 65.5 t158.5 -65.5t65.5 -158.5z" />
<glyph unicode="&#xf21e;" horiz-adv-x="1792" d="M1280 512h305q-5 -6 -10 -10.5t-9 -7.5l-3 -4l-623 -600q-18 -18 -44 -18t-44 18l-624 602q-5 2 -21 20h369q22 0 39.5 13.5t22.5 34.5l70 281l190 -667q6 -20 23 -33t39 -13q21 0 38 13t23 33l146 485l56 -112q18 -35 57 -35zM1792 940q0 -145 -103 -300h-369l-111 221 q-8 17 -25.5 27t-36.5 8q-45 -5 -56 -46l-129 -430l-196 686q-6 20 -23.5 33t-39.5 13t-39 -13.5t-22 -34.5l-116 -464h-423q-103 155 -103 300q0 220 127 344t351 124q62 0 126.5 -21.5t120 -58t95.5 -68.5t76 -68q36 36 76 68t95.5 68.5t120 58t126.5 21.5q224 0 351 -124 t127 -344z" />
<glyph unicode="&#xf221;" horiz-adv-x="1280" d="M1152 960q0 -221 -147.5 -384.5t-364.5 -187.5v-260h224q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-224v-224q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v224h-224q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h224v260q-150 16 -271.5 103t-186 224t-52.5 292 q11 134 80.5 249t182 188t245.5 88q170 19 319 -54t236 -212t87 -306zM128 960q0 -185 131.5 -316.5t316.5 -131.5t316.5 131.5t131.5 316.5t-131.5 316.5t-316.5 131.5t-316.5 -131.5t-131.5 -316.5z" />
<glyph unicode="&#xf222;" d="M1472 1408q26 0 45 -19t19 -45v-416q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v262l-382 -383q126 -156 126 -359q0 -117 -45.5 -223.5t-123 -184t-184 -123t-223.5 -45.5t-223.5 45.5t-184 123t-123 184t-45.5 223.5t45.5 223.5t123 184t184 123t223.5 45.5 q203 0 359 -126l382 382h-261q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h416zM576 0q185 0 316.5 131.5t131.5 316.5t-131.5 316.5t-316.5 131.5t-316.5 -131.5t-131.5 -316.5t131.5 -316.5t316.5 -131.5z" />
<glyph unicode="&#xf223;" horiz-adv-x="1280" d="M830 1220q145 -72 233.5 -210.5t88.5 -305.5q0 -221 -147.5 -384.5t-364.5 -187.5v-132h96q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-96v-96q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v96h-96q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h96v132q-217 24 -364.5 187.5 t-147.5 384.5q0 167 88.5 305.5t233.5 210.5q-165 96 -228 273q-6 16 3.5 29.5t26.5 13.5h69q21 0 29 -20q44 -106 140 -171t214 -65t214 65t140 171q8 20 37 20h61q17 0 26.5 -13.5t3.5 -29.5q-63 -177 -228 -273zM576 256q185 0 316.5 131.5t131.5 316.5t-131.5 316.5 t-316.5 131.5t-316.5 -131.5t-131.5 -316.5t131.5 -316.5t316.5 -131.5z" />
<glyph unicode="&#xf224;" d="M1024 1504q0 14 9 23t23 9h288q26 0 45 -19t19 -45v-288q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v134l-254 -255q126 -158 126 -359q0 -221 -147.5 -384.5t-364.5 -187.5v-132h96q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-96v-96q0 -14 -9 -23t-23 -9h-64 q-14 0 -23 9t-9 23v96h-96q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h96v132q-149 16 -270.5 103t-186.5 223.5t-53 291.5q16 204 160 353.5t347 172.5q118 14 228 -19t198 -103l255 254h-134q-14 0 -23 9t-9 23v64zM576 256q185 0 316.5 131.5t131.5 316.5t-131.5 316.5 t-316.5 131.5t-316.5 -131.5t-131.5 -316.5t131.5 -316.5t316.5 -131.5z" />
<glyph unicode="&#xf225;" horiz-adv-x="1792" d="M1280 1504q0 14 9 23t23 9h288q26 0 45 -19t19 -45v-288q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v134l-254 -255q126 -158 126 -359q0 -221 -147.5 -384.5t-364.5 -187.5v-132h96q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-96v-96q0 -14 -9 -23t-23 -9h-64 q-14 0 -23 9t-9 23v96h-96q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h96v132q-217 24 -364.5 187.5t-147.5 384.5q0 201 126 359l-52 53l-101 -111q-9 -10 -22 -10.5t-23 7.5l-48 44q-10 8 -10.5 21.5t8.5 23.5l105 115l-111 112v-134q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9 t-9 23v288q0 26 19 45t45 19h288q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-133l106 -107l86 94q9 10 22 10.5t23 -7.5l48 -44q10 -8 10.5 -21.5t-8.5 -23.5l-90 -99l57 -56q158 126 359 126t359 -126l255 254h-134q-14 0 -23 9t-9 23v64zM832 256q185 0 316.5 131.5 t131.5 316.5t-131.5 316.5t-316.5 131.5t-316.5 -131.5t-131.5 -316.5t131.5 -316.5t316.5 -131.5z" />
<glyph unicode="&#xf226;" horiz-adv-x="1792" d="M1790 1007q12 -155 -52.5 -292t-186 -224t-271.5 -103v-260h224q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-224v-224q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v224h-512v-224q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v224h-224q-14 0 -23 9t-9 23v64q0 14 9 23 t23 9h224v260q-150 16 -271.5 103t-186 224t-52.5 292q17 206 164.5 356.5t352.5 169.5q206 21 377 -94q171 115 377 94q205 -19 352.5 -169.5t164.5 -356.5zM896 647q128 131 128 313t-128 313q-128 -131 -128 -313t128 -313zM576 512q115 0 218 57q-154 165 -154 391 q0 224 154 391q-103 57 -218 57q-185 0 -316.5 -131.5t-131.5 -316.5t131.5 -316.5t316.5 -131.5zM1152 128v260q-137 15 -256 94q-119 -79 -256 -94v-260h512zM1216 512q185 0 316.5 131.5t131.5 316.5t-131.5 316.5t-316.5 131.5q-115 0 -218 -57q154 -167 154 -391 q0 -226 -154 -391q103 -57 218 -57z" />
<glyph unicode="&#xf227;" horiz-adv-x="1920" d="M1536 1120q0 14 9 23t23 9h288q26 0 45 -19t19 -45v-288q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v134l-254 -255q76 -95 107.5 -214t9.5 -247q-31 -182 -166 -312t-318 -156q-210 -29 -384.5 80t-241.5 300q-117 6 -221 57.5t-177.5 133t-113.5 192.5t-32 230 q9 135 78 252t182 191.5t248 89.5q118 14 227.5 -19t198.5 -103l255 254h-134q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h288q26 0 45 -19t19 -45v-288q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v134l-254 -255q59 -74 93 -169q182 -9 328 -124l255 254h-134q-14 0 -23 9 t-9 23v64zM1024 704q0 20 -4 58q-162 -25 -271 -150t-109 -292q0 -20 4 -58q162 25 271 150t109 292zM128 704q0 -168 111 -294t276 -149q-3 29 -3 59q0 210 135 369.5t338 196.5q-53 120 -163.5 193t-245.5 73q-185 0 -316.5 -131.5t-131.5 -316.5zM1088 -128 q185 0 316.5 131.5t131.5 316.5q0 168 -111 294t-276 149q3 -29 3 -59q0 -210 -135 -369.5t-338 -196.5q53 -120 163.5 -193t245.5 -73z" />
<glyph unicode="&#xf228;" horiz-adv-x="2048" d="M1664 1504q0 14 9 23t23 9h288q26 0 45 -19t19 -45v-288q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v134l-254 -255q76 -95 107.5 -214t9.5 -247q-32 -180 -164.5 -310t-313.5 -157q-223 -34 -409 90q-117 -78 -256 -93v-132h96q14 0 23 -9t9 -23v-64q0 -14 -9 -23 t-23 -9h-96v-96q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v96h-96q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h96v132q-155 17 -279.5 109.5t-187 237.5t-39.5 307q25 187 159.5 322.5t320.5 164.5q224 34 410 -90q146 97 320 97q201 0 359 -126l255 254h-134q-14 0 -23 9 t-9 23v64zM896 391q128 131 128 313t-128 313q-128 -131 -128 -313t128 -313zM128 704q0 -185 131.5 -316.5t316.5 -131.5q117 0 218 57q-154 167 -154 391t154 391q-101 57 -218 57q-185 0 -316.5 -131.5t-131.5 -316.5zM1216 256q185 0 316.5 131.5t131.5 316.5 t-131.5 316.5t-316.5 131.5q-117 0 -218 -57q154 -167 154 -391t-154 -391q101 -57 218 -57z" />
<glyph unicode="&#xf229;" d="M1472 1408q26 0 45 -19t19 -45v-416q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v262l-213 -214l140 -140q9 -10 9 -23t-9 -22l-46 -46q-9 -9 -22 -9t-23 9l-140 141l-78 -79q126 -156 126 -359q0 -117 -45.5 -223.5t-123 -184t-184 -123t-223.5 -45.5t-223.5 45.5 t-184 123t-123 184t-45.5 223.5t45.5 223.5t123 184t184 123t223.5 45.5q203 0 359 -126l78 78l-172 172q-9 10 -9 23t9 22l46 46q9 9 22 9t23 -9l172 -172l213 213h-261q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h416zM576 0q185 0 316.5 131.5t131.5 316.5t-131.5 316.5 t-316.5 131.5t-316.5 -131.5t-131.5 -316.5t131.5 -316.5t316.5 -131.5z" />
<glyph unicode="&#xf22a;" horiz-adv-x="1280" d="M640 892q217 -24 364.5 -187.5t147.5 -384.5q0 -167 -87 -306t-236 -212t-319 -54q-133 15 -245.5 88t-182 188t-80.5 249q-12 155 52.5 292t186 224t271.5 103v132h-160q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h160v165l-92 -92q-10 -9 -23 -9t-22 9l-46 46q-9 9 -9 22 t9 23l202 201q19 19 45 19t45 -19l202 -201q9 -10 9 -23t-9 -22l-46 -46q-9 -9 -22 -9t-23 9l-92 92v-165h160q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-160v-132zM576 -128q185 0 316.5 131.5t131.5 316.5t-131.5 316.5t-316.5 131.5t-316.5 -131.5t-131.5 -316.5 t131.5 -316.5t316.5 -131.5z" />
<glyph unicode="&#xf22b;" horiz-adv-x="2048" d="M1901 621q19 -19 19 -45t-19 -45l-294 -294q-9 -10 -22.5 -10t-22.5 10l-45 45q-10 9 -10 22.5t10 22.5l185 185h-294v-224q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v224h-132q-24 -217 -187.5 -364.5t-384.5 -147.5q-167 0 -306 87t-212 236t-54 319q15 133 88 245.5 t188 182t249 80.5q155 12 292 -52.5t224 -186t103 -271.5h132v224q0 14 9 23t23 9h64q14 0 23 -9t9 -23v-224h294l-185 185q-10 9 -10 22.5t10 22.5l45 45q9 10 22.5 10t22.5 -10zM576 128q185 0 316.5 131.5t131.5 316.5t-131.5 316.5t-316.5 131.5t-316.5 -131.5 t-131.5 -316.5t131.5 -316.5t316.5 -131.5z" />
<glyph unicode="&#xf22c;" horiz-adv-x="1280" d="M1152 960q0 -221 -147.5 -384.5t-364.5 -187.5v-612q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v612q-217 24 -364.5 187.5t-147.5 384.5q0 117 45.5 223.5t123 184t184 123t223.5 45.5t223.5 -45.5t184 -123t123 -184t45.5 -223.5zM576 512q185 0 316.5 131.5 t131.5 316.5t-131.5 316.5t-316.5 131.5t-316.5 -131.5t-131.5 -316.5t131.5 -316.5t316.5 -131.5z" />
<glyph unicode="&#xf22d;" horiz-adv-x="1280" d="M1024 576q0 185 -131.5 316.5t-316.5 131.5t-316.5 -131.5t-131.5 -316.5t131.5 -316.5t316.5 -131.5t316.5 131.5t131.5 316.5zM1152 576q0 -117 -45.5 -223.5t-123 -184t-184 -123t-223.5 -45.5t-223.5 45.5t-184 123t-123 184t-45.5 223.5t45.5 223.5t123 184t184 123 t223.5 45.5t223.5 -45.5t184 -123t123 -184t45.5 -223.5z" />
<glyph unicode="&#xf22e;" horiz-adv-x="1792" />
<glyph unicode="&#xf22f;" horiz-adv-x="1792" />
<glyph unicode="&#xf230;" d="M1451 1408q35 0 60 -25t25 -60v-1366q0 -35 -25 -60t-60 -25h-391v595h199l30 232h-229v148q0 56 23.5 84t91.5 28l122 1v207q-63 9 -178 9q-136 0 -217.5 -80t-81.5 -226v-171h-200v-232h200v-595h-735q-35 0 -60 25t-25 60v1366q0 35 25 60t60 25h1366z" />
<glyph unicode="&#xf231;" horiz-adv-x="1280" d="M0 939q0 108 37.5 203.5t103.5 166.5t152 123t185 78t202 26q158 0 294 -66.5t221 -193.5t85 -287q0 -96 -19 -188t-60 -177t-100 -149.5t-145 -103t-189 -38.5q-68 0 -135 32t-96 88q-10 -39 -28 -112.5t-23.5 -95t-20.5 -71t-26 -71t-32 -62.5t-46 -77.5t-62 -86.5 l-14 -5l-9 10q-15 157 -15 188q0 92 21.5 206.5t66.5 287.5t52 203q-32 65 -32 169q0 83 52 156t132 73q61 0 95 -40.5t34 -102.5q0 -66 -44 -191t-44 -187q0 -63 45 -104.5t109 -41.5q55 0 102 25t78.5 68t56 95t38 110.5t20 111t6.5 99.5q0 173 -109.5 269.5t-285.5 96.5 q-200 0 -334 -129.5t-134 -328.5q0 -44 12.5 -85t27 -65t27 -45.5t12.5 -30.5q0 -28 -15 -73t-37 -45q-2 0 -17 3q-51 15 -90.5 56t-61 94.5t-32.5 108t-11 106.5z" />
<glyph unicode="&#xf232;" d="M985 562q13 0 97.5 -44t89.5 -53q2 -5 2 -15q0 -33 -17 -76q-16 -39 -71 -65.5t-102 -26.5q-57 0 -190 62q-98 45 -170 118t-148 185q-72 107 -71 194v8q3 91 74 158q24 22 52 22q6 0 18 -1.5t19 -1.5q19 0 26.5 -6.5t15.5 -27.5q8 -20 33 -88t25 -75q0 -21 -34.5 -57.5 t-34.5 -46.5q0 -7 5 -15q34 -73 102 -137q56 -53 151 -101q12 -7 22 -7q15 0 54 48.5t52 48.5zM782 32q127 0 243.5 50t200.5 134t134 200.5t50 243.5t-50 243.5t-134 200.5t-200.5 134t-243.5 50t-243.5 -50t-200.5 -134t-134 -200.5t-50 -243.5q0 -203 120 -368l-79 -233 l242 77q158 -104 345 -104zM782 1414q153 0 292.5 -60t240.5 -161t161 -240.5t60 -292.5t-60 -292.5t-161 -240.5t-240.5 -161t-292.5 -60q-195 0 -365 94l-417 -134l136 405q-108 178 -108 389q0 153 60 292.5t161 240.5t240.5 161t292.5 60z" />
<glyph unicode="&#xf233;" horiz-adv-x="1792" d="M128 128h1024v128h-1024v-128zM128 640h1024v128h-1024v-128zM1696 192q0 40 -28 68t-68 28t-68 -28t-28 -68t28 -68t68 -28t68 28t28 68zM128 1152h1024v128h-1024v-128zM1696 704q0 40 -28 68t-68 28t-68 -28t-28 -68t28 -68t68 -28t68 28t28 68zM1696 1216 q0 40 -28 68t-68 28t-68 -28t-28 -68t28 -68t68 -28t68 28t28 68zM1792 384v-384h-1792v384h1792zM1792 896v-384h-1792v384h1792zM1792 1408v-384h-1792v384h1792z" />
<glyph unicode="&#xf234;" horiz-adv-x="2048" d="M704 640q-159 0 -271.5 112.5t-112.5 271.5t112.5 271.5t271.5 112.5t271.5 -112.5t112.5 -271.5t-112.5 -271.5t-271.5 -112.5zM1664 512h352q13 0 22.5 -9.5t9.5 -22.5v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-352v-352q0 -13 -9.5 -22.5t-22.5 -9.5h-192q-13 0 -22.5 9.5 t-9.5 22.5v352h-352q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h352v352q0 13 9.5 22.5t22.5 9.5h192q13 0 22.5 -9.5t9.5 -22.5v-352zM928 288q0 -52 38 -90t90 -38h256v-238q-68 -50 -171 -50h-874q-121 0 -194 69t-73 190q0 53 3.5 103.5t14 109t26.5 108.5 t43 97.5t62 81t85.5 53.5t111.5 20q19 0 39 -17q79 -61 154.5 -91.5t164.5 -30.5t164.5 30.5t154.5 91.5q20 17 39 17q132 0 217 -96h-223q-52 0 -90 -38t-38 -90v-192z" />
<glyph unicode="&#xf235;" horiz-adv-x="2048" d="M704 640q-159 0 -271.5 112.5t-112.5 271.5t112.5 271.5t271.5 112.5t271.5 -112.5t112.5 -271.5t-112.5 -271.5t-271.5 -112.5zM1781 320l249 -249q9 -9 9 -23q0 -13 -9 -22l-136 -136q-9 -9 -22 -9q-14 0 -23 9l-249 249l-249 -249q-9 -9 -23 -9q-13 0 -22 9l-136 136 q-9 9 -9 22q0 14 9 23l249 249l-249 249q-9 9 -9 23q0 13 9 22l136 136q9 9 22 9q14 0 23 -9l249 -249l249 249q9 9 23 9q13 0 22 -9l136 -136q9 -9 9 -22q0 -14 -9 -23zM1283 320l-181 -181q-37 -37 -37 -91q0 -53 37 -90l83 -83q-21 -3 -44 -3h-874q-121 0 -194 69 t-73 190q0 53 3.5 103.5t14 109t26.5 108.5t43 97.5t62 81t85.5 53.5t111.5 20q19 0 39 -17q154 -122 319 -122t319 122q20 17 39 17q28 0 57 -6q-28 -27 -41 -50t-13 -56q0 -54 37 -91z" />
<glyph unicode="&#xf236;" horiz-adv-x="2048" d="M256 512h1728q26 0 45 -19t19 -45v-448h-256v256h-1536v-256h-256v1216q0 26 19 45t45 19h128q26 0 45 -19t19 -45v-704zM832 832q0 106 -75 181t-181 75t-181 -75t-75 -181t75 -181t181 -75t181 75t75 181zM2048 576v64q0 159 -112.5 271.5t-271.5 112.5h-704 q-26 0 -45 -19t-19 -45v-384h1152z" />
<glyph unicode="&#xf237;" d="M1536 1536l-192 -448h192v-192h-274l-55 -128h329v-192h-411l-357 -832l-357 832h-411v192h329l-55 128h-274v192h192l-192 448h256l323 -768h378l323 768h256zM768 320l108 256h-216z" />
<glyph unicode="&#xf238;" d="M1088 1536q185 0 316.5 -93.5t131.5 -226.5v-896q0 -130 -125.5 -222t-305.5 -97l213 -202q16 -15 8 -35t-30 -20h-1056q-22 0 -30 20t8 35l213 202q-180 5 -305.5 97t-125.5 222v896q0 133 131.5 226.5t316.5 93.5h640zM768 192q80 0 136 56t56 136t-56 136t-136 56 t-136 -56t-56 -136t56 -136t136 -56zM1344 768v512h-1152v-512h1152z" />
<glyph unicode="&#xf239;" d="M1088 1536q185 0 316.5 -93.5t131.5 -226.5v-896q0 -130 -125.5 -222t-305.5 -97l213 -202q16 -15 8 -35t-30 -20h-1056q-22 0 -30 20t8 35l213 202q-180 5 -305.5 97t-125.5 222v896q0 133 131.5 226.5t316.5 93.5h640zM288 224q66 0 113 47t47 113t-47 113t-113 47 t-113 -47t-47 -113t47 -113t113 -47zM704 768v512h-544v-512h544zM1248 224q66 0 113 47t47 113t-47 113t-113 47t-113 -47t-47 -113t47 -113t113 -47zM1408 768v512h-576v-512h576z" />
<glyph unicode="&#xf23a;" horiz-adv-x="1792" d="M1792 204v-209h-642v209h134v926h-6l-314 -1135h-243l-310 1135h-8v-926h135v-209h-538v209h69q21 0 43 19.5t22 37.5v881q0 18 -22 40t-43 22h-69v209h672l221 -821h6l223 821h670v-209h-71q-19 0 -41 -22t-22 -40v-881q0 -18 21.5 -37.5t41.5 -19.5h71z" />
<glyph unicode="&#xf23b;" d="M809 532l266 499h-112l-157 -312q-24 -48 -44 -92l-42 92l-155 312h-120l263 -493v-324h101v318zM1536 1408v-1536h-1536v1536h1536z" />
<glyph unicode="&#xf23c;" horiz-adv-x="2296" d="M478 -139q-8 -16 -27 -34.5t-37 -25.5q-25 -9 -51.5 3.5t-28.5 31.5q-1 22 40 55t68 38q23 4 34 -21.5t2 -46.5zM1819 -139q7 -16 26 -34.5t38 -25.5q25 -9 51.5 3.5t27.5 31.5q2 22 -39.5 55t-68.5 38q-22 4 -33 -21.5t-2 -46.5zM1867 -30q13 -27 56.5 -59.5t77.5 -41.5 q45 -13 82 4.5t37 50.5q0 46 -67.5 100.5t-115.5 59.5q-40 5 -63.5 -37.5t-6.5 -76.5zM428 -30q-13 -27 -56 -59.5t-77 -41.5q-45 -13 -82 4.5t-37 50.5q0 46 67.5 100.5t115.5 59.5q40 5 63 -37.5t6 -76.5zM1158 1094h1q-41 0 -76 -15q27 -8 44 -30.5t17 -49.5 q0 -35 -27 -60t-65 -25q-52 0 -80 43q-5 -23 -5 -42q0 -74 56 -126.5t135 -52.5q80 0 136 52.5t56 126.5t-56 126.5t-136 52.5zM1462 1312q-99 109 -220.5 131.5t-245.5 -44.5q27 60 82.5 96.5t118 39.5t121.5 -17t99.5 -74.5t44.5 -131.5zM2212 73q8 -11 -11 -42 q7 -23 7 -40q1 -56 -44.5 -112.5t-109.5 -91.5t-118 -37q-48 -2 -92 21.5t-66 65.5q-687 -25 -1259 0q-23 -41 -66.5 -65t-92.5 -22q-86 3 -179.5 80.5t-92.5 160.5q2 22 7 40q-19 31 -11 42q6 10 31 1q14 22 41 51q-7 29 2 38q11 10 39 -4q29 20 59 34q0 29 13 37 q23 12 51 -16q35 5 61 -2q18 -4 38 -19v73q-11 0 -18 2q-53 10 -97 44.5t-55 87.5q-9 38 0 81q15 62 93 95q2 17 19 35.5t36 23.5t33 -7.5t19 -30.5h13q46 -5 60 -23q3 -3 5 -7q10 1 30.5 3.5t30.5 3.5q-15 11 -30 17q-23 40 -91 43q0 6 1 10q-62 2 -118.5 18.5t-84.5 47.5 q-32 36 -42.5 92t-2.5 112q16 126 90 179q23 16 52 4.5t32 -40.5q0 -1 1.5 -14t2.5 -21t3 -20t5.5 -19t8.5 -10q27 -14 76 -12q48 46 98 74q-40 4 -162 -14l47 46q61 58 163 111q145 73 282 86q-20 8 -41 15.5t-47 14t-42.5 10.5t-47.5 11t-43 10q595 126 904 -139 q98 -84 158 -222q85 -10 121 9h1q5 3 8.5 10t5.5 19t3 19.5t3 21.5l1 14q3 28 32 40t52 -5q73 -52 91 -178q7 -57 -3.5 -113t-42.5 -91q-28 -32 -83.5 -48.5t-115.5 -18.5v-10q-71 -2 -95 -43q-14 -5 -31 -17q11 -1 32 -3.5t30 -3.5q1 4 5 8q16 18 60 23h13q5 18 19 30t33 8 t36 -23t19 -36q79 -32 93 -95q9 -40 1 -81q-12 -53 -56 -88t-97 -44q-10 -2 -17 -2q0 -49 -1 -73q20 15 38 19q26 7 61 2q28 28 51 16q14 -9 14 -37q33 -16 59 -34q27 13 38 4q10 -10 2 -38q28 -30 41 -51q23 8 31 -1zM1937 1025q0 -29 -9 -54q82 -32 112 -132 q4 37 -9.5 98.5t-41.5 90.5q-20 19 -36 17t-16 -20zM1859 925q35 -42 47.5 -108.5t-0.5 -124.5q67 13 97 45q13 14 18 28q-3 64 -31 114.5t-79 66.5q-15 -15 -52 -21zM1822 921q-30 0 -44 1q42 -115 53 -239q21 0 43 3q16 68 1 135t-53 100zM258 839q30 100 112 132 q-9 25 -9 54q0 18 -16.5 20t-35.5 -17q-28 -29 -41.5 -90.5t-9.5 -98.5zM294 737q29 -31 97 -45q-13 58 -0.5 124.5t47.5 108.5v0q-37 6 -52 21q-51 -16 -78.5 -66t-31.5 -115q9 -17 18 -28zM471 683q14 124 73 235q-19 -4 -55 -18l-45 -19v1q-46 -89 -20 -196q25 -3 47 -3z M1434 644q8 -38 16.5 -108.5t11.5 -89.5q3 -18 9.5 -21.5t23.5 4.5q40 20 62 85.5t23 125.5q-24 2 -146 4zM1152 1285q-116 0 -199 -82.5t-83 -198.5q0 -117 83 -199.5t199 -82.5t199 82.5t83 199.5q0 116 -83 198.5t-199 82.5zM1380 646q-106 2 -211 0v1q-1 -27 2.5 -86 t13.5 -66q29 -14 93.5 -14.5t95.5 10.5q9 3 11 39t-0.5 69.5t-4.5 46.5zM1112 447q8 4 9.5 48t-0.5 88t-4 63v1q-212 -3 -214 -3q-4 -20 -7 -62t0 -83t14 -46q34 -15 101 -16t101 10zM718 636q-16 -59 4.5 -118.5t77.5 -84.5q15 -8 24 -5t12 21q3 16 8 90t10 103 q-69 -2 -136 -6zM591 510q3 -23 -34 -36q132 -141 271.5 -240t305.5 -154q172 49 310.5 146t293.5 250q-33 13 -30 34l3 9v1v-1q-17 2 -50 5.5t-48 4.5q-26 -90 -82 -132q-51 -38 -82 1q-5 6 -9 14q-7 13 -17 62q-2 -5 -5 -9t-7.5 -7t-8 -5.5t-9.5 -4l-10 -2.5t-12 -2 l-12 -1.5t-13.5 -1t-13.5 -0.5q-106 -9 -163 11q-4 -17 -10 -26.5t-21 -15t-23 -7t-36 -3.5q-2 0 -3 -0.5t-3 -0.5h-3q-179 -17 -203 40q-2 -63 -56 -54q-47 8 -91 54q-12 13 -20 26q-17 29 -26 65q-58 -6 -87 -10q1 -2 4 -10zM507 -118q3 14 3 30q-17 71 -51 130t-73 70 q-41 12 -101.5 -14.5t-104.5 -80t-39 -107.5q35 -53 100 -93t119 -42q51 -2 94 28t53 79zM510 53q23 -63 27 -119q195 113 392 174q-98 52 -180.5 120t-179.5 165q-6 -4 -29 -13q0 -2 -1 -5t-1 -4q31 -18 22 -37q-12 -23 -56 -34q-10 -13 -29 -24h-1q-2 -83 1 -150 q19 -34 35 -73zM579 -113q532 -21 1145 0q-254 147 -428 196q-76 -35 -156 -57q-8 -3 -16 0q-65 21 -129 49q-208 -60 -416 -188h-1v-1q1 0 1 1zM1763 -67q4 54 28 120q14 38 33 71l-1 -1q3 77 3 153q-15 8 -30 25q-42 9 -56 33q-9 20 22 38q-2 4 -2 9q-16 4 -28 12 q-204 -190 -383 -284q198 -59 414 -176zM2155 -90q5 54 -39 107.5t-104 80t-102 14.5q-38 -11 -72.5 -70.5t-51.5 -129.5q0 -16 3 -30q10 -49 53 -79t94 -28q54 2 119 42t100 93z" />
<glyph unicode="&#xf23d;" horiz-adv-x="2304" d="M1524 -25q0 -68 -48 -116t-116 -48t-116.5 48t-48.5 116t48.5 116.5t116.5 48.5t116 -48.5t48 -116.5zM775 -25q0 -68 -48.5 -116t-116.5 -48t-116 48t-48 116t48 116.5t116 48.5t116.5 -48.5t48.5 -116.5zM0 1469q57 -60 110.5 -104.5t121 -82t136 -63t166 -45.5 t200 -31.5t250 -18.5t304 -9.5t372.5 -2.5q139 0 244.5 -5t181 -16.5t124 -27.5t71 -39.5t24 -51.5t-19.5 -64t-56.5 -76.5t-89.5 -91t-116 -104.5t-139 -119q-185 -157 -286 -247q29 51 76.5 109t94 105.5t94.5 98.5t83 91.5t54 80.5t13 70t-45.5 55.5t-116.5 41t-204 23.5 t-304 5q-168 -2 -314 6t-256 23t-204.5 41t-159.5 51.5t-122.5 62.5t-91.5 66.5t-68 71.5t-50.5 69.5t-40 68t-36.5 59.5z" />
<glyph unicode="&#xf23e;" horiz-adv-x="1792" d="M896 1472q-169 0 -323 -66t-265.5 -177.5t-177.5 -265.5t-66 -323t66 -323t177.5 -265.5t265.5 -177.5t323 -66t323 66t265.5 177.5t177.5 265.5t66 323t-66 323t-177.5 265.5t-265.5 177.5t-323 66zM896 1536q182 0 348 -71t286 -191t191 -286t71 -348t-71 -348 t-191 -286t-286 -191t-348 -71t-348 71t-286 191t-191 286t-71 348t71 348t191 286t286 191t348 71zM496 704q16 0 16 -16v-480q0 -16 -16 -16h-32q-16 0 -16 16v480q0 16 16 16h32zM896 640q53 0 90.5 -37.5t37.5 -90.5q0 -35 -17.5 -64t-46.5 -46v-114q0 -14 -9 -23 t-23 -9h-64q-14 0 -23 9t-9 23v114q-29 17 -46.5 46t-17.5 64q0 53 37.5 90.5t90.5 37.5zM896 1408q209 0 385.5 -103t279.5 -279.5t103 -385.5t-103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103zM544 928v-96 q0 -14 9 -23t23 -9h64q14 0 23 9t9 23v96q0 93 65.5 158.5t158.5 65.5t158.5 -65.5t65.5 -158.5v-96q0 -14 9 -23t23 -9h64q14 0 23 9t9 23v96q0 146 -103 249t-249 103t-249 -103t-103 -249zM1408 192v512q0 26 -19 45t-45 19h-896q-26 0 -45 -19t-19 -45v-512 q0 -26 19 -45t45 -19h896q26 0 45 19t19 45z" />
<glyph unicode="&#xf240;" horiz-adv-x="2304" d="M1920 1024v-768h-1664v768h1664zM2048 448h128v384h-128v288q0 14 -9 23t-23 9h-1856q-14 0 -23 -9t-9 -23v-960q0 -14 9 -23t23 -9h1856q14 0 23 9t9 23v288zM2304 832v-384q0 -53 -37.5 -90.5t-90.5 -37.5v-160q0 -66 -47 -113t-113 -47h-1856q-66 0 -113 47t-47 113 v960q0 66 47 113t113 47h1856q66 0 113 -47t47 -113v-160q53 0 90.5 -37.5t37.5 -90.5z" />
<glyph unicode="&#xf241;" horiz-adv-x="2304" d="M256 256v768h1280v-768h-1280zM2176 960q53 0 90.5 -37.5t37.5 -90.5v-384q0 -53 -37.5 -90.5t-90.5 -37.5v-160q0 -66 -47 -113t-113 -47h-1856q-66 0 -113 47t-47 113v960q0 66 47 113t113 47h1856q66 0 113 -47t47 -113v-160zM2176 448v384h-128v288q0 14 -9 23t-23 9 h-1856q-14 0 -23 -9t-9 -23v-960q0 -14 9 -23t23 -9h1856q14 0 23 9t9 23v288h128z" />
<glyph unicode="&#xf242;" horiz-adv-x="2304" d="M256 256v768h896v-768h-896zM2176 960q53 0 90.5 -37.5t37.5 -90.5v-384q0 -53 -37.5 -90.5t-90.5 -37.5v-160q0 -66 -47 -113t-113 -47h-1856q-66 0 -113 47t-47 113v960q0 66 47 113t113 47h1856q66 0 113 -47t47 -113v-160zM2176 448v384h-128v288q0 14 -9 23t-23 9 h-1856q-14 0 -23 -9t-9 -23v-960q0 -14 9 -23t23 -9h1856q14 0 23 9t9 23v288h128z" />
<glyph unicode="&#xf243;" horiz-adv-x="2304" d="M256 256v768h512v-768h-512zM2176 960q53 0 90.5 -37.5t37.5 -90.5v-384q0 -53 -37.5 -90.5t-90.5 -37.5v-160q0 -66 -47 -113t-113 -47h-1856q-66 0 -113 47t-47 113v960q0 66 47 113t113 47h1856q66 0 113 -47t47 -113v-160zM2176 448v384h-128v288q0 14 -9 23t-23 9 h-1856q-14 0 -23 -9t-9 -23v-960q0 -14 9 -23t23 -9h1856q14 0 23 9t9 23v288h128z" />
<glyph unicode="&#xf244;" horiz-adv-x="2304" d="M2176 960q53 0 90.5 -37.5t37.5 -90.5v-384q0 -53 -37.5 -90.5t-90.5 -37.5v-160q0 -66 -47 -113t-113 -47h-1856q-66 0 -113 47t-47 113v960q0 66 47 113t113 47h1856q66 0 113 -47t47 -113v-160zM2176 448v384h-128v288q0 14 -9 23t-23 9h-1856q-14 0 -23 -9t-9 -23 v-960q0 -14 9 -23t23 -9h1856q14 0 23 9t9 23v288h128z" />
<glyph unicode="&#xf245;" horiz-adv-x="1280" d="M1133 493q31 -30 14 -69q-17 -40 -59 -40h-382l201 -476q10 -25 0 -49t-34 -35l-177 -75q-25 -10 -49 0t-35 34l-191 452l-312 -312q-19 -19 -45 -19q-12 0 -24 5q-40 17 -40 59v1504q0 42 40 59q12 5 24 5q27 0 45 -19z" />
<glyph unicode="&#xf246;" horiz-adv-x="1024" d="M832 1408q-320 0 -320 -224v-416h128v-128h-128v-544q0 -224 320 -224h64v-128h-64q-272 0 -384 146q-112 -146 -384 -146h-64v128h64q320 0 320 224v544h-128v128h128v416q0 224 -320 224h-64v128h64q272 0 384 -146q112 146 384 146h64v-128h-64z" />
<glyph unicode="&#xf247;" horiz-adv-x="2048" d="M2048 1152h-128v-1024h128v-384h-384v128h-1280v-128h-384v384h128v1024h-128v384h384v-128h1280v128h384v-384zM1792 1408v-128h128v128h-128zM128 1408v-128h128v128h-128zM256 -128v128h-128v-128h128zM1664 0v128h128v1024h-128v128h-1280v-128h-128v-1024h128v-128 h1280zM1920 -128v128h-128v-128h128zM1280 896h384v-768h-896v256h-384v768h896v-256zM512 512h640v512h-640v-512zM1536 256v512h-256v-384h-384v-128h640z" />
<glyph unicode="&#xf248;" horiz-adv-x="2304" d="M2304 768h-128v-640h128v-384h-384v128h-896v-128h-384v384h128v128h-384v-128h-384v384h128v640h-128v384h384v-128h896v128h384v-384h-128v-128h384v128h384v-384zM2048 1024v-128h128v128h-128zM1408 1408v-128h128v128h-128zM128 1408v-128h128v128h-128zM256 256 v128h-128v-128h128zM1536 384h-128v-128h128v128zM384 384h896v128h128v640h-128v128h-896v-128h-128v-640h128v-128zM896 -128v128h-128v-128h128zM2176 -128v128h-128v-128h128zM2048 128v640h-128v128h-384v-384h128v-384h-384v128h-384v-128h128v-128h896v128h128z" />
<glyph unicode="&#xf249;" d="M1024 288v-416h-928q-40 0 -68 28t-28 68v1344q0 40 28 68t68 28h1344q40 0 68 -28t28 -68v-928h-416q-40 0 -68 -28t-28 -68zM1152 256h381q-15 -82 -65 -132l-184 -184q-50 -50 -132 -65v381z" />
<glyph unicode="&#xf24a;" d="M1400 256h-248v-248q29 10 41 22l185 185q12 12 22 41zM1120 384h288v896h-1280v-1280h896v288q0 40 28 68t68 28zM1536 1312v-1024q0 -40 -20 -88t-48 -76l-184 -184q-28 -28 -76 -48t-88 -20h-1024q-40 0 -68 28t-28 68v1344q0 40 28 68t68 28h1344q40 0 68 -28t28 -68 z" />
<glyph unicode="&#xf24b;" horiz-adv-x="2304" d="M1951 538q0 -26 -15.5 -44.5t-38.5 -23.5q-8 -2 -18 -2h-153v140h153q10 0 18 -2q23 -5 38.5 -23.5t15.5 -44.5zM1933 751q0 -25 -15 -42t-38 -21q-3 -1 -15 -1h-139v129h139q3 0 8.5 -0.5t6.5 -0.5q23 -4 38 -21.5t15 -42.5zM728 587v308h-228v-308q0 -58 -38 -94.5 t-105 -36.5q-108 0 -229 59v-112q53 -15 121 -23t109 -9l42 -1q328 0 328 217zM1442 403v113q-99 -52 -200 -59q-108 -8 -169 41t-61 142t61 142t169 41q101 -7 200 -58v112q-48 12 -100 19.5t-80 9.5l-28 2q-127 6 -218.5 -14t-140.5 -60t-71 -88t-22 -106t22 -106t71 -88 t140.5 -60t218.5 -14q101 4 208 31zM2176 518q0 54 -43 88.5t-109 39.5v3q57 8 89 41.5t32 79.5q0 55 -41 88t-107 36q-3 0 -12 0.5t-14 0.5h-455v-510h491q74 0 121.5 36.5t47.5 96.5zM2304 1280v-1280q0 -52 -38 -90t-90 -38h-2048q-52 0 -90 38t-38 90v1280q0 52 38 90 t90 38h2048q52 0 90 -38t38 -90z" />
<glyph unicode="&#xf24c;" horiz-adv-x="2304" d="M858 295v693q-106 -41 -172 -135.5t-66 -211.5t66 -211.5t172 -134.5zM1362 641q0 117 -66 211.5t-172 135.5v-694q106 41 172 135.5t66 211.5zM1577 641q0 -159 -78.5 -294t-213.5 -213.5t-294 -78.5q-119 0 -227.5 46.5t-187 125t-125 187t-46.5 227.5q0 159 78.5 294 t213.5 213.5t294 78.5t294 -78.5t213.5 -213.5t78.5 -294zM1960 634q0 139 -55.5 261.5t-147.5 205.5t-213.5 131t-252.5 48h-301q-176 0 -323.5 -81t-235 -230t-87.5 -335q0 -171 87 -317.5t236 -231.5t323 -85h301q129 0 251.5 50.5t214.5 135t147.5 202.5t55.5 246z M2304 1280v-1280q0 -52 -38 -90t-90 -38h-2048q-52 0 -90 38t-38 90v1280q0 52 38 90t90 38h2048q52 0 90 -38t38 -90z" />
<glyph unicode="&#xf24d;" horiz-adv-x="1792" d="M1664 -96v1088q0 13 -9.5 22.5t-22.5 9.5h-1088q-13 0 -22.5 -9.5t-9.5 -22.5v-1088q0 -13 9.5 -22.5t22.5 -9.5h1088q13 0 22.5 9.5t9.5 22.5zM1792 992v-1088q0 -66 -47 -113t-113 -47h-1088q-66 0 -113 47t-47 113v1088q0 66 47 113t113 47h1088q66 0 113 -47t47 -113 zM1408 1376v-160h-128v160q0 13 -9.5 22.5t-22.5 9.5h-1088q-13 0 -22.5 -9.5t-9.5 -22.5v-1088q0 -13 9.5 -22.5t22.5 -9.5h160v-128h-160q-66 0 -113 47t-47 113v1088q0 66 47 113t113 47h1088q66 0 113 -47t47 -113z" />
<glyph unicode="&#xf24e;" horiz-adv-x="2304" d="M1728 1088l-384 -704h768zM448 1088l-384 -704h768zM1269 1280q-14 -40 -45.5 -71.5t-71.5 -45.5v-1291h608q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-1344q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h608v1291q-40 14 -71.5 45.5t-45.5 71.5h-491q-14 0 -23 9t-9 23v64 q0 14 9 23t23 9h491q21 57 70 92.5t111 35.5t111 -35.5t70 -92.5h491q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-491zM1088 1264q33 0 56.5 23.5t23.5 56.5t-23.5 56.5t-56.5 23.5t-56.5 -23.5t-23.5 -56.5t23.5 -56.5t56.5 -23.5zM2176 384q0 -73 -46.5 -131t-117.5 -91 t-144.5 -49.5t-139.5 -16.5t-139.5 16.5t-144.5 49.5t-117.5 91t-46.5 131q0 11 35 81t92 174.5t107 195.5t102 184t56 100q18 33 56 33t56 -33q4 -7 56 -100t102 -184t107 -195.5t92 -174.5t35 -81zM896 384q0 -73 -46.5 -131t-117.5 -91t-144.5 -49.5t-139.5 -16.5 t-139.5 16.5t-144.5 49.5t-117.5 91t-46.5 131q0 11 35 81t92 174.5t107 195.5t102 184t56 100q18 33 56 33t56 -33q4 -7 56 -100t102 -184t107 -195.5t92 -174.5t35 -81z" />
<glyph unicode="&#xf250;" d="M1408 1408q0 -261 -106.5 -461.5t-266.5 -306.5q160 -106 266.5 -306.5t106.5 -461.5h96q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-1472q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h96q0 261 106.5 461.5t266.5 306.5q-160 106 -266.5 306.5t-106.5 461.5h-96q-14 0 -23 9 t-9 23v64q0 14 9 23t23 9h1472q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-96zM874 700q77 29 149 92.5t129.5 152.5t92.5 210t35 253h-1024q0 -132 35 -253t92.5 -210t129.5 -152.5t149 -92.5q19 -7 30.5 -23.5t11.5 -36.5t-11.5 -36.5t-30.5 -23.5q-77 -29 -149 -92.5 t-129.5 -152.5t-92.5 -210t-35 -253h1024q0 132 -35 253t-92.5 210t-129.5 152.5t-149 92.5q-19 7 -30.5 23.5t-11.5 36.5t11.5 36.5t30.5 23.5z" />
<glyph unicode="&#xf251;" d="M1408 1408q0 -261 -106.5 -461.5t-266.5 -306.5q160 -106 266.5 -306.5t106.5 -461.5h96q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-1472q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h96q0 261 106.5 461.5t266.5 306.5q-160 106 -266.5 306.5t-106.5 461.5h-96q-14 0 -23 9 t-9 23v64q0 14 9 23t23 9h1472q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-96zM1280 1408h-1024q0 -66 9 -128h1006q9 61 9 128zM1280 -128q0 130 -34 249.5t-90.5 208t-126.5 152t-146 94.5h-230q-76 -31 -146 -94.5t-126.5 -152t-90.5 -208t-34 -249.5h1024z" />
<glyph unicode="&#xf252;" d="M1408 1408q0 -261 -106.5 -461.5t-266.5 -306.5q160 -106 266.5 -306.5t106.5 -461.5h96q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-1472q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h96q0 261 106.5 461.5t266.5 306.5q-160 106 -266.5 306.5t-106.5 461.5h-96q-14 0 -23 9 t-9 23v64q0 14 9 23t23 9h1472q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-96zM1280 1408h-1024q0 -206 85 -384h854q85 178 85 384zM1223 192q-54 141 -145.5 241.5t-194.5 142.5h-230q-103 -42 -194.5 -142.5t-145.5 -241.5h910z" />
<glyph unicode="&#xf253;" d="M1408 1408q0 -261 -106.5 -461.5t-266.5 -306.5q160 -106 266.5 -306.5t106.5 -461.5h96q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-1472q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h96q0 261 106.5 461.5t266.5 306.5q-160 106 -266.5 306.5t-106.5 461.5h-96q-14 0 -23 9 t-9 23v64q0 14 9 23t23 9h1472q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-96zM874 700q77 29 149 92.5t129.5 152.5t92.5 210t35 253h-1024q0 -132 35 -253t92.5 -210t129.5 -152.5t149 -92.5q19 -7 30.5 -23.5t11.5 -36.5t-11.5 -36.5t-30.5 -23.5q-137 -51 -244 -196 h700q-107 145 -244 196q-19 7 -30.5 23.5t-11.5 36.5t11.5 36.5t30.5 23.5z" />
<glyph unicode="&#xf254;" d="M1504 -64q14 0 23 -9t9 -23v-128q0 -14 -9 -23t-23 -9h-1472q-14 0 -23 9t-9 23v128q0 14 9 23t23 9h1472zM130 0q3 55 16 107t30 95t46 87t53.5 76t64.5 69.5t66 60t70.5 55t66.5 47.5t65 43q-43 28 -65 43t-66.5 47.5t-70.5 55t-66 60t-64.5 69.5t-53.5 76t-46 87 t-30 95t-16 107h1276q-3 -55 -16 -107t-30 -95t-46 -87t-53.5 -76t-64.5 -69.5t-66 -60t-70.5 -55t-66.5 -47.5t-65 -43q43 -28 65 -43t66.5 -47.5t70.5 -55t66 -60t64.5 -69.5t53.5 -76t46 -87t30 -95t16 -107h-1276zM1504 1536q14 0 23 -9t9 -23v-128q0 -14 -9 -23t-23 -9 h-1472q-14 0 -23 9t-9 23v128q0 14 9 23t23 9h1472z" />
<glyph unicode="&#xf255;" d="M768 1152q-53 0 -90.5 -37.5t-37.5 -90.5v-128h-32v93q0 48 -32 81.5t-80 33.5q-46 0 -79 -33t-33 -79v-429l-32 30v172q0 48 -32 81.5t-80 33.5q-46 0 -79 -33t-33 -79v-224q0 -47 35 -82l310 -296q39 -39 39 -102q0 -26 19 -45t45 -19h640q26 0 45 19t19 45v25 q0 41 10 77l108 436q10 36 10 77v246q0 48 -32 81.5t-80 33.5q-46 0 -79 -33t-33 -79v-32h-32v125q0 40 -25 72.5t-64 40.5q-14 2 -23 2q-46 0 -79 -33t-33 -79v-128h-32v122q0 51 -32.5 89.5t-82.5 43.5q-5 1 -13 1zM768 1280q84 0 149 -50q57 34 123 34q59 0 111 -27 t86 -76q27 7 59 7q100 0 170 -71.5t70 -171.5v-246q0 -51 -13 -108l-109 -436q-6 -24 -6 -71q0 -80 -56 -136t-136 -56h-640q-84 0 -138 58.5t-54 142.5l-308 296q-76 73 -76 175v224q0 99 70.5 169.5t169.5 70.5q11 0 16 -1q6 95 75.5 160t164.5 65q52 0 98 -21 q72 69 174 69z" />
<glyph unicode="&#xf256;" horiz-adv-x="1792" d="M880 1408q-46 0 -79 -33t-33 -79v-656h-32v528q0 46 -33 79t-79 33t-79 -33t-33 -79v-528v-256l-154 205q-38 51 -102 51q-53 0 -90.5 -37.5t-37.5 -90.5q0 -43 26 -77l384 -512q38 -51 102 -51h688q34 0 61 22t34 56l76 405q5 32 5 59v498q0 46 -33 79t-79 33t-79 -33 t-33 -79v-272h-32v528q0 46 -33 79t-79 33t-79 -33t-33 -79v-528h-32v656q0 46 -33 79t-79 33zM880 1536q68 0 125.5 -35.5t88.5 -96.5q19 4 42 4q99 0 169.5 -70.5t70.5 -169.5v-17q105 6 180.5 -64t75.5 -175v-498q0 -40 -8 -83l-76 -404q-14 -79 -76.5 -131t-143.5 -52 h-688q-60 0 -114.5 27.5t-90.5 74.5l-384 512q-51 68 -51 154q0 106 75 181t181 75q78 0 128 -34v434q0 99 70.5 169.5t169.5 70.5q23 0 42 -4q31 61 88.5 96.5t125.5 35.5z" />
<glyph unicode="&#xf257;" horiz-adv-x="1792" d="M1073 -128h-177q-163 0 -226 141q-23 49 -23 102v5q-62 30 -98.5 88.5t-36.5 127.5q0 38 5 48h-261q-106 0 -181 75t-75 181t75 181t181 75h113l-44 17q-74 28 -119.5 93.5t-45.5 145.5q0 106 75 181t181 75q46 0 91 -17l628 -239h401q106 0 181 -75t75 -181v-668 q0 -88 -54 -157.5t-140 -90.5l-339 -85q-92 -23 -186 -23zM1024 583l-155 -71l-163 -74q-30 -14 -48 -41.5t-18 -60.5q0 -46 33 -79t79 -33q26 0 46 10l338 154q-49 10 -80.5 50t-31.5 90v55zM1344 272q0 46 -33 79t-79 33q-26 0 -46 -10l-290 -132q-28 -13 -37 -17 t-30.5 -17t-29.5 -23.5t-16 -29t-8 -40.5q0 -50 31.5 -82t81.5 -32q20 0 38 9l352 160q30 14 48 41.5t18 60.5zM1112 1024l-650 248q-24 8 -46 8q-53 0 -90.5 -37.5t-37.5 -90.5q0 -40 22.5 -73t59.5 -47l526 -200v-64h-640q-53 0 -90.5 -37.5t-37.5 -90.5t37.5 -90.5 t90.5 -37.5h535l233 106v198q0 63 46 106l111 102h-69zM1073 0q82 0 155 19l339 85q43 11 70 45.5t27 78.5v668q0 53 -37.5 90.5t-90.5 37.5h-308l-136 -126q-36 -33 -36 -82v-296q0 -46 33 -77t79 -31t79 35t33 81v208h32v-208q0 -70 -57 -114q52 -8 86.5 -48.5t34.5 -93.5 q0 -42 -23 -78t-61 -53l-310 -141h91z" />
<glyph unicode="&#xf258;" horiz-adv-x="2048" d="M1151 1536q61 0 116 -28t91 -77l572 -781q118 -159 118 -359v-355q0 -80 -56 -136t-136 -56h-384q-80 0 -136 56t-56 136v177l-286 143h-546q-80 0 -136 56t-56 136v32q0 119 84.5 203.5t203.5 84.5h420l42 128h-686q-100 0 -173.5 67.5t-81.5 166.5q-65 79 -65 182v32 q0 80 56 136t136 56h959zM1920 -64v355q0 157 -93 284l-573 781q-39 52 -103 52h-959q-26 0 -45 -19t-19 -45q0 -32 1.5 -49.5t9.5 -40.5t25 -43q10 31 35.5 50t56.5 19h832v-32h-832q-26 0 -45 -19t-19 -45q0 -44 3 -58q8 -44 44 -73t81 -29h640h91q40 0 68 -28t28 -68 q0 -15 -5 -30l-64 -192q-10 -29 -35 -47.5t-56 -18.5h-443q-66 0 -113 -47t-47 -113v-32q0 -26 19 -45t45 -19h561q16 0 29 -7l317 -158q24 -13 38.5 -36t14.5 -50v-197q0 -26 19 -45t45 -19h384q26 0 45 19t19 45z" />
<glyph unicode="&#xf259;" horiz-adv-x="2048" d="M816 1408q-48 0 -79.5 -34t-31.5 -82q0 -14 3 -28l150 -624h-26l-116 482q-9 38 -39.5 62t-69.5 24q-47 0 -79 -34t-32 -81q0 -11 4 -29q3 -13 39 -161t68 -282t32 -138v-227l-307 230q-34 26 -77 26q-52 0 -89.5 -36.5t-37.5 -88.5q0 -67 56 -110l507 -379 q34 -26 76 -26h694q33 0 59 20.5t34 52.5l100 401q8 30 10 88t9 86l116 478q3 12 3 26q0 46 -33 79t-80 33q-38 0 -69 -25.5t-40 -62.5l-99 -408h-26l132 547q3 14 3 28q0 47 -32 80t-80 33q-38 0 -68.5 -24t-39.5 -62l-145 -602h-127l-164 682q-9 38 -39.5 62t-68.5 24z M1461 -256h-694q-85 0 -153 51l-507 380q-50 38 -78.5 94t-28.5 118q0 105 75 179t180 74q25 0 49.5 -5.5t41.5 -11t41 -20.5t35 -23t38.5 -29.5t37.5 -28.5l-123 512q-7 35 -7 59q0 93 60 162t152 79q14 87 80.5 144.5t155.5 57.5q83 0 148 -51.5t85 -132.5l103 -428 l83 348q20 81 85 132.5t148 51.5q87 0 152.5 -54t82.5 -139q93 -10 155 -78t62 -161q0 -30 -7 -57l-116 -477q-5 -22 -5 -67q0 -51 -13 -108l-101 -401q-19 -75 -79.5 -122.5t-137.5 -47.5z" />
<glyph unicode="&#xf25a;" horiz-adv-x="1792" d="M640 1408q-53 0 -90.5 -37.5t-37.5 -90.5v-512v-384l-151 202q-41 54 -107 54q-52 0 -89 -38t-37 -90q0 -43 26 -77l384 -512q38 -51 102 -51h718q22 0 39.5 13.5t22.5 34.5l92 368q24 96 24 194v217q0 41 -28 71t-68 30t-68 -28t-28 -68h-32v61q0 48 -32 81.5t-80 33.5 q-46 0 -79 -33t-33 -79v-64h-32v90q0 55 -37 94.5t-91 39.5q-53 0 -90.5 -37.5t-37.5 -90.5v-96h-32v570q0 55 -37 94.5t-91 39.5zM640 1536q107 0 181.5 -77.5t74.5 -184.5v-220q22 2 32 2q99 0 173 -69q47 21 99 21q113 0 184 -87q27 7 56 7q94 0 159 -67.5t65 -161.5 v-217q0 -116 -28 -225l-92 -368q-16 -64 -68 -104.5t-118 -40.5h-718q-60 0 -114.5 27.5t-90.5 74.5l-384 512q-51 68 -51 154q0 105 74.5 180.5t179.5 75.5q71 0 130 -35v547q0 106 75 181t181 75zM768 128v384h-32v-384h32zM1024 128v384h-32v-384h32zM1280 128v384h-32 v-384h32z" />
<glyph unicode="&#xf25b;" d="M1288 889q60 0 107 -23q141 -63 141 -226v-177q0 -94 -23 -186l-85 -339q-21 -86 -90.5 -140t-157.5 -54h-668q-106 0 -181 75t-75 181v401l-239 628q-17 45 -17 91q0 106 75 181t181 75q80 0 145.5 -45.5t93.5 -119.5l17 -44v113q0 106 75 181t181 75t181 -75t75 -181 v-261q27 5 48 5q69 0 127.5 -36.5t88.5 -98.5zM1072 896q-33 0 -60.5 -18t-41.5 -48l-74 -163l-71 -155h55q50 0 90 -31.5t50 -80.5l154 338q10 20 10 46q0 46 -33 79t-79 33zM1293 761q-22 0 -40.5 -8t-29 -16t-23.5 -29.5t-17 -30.5t-17 -37l-132 -290q-10 -20 -10 -46 q0 -46 33 -79t79 -33q33 0 60.5 18t41.5 48l160 352q9 18 9 38q0 50 -32 81.5t-82 31.5zM128 1120q0 -22 8 -46l248 -650v-69l102 111q43 46 106 46h198l106 233v535q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5v-640h-64l-200 526q-14 37 -47 59.5t-73 22.5 q-53 0 -90.5 -37.5t-37.5 -90.5zM1180 -128q44 0 78.5 27t45.5 70l85 339q19 73 19 155v91l-141 -310q-17 -38 -53 -61t-78 -23q-53 0 -93.5 34.5t-48.5 86.5q-44 -57 -114 -57h-208v32h208q46 0 81 33t35 79t-31 79t-77 33h-296q-49 0 -82 -36l-126 -136v-308 q0 -53 37.5 -90.5t90.5 -37.5h668z" />
<glyph unicode="&#xf25c;" horiz-adv-x="1973" d="M857 992v-117q0 -13 -9.5 -22t-22.5 -9h-298v-812q0 -13 -9 -22.5t-22 -9.5h-135q-13 0 -22.5 9t-9.5 23v812h-297q-13 0 -22.5 9t-9.5 22v117q0 14 9 23t23 9h793q13 0 22.5 -9.5t9.5 -22.5zM1895 995l77 -961q1 -13 -8 -24q-10 -10 -23 -10h-134q-12 0 -21 8.5 t-10 20.5l-46 588l-189 -425q-8 -19 -29 -19h-120q-20 0 -29 19l-188 427l-45 -590q-1 -12 -10 -20.5t-21 -8.5h-135q-13 0 -23 10q-9 10 -9 24l78 961q1 12 10 20.5t21 8.5h142q20 0 29 -19l220 -520q10 -24 20 -51q3 7 9.5 24.5t10.5 26.5l221 520q9 19 29 19h141 q13 0 22 -8.5t10 -20.5z" />
<glyph unicode="&#xf25d;" horiz-adv-x="1792" d="M1042 833q0 88 -60 121q-33 18 -117 18h-123v-281h162q66 0 102 37t36 105zM1094 548l205 -373q8 -17 -1 -31q-8 -16 -27 -16h-152q-20 0 -28 17l-194 365h-155v-350q0 -14 -9 -23t-23 -9h-134q-14 0 -23 9t-9 23v960q0 14 9 23t23 9h294q128 0 190 -24q85 -31 134 -109 t49 -180q0 -92 -42.5 -165.5t-115.5 -109.5q6 -10 9 -16zM896 1376q-150 0 -286 -58.5t-234.5 -157t-157 -234.5t-58.5 -286t58.5 -286t157 -234.5t234.5 -157t286 -58.5t286 58.5t234.5 157t157 234.5t58.5 286t-58.5 286t-157 234.5t-234.5 157t-286 58.5zM1792 640 q0 -182 -71 -348t-191 -286t-286 -191t-348 -71t-348 71t-286 191t-191 286t-71 348t71 348t191 286t286 191t348 71t348 -71t286 -191t191 -286t71 -348z" />
<glyph unicode="&#xf25e;" horiz-adv-x="1792" d="M605 303q153 0 257 104q14 18 3 36l-45 82q-6 13 -24 17q-16 2 -27 -11l-4 -3q-4 -4 -11.5 -10t-17.5 -13t-23.5 -14.5t-28.5 -13.5t-33.5 -9.5t-37.5 -3.5q-76 0 -125 50t-49 127q0 76 48 125.5t122 49.5q37 0 71.5 -14t50.5 -28l16 -14q11 -11 26 -10q16 2 24 14l53 78 q13 20 -2 39q-3 4 -11 12t-30 23.5t-48.5 28t-67.5 22.5t-86 10q-148 0 -246 -96.5t-98 -240.5q0 -146 97 -241.5t247 -95.5zM1235 303q153 0 257 104q14 18 4 36l-45 82q-8 14 -25 17q-16 2 -27 -11l-4 -3q-4 -4 -11.5 -10t-17.5 -13t-23.5 -14.5t-28.5 -13.5t-33.5 -9.5 t-37.5 -3.5q-76 0 -125 50t-49 127q0 76 48 125.5t122 49.5q37 0 71.5 -14t50.5 -28l16 -14q11 -11 26 -10q16 2 24 14l53 78q13 20 -2 39q-3 4 -11 12t-30 23.5t-48.5 28t-67.5 22.5t-86 10q-147 0 -245.5 -96.5t-98.5 -240.5q0 -146 97 -241.5t247 -95.5zM896 1376 q-150 0 -286 -58.5t-234.5 -157t-157 -234.5t-58.5 -286t58.5 -286t157 -234.5t234.5 -157t286 -58.5t286 58.5t234.5 157t157 234.5t58.5 286t-58.5 286t-157 234.5t-234.5 157t-286 58.5zM896 1536q182 0 348 -71t286 -191t191 -286t71 -348t-71 -348t-191 -286t-286 -191 t-348 -71t-348 71t-286 191t-191 286t-71 348t71 348t191 286t286 191t348 71z" />
<glyph unicode="&#xf260;" horiz-adv-x="2048" d="M736 736l384 -384l-384 -384l-672 672l672 672l168 -168l-96 -96l-72 72l-480 -480l480 -480l193 193l-289 287zM1312 1312l672 -672l-672 -672l-168 168l96 96l72 -72l480 480l-480 480l-193 -193l289 -287l-96 -96l-384 384z" />
<glyph unicode="&#xf261;" horiz-adv-x="1792" d="M717 182l271 271l-279 279l-88 -88l192 -191l-96 -96l-279 279l279 279l40 -40l87 87l-127 128l-454 -454zM1075 190l454 454l-454 454l-271 -271l279 -279l88 88l-192 191l96 96l279 -279l-279 -279l-40 40l-87 -88zM1792 640q0 -182 -71 -348t-191 -286t-286 -191 t-348 -71t-348 71t-286 191t-191 286t-71 348t71 348t191 286t286 191t348 71t348 -71t286 -191t191 -286t71 -348z" />
<glyph unicode="&#xf262;" horiz-adv-x="2304" d="M651 539q0 -39 -27.5 -66.5t-65.5 -27.5q-39 0 -66.5 27.5t-27.5 66.5q0 38 27.5 65.5t66.5 27.5q38 0 65.5 -27.5t27.5 -65.5zM1805 540q0 -39 -27.5 -66.5t-66.5 -27.5t-66.5 27.5t-27.5 66.5t27.5 66t66.5 27t66.5 -27t27.5 -66zM765 539q0 79 -56.5 136t-136.5 57 t-136.5 -56.5t-56.5 -136.5t56.5 -136.5t136.5 -56.5t136.5 56.5t56.5 136.5zM1918 540q0 80 -56.5 136.5t-136.5 56.5q-79 0 -136 -56.5t-57 -136.5t56.5 -136.5t136.5 -56.5t136.5 56.5t56.5 136.5zM850 539q0 -116 -81.5 -197.5t-196.5 -81.5q-116 0 -197.5 82t-81.5 197 t82 196.5t197 81.5t196.5 -81.5t81.5 -196.5zM2004 540q0 -115 -81.5 -196.5t-197.5 -81.5q-115 0 -196.5 81.5t-81.5 196.5t81.5 196.5t196.5 81.5q116 0 197.5 -81.5t81.5 -196.5zM1040 537q0 191 -135.5 326.5t-326.5 135.5q-125 0 -231 -62t-168 -168.5t-62 -231.5 t62 -231.5t168 -168.5t231 -62q191 0 326.5 135.5t135.5 326.5zM1708 1110q-254 111 -556 111q-319 0 -573 -110q117 0 223 -45.5t182.5 -122.5t122 -183t45.5 -223q0 115 43.5 219.5t118 180.5t177.5 123t217 50zM2187 537q0 191 -135 326.5t-326 135.5t-326.5 -135.5 t-135.5 -326.5t135.5 -326.5t326.5 -135.5t326 135.5t135 326.5zM1921 1103h383q-44 -51 -75 -114.5t-40 -114.5q110 -151 110 -337q0 -156 -77 -288t-209 -208.5t-287 -76.5q-133 0 -249 56t-196 155q-47 -56 -129 -179q-11 22 -53.5 82.5t-74.5 97.5 q-80 -99 -196.5 -155.5t-249.5 -56.5q-155 0 -287 76.5t-209 208.5t-77 288q0 186 110 337q-9 51 -40 114.5t-75 114.5h365q149 100 355 156.5t432 56.5q224 0 421 -56t348 -157z" />
<glyph unicode="&#xf263;" horiz-adv-x="1280" d="M640 629q-188 0 -321 133t-133 320q0 188 133 321t321 133t321 -133t133 -321q0 -187 -133 -320t-321 -133zM640 1306q-92 0 -157.5 -65.5t-65.5 -158.5q0 -92 65.5 -157.5t157.5 -65.5t157.5 65.5t65.5 157.5q0 93 -65.5 158.5t-157.5 65.5zM1163 574q13 -27 15 -49.5 t-4.5 -40.5t-26.5 -38.5t-42.5 -37t-61.5 -41.5q-115 -73 -315 -94l73 -72l267 -267q30 -31 30 -74t-30 -73l-12 -13q-31 -30 -74 -30t-74 30q-67 68 -267 268l-267 -268q-31 -30 -74 -30t-73 30l-12 13q-31 30 -31 73t31 74l267 267l72 72q-203 21 -317 94 q-39 25 -61.5 41.5t-42.5 37t-26.5 38.5t-4.5 40.5t15 49.5q10 20 28 35t42 22t56 -2t65 -35q5 -4 15 -11t43 -24.5t69 -30.5t92 -24t113 -11q91 0 174 25.5t120 50.5l38 25q33 26 65 35t56 2t42 -22t28 -35z" />
<glyph unicode="&#xf264;" d="M927 956q0 -66 -46.5 -112.5t-112.5 -46.5t-112.5 46.5t-46.5 112.5t46.5 112.5t112.5 46.5t112.5 -46.5t46.5 -112.5zM1141 593q-10 20 -28 32t-47.5 9.5t-60.5 -27.5q-10 -8 -29 -20t-81 -32t-127 -20t-124 18t-86 36l-27 18q-31 25 -60.5 27.5t-47.5 -9.5t-28 -32 q-22 -45 -2 -74.5t87 -73.5q83 -53 226 -67l-51 -52q-142 -142 -191 -190q-22 -22 -22 -52.5t22 -52.5l9 -9q22 -22 52.5 -22t52.5 22l191 191q114 -115 191 -191q22 -22 52.5 -22t52.5 22l9 9q22 22 22 52.5t-22 52.5l-191 190l-52 52q141 14 225 67q67 44 87 73.5t-2 74.5 zM1092 956q0 134 -95 229t-229 95t-229 -95t-95 -229t95 -229t229 -95t229 95t95 229zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
<glyph unicode="&#xf265;" horiz-adv-x="1720" d="M1565 1408q65 0 110 -45.5t45 -110.5v-519q0 -176 -68 -336t-182.5 -275t-274 -182.5t-334.5 -67.5q-176 0 -335.5 67.5t-274.5 182.5t-183 275t-68 336v519q0 64 46 110t110 46h1409zM861 344q47 0 82 33l404 388q37 35 37 85q0 49 -34.5 83.5t-83.5 34.5q-47 0 -82 -33 l-323 -310l-323 310q-35 33 -81 33q-49 0 -83.5 -34.5t-34.5 -83.5q0 -51 36 -85l405 -388q33 -33 81 -33z" />
<glyph unicode="&#xf266;" horiz-adv-x="2304" d="M1494 -103l-295 695q-25 -49 -158.5 -305.5t-198.5 -389.5q-1 -1 -27.5 -0.5t-26.5 1.5q-82 193 -255.5 587t-259.5 596q-21 50 -66.5 107.5t-103.5 100.5t-102 43q0 5 -0.5 24t-0.5 27h583v-50q-39 -2 -79.5 -16t-66.5 -43t-10 -64q26 -59 216.5 -499t235.5 -540 q31 61 140 266.5t131 247.5q-19 39 -126 281t-136 295q-38 69 -201 71v50l513 -1v-47q-60 -2 -93.5 -25t-12.5 -69q33 -70 87 -189.5t86 -187.5q110 214 173 363q24 55 -10 79.5t-129 26.5q1 7 1 25v24q64 0 170.5 0.5t180 1t92.5 0.5v-49q-62 -2 -119 -33t-90 -81 l-213 -442q13 -33 127.5 -290t121.5 -274l441 1017q-14 38 -49.5 62.5t-65 31.5t-55.5 8v50l460 -4l1 -2l-1 -44q-139 -4 -201 -145q-526 -1216 -559 -1291h-49z" />
<glyph unicode="&#xf267;" horiz-adv-x="1792" d="M949 643q0 -26 -16.5 -45t-41.5 -19q-26 0 -45 16.5t-19 41.5q0 26 17 45t42 19t44 -16.5t19 -41.5zM964 585l350 581q-9 -8 -67.5 -62.5t-125.5 -116.5t-136.5 -127t-117 -110.5t-50.5 -51.5l-349 -580q7 7 67 62t126 116.5t136 127t117 111t50 50.5zM1611 640 q0 -201 -104 -371q-3 2 -17 11t-26.5 16.5t-16.5 7.5q-13 0 -13 -13q0 -10 59 -44q-74 -112 -184.5 -190.5t-241.5 -110.5l-16 67q-1 10 -15 10q-5 0 -8 -5.5t-2 -9.5l16 -68q-72 -15 -146 -15q-199 0 -372 105q1 2 13 20.5t21.5 33.5t9.5 19q0 13 -13 13q-6 0 -17 -14.5 t-22.5 -34.5t-13.5 -23q-113 75 -192 187.5t-110 244.5l69 15q10 3 10 15q0 5 -5.5 8t-10.5 2l-68 -15q-14 72 -14 139q0 206 109 379q2 -1 18.5 -12t30 -19t17.5 -8q13 0 13 12q0 6 -12.5 15.5t-32.5 21.5l-20 12q77 112 189 189t244 107l15 -67q2 -10 15 -10q5 0 8 5.5 t2 10.5l-15 66q71 13 134 13q204 0 379 -109q-39 -56 -39 -65q0 -13 12 -13q11 0 48 64q111 -75 187.5 -186t107.5 -241l-56 -12q-10 -2 -10 -16q0 -5 5.5 -8t9.5 -2l57 13q14 -72 14 -140zM1696 640q0 163 -63.5 311t-170.5 255t-255 170.5t-311 63.5t-311 -63.5 t-255 -170.5t-170.5 -255t-63.5 -311t63.5 -311t170.5 -255t255 -170.5t311 -63.5t311 63.5t255 170.5t170.5 255t63.5 311zM1792 640q0 -182 -71 -348t-191 -286t-286 -191t-348 -71t-348 71t-286 191t-191 286t-71 348t71 348t191 286t286 191t348 71t348 -71t286 -191 t191 -286t71 -348z" />
<glyph unicode="&#xf268;" horiz-adv-x="1792" d="M893 1536q240 2 451 -120q232 -134 352 -372l-742 39q-160 9 -294 -74.5t-185 -229.5l-276 424q128 159 311 245.5t383 87.5zM146 1131l337 -663q72 -143 211 -217t293 -45l-230 -451q-212 33 -385 157.5t-272.5 316t-99.5 411.5q0 267 146 491zM1732 962 q58 -150 59.5 -310.5t-48.5 -306t-153 -272t-246 -209.5q-230 -133 -498 -119l405 623q88 131 82.5 290.5t-106.5 277.5zM896 942q125 0 213.5 -88.5t88.5 -213.5t-88.5 -213.5t-213.5 -88.5t-213.5 88.5t-88.5 213.5t88.5 213.5t213.5 88.5z" />
<glyph unicode="&#xf269;" horiz-adv-x="1792" d="M903 -256q-283 0 -504.5 150.5t-329.5 398.5q-58 131 -67 301t26 332.5t111 312t179 242.5l-11 -281q11 14 68 15.5t70 -15.5q42 81 160.5 138t234.5 59q-54 -45 -119.5 -148.5t-58.5 -163.5q25 -8 62.5 -13.5t63 -7.5t68 -4t50.5 -3q15 -5 9.5 -45.5t-30.5 -75.5 q-5 -7 -16.5 -18.5t-56.5 -35.5t-101 -34l15 -189l-139 67q-18 -43 -7.5 -81.5t36 -66.5t65.5 -41.5t81 -6.5q51 9 98 34.5t83.5 45t73.5 17.5q61 -4 89.5 -33t19.5 -65q-1 -2 -2.5 -5.5t-8.5 -12.5t-18 -15.5t-31.5 -10.5t-46.5 -1q-60 -95 -144.5 -135.5t-209.5 -29.5 q74 -61 162.5 -82.5t168.5 -6t154.5 52t128 87.5t80.5 104q43 91 39 192.5t-37.5 188.5t-78.5 125q87 -38 137 -79.5t77 -112.5q15 170 -57.5 343t-209.5 284q265 -77 412 -279.5t151 -517.5q2 -127 -40.5 -255t-123.5 -238t-189 -196t-247.5 -135.5t-288.5 -49.5z" />
<glyph unicode="&#xf26a;" d="M768 -92q77 0 139.5 63t100.5 166t59 234.5t21 268.5t-21 268.5t-59 234.5t-100.5 166t-139.5 63t-139.5 -63t-100.5 -166t-59 -234.5t-21 -268.5t21 -268.5t59 -234.5t100.5 -166t139.5 -63zM768 -256q-184 0 -333 77t-240 203t-141 287t-50 329t50 329t141 287t240 203 t333 77q148 0 274 -50t214.5 -136t151.5 -201t92.5 -244t29.5 -265t-29.5 -265t-92.5 -244t-151.5 -201t-214.5 -136t-274 -50z" />
<glyph unicode="&#xf26b;" horiz-adv-x="1792" d="M716 -69q-143 35 -261.5 114t-197.5 191q-139 -300 -17 -398q26 -21 85 -24.5t127.5 9.5t141 41.5t122.5 66.5zM693 762h452q0 108 -61.5 169t-168.5 61q-103 0 -162.5 -62.5t-59.5 -167.5zM1724 1137h-34q26 102 22.5 170t-25 110t-63.5 57t-93.5 11t-115 -26.5 t-128.5 -56.5t-134 -79q129 -37 238.5 -113.5t185 -179t110 -231.5t15.5 -262h-1005q0 -60 10 -106t34 -85t69.5 -60t112.5 -21q87 0 142.5 44t72.5 122h540q-71 -230 -281.5 -377t-477.5 -147q-83 0 -159 15q-35 -40 -151 -94t-248 -78t-219 35q-78 60 -100 159t7 214 t88 242t143.5 248t173.5 226.5t177.5 183.5t156.5 112v24q-120 -37 -258.5 -137.5t-240.5 -207t-159 -195.5q4 106 34 201t80 169t118 135.5t147.5 100.5t168 65.5t180.5 29.5t185 -8q310 186 503 189h7q57 0 103 -18q80 -30 98 -132.5t-30 -248.5z" />
<glyph unicode="&#xf26c;" horiz-adv-x="2048" d="M1792 288v960q0 13 -9.5 22.5t-22.5 9.5h-1600q-13 0 -22.5 -9.5t-9.5 -22.5v-960q0 -13 9.5 -22.5t22.5 -9.5h1600q13 0 22.5 9.5t9.5 22.5zM1920 1248v-960q0 -66 -47 -113t-113 -47h-736v-128h352q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-832q-14 0 -23 9t-9 23 v64q0 14 9 23t23 9h352v128h-736q-66 0 -113 47t-47 113v960q0 66 47 113t113 47h1600q66 0 113 -47t47 -113z" />
<glyph unicode="&#xf26d;" horiz-adv-x="1792" d="M138 1408h197q-70 -64 -126 -149q-36 -56 -59 -115t-30 -125.5t-8.5 -120t10.5 -132t21 -126t28 -136.5q4 -19 6 -28q51 -238 81 -329q57 -171 152 -275h-272q-48 0 -82 34t-34 82v1304q0 48 34 82t82 34zM1346 1408h308q48 0 82 -34t34 -82v-1304q0 -48 -34 -82t-82 -34 h-178q212 210 196 565l-469 -101q-2 -45 -12 -82t-31 -72t-59.5 -59.5t-93.5 -36.5q-123 -26 -199 40q-32 27 -53 61t-51.5 129t-64.5 258q-35 163 -45.5 263t-5.5 139t23 77q20 41 62.5 73t102.5 45q45 12 83.5 6.5t67 -17t54 -35t43 -48t34.5 -56.5l468 100 q-68 175 -180 287z" />
<glyph unicode="&#xf26e;" horiz-adv-x="2304" d="M1391 390v0l-1 1q-15 18 -34.5 37.5t-62.5 57.5t-93.5 62t-95.5 24q-48 0 -83 -21.5t-51 -54t-23 -59t-7 -47.5v0v0q0 -21 7 -48t23 -59t51 -53.5t83 -21.5q45 0 95.5 24t94 62.5t62 57t34.5 37.5zM2103 390q0 21 -7 47.5t-23 59t-51 54t-83 21.5q-45 0 -95.5 -24 t-94 -62.5t-62 -57t-34.5 -37.5l-1 -1v0v0l1 -1q15 -18 34.5 -37.5t62.5 -57.5t93.5 -62t95.5 -24q48 0 83 21.5t51 53.5t23 59t7 48zM2304 393q0 -69 -24 -137.5t-68 -126t-116 -93.5t-159 -36q-68 0 -134 24t-113.5 58.5t-84.5 69.5t-59.5 59t-25.5 24t-22.5 -24 t-54.5 -58.5t-81.5 -69.5t-115 -59t-143.5 -24q-65 0 -123.5 22.5t-96.5 54t-66.5 66.5t-41 59.5t-12.5 32.5q0 -8 -8.5 -26.5t-25 -45.5t-47 -55t-69 -52.5t-96.5 -40t-125 -15.5q-71 0 -130 15.5t-98.5 39.5t-70.5 56.5t-48 63.5t-27.5 63.5t-14 54t-3.5 36.5h217 q0 -55 49 -107.5t126 -52.5q79 0 134.5 67t55.5 148q0 80 -52 136.5t-138 56.5q-5 0 -13 -0.5t-31 -5t-43 -12t-42 -24.5t-34 -40h-195l102 583h602v-174h-445q-27 -159 -41 -248q4 0 16.5 13t31.5 28.5t65 28.5t108 13t114 -20.5t82.5 -49.5t51.5 -58.5t31 -50t11 -20.5 t13 25t36.5 60.5t60.5 71.5t97 61t133 25t140.5 -25t115.5 -60.5t83.5 -71.5t56.5 -61t21 -25q2 0 22 25t56 60.5t83.5 71.5t115.5 61t140 25q92 0 164.5 -35t115.5 -93t65 -125t22 -137z" />
<glyph unicode="&#xf270;" horiz-adv-x="1792" d="M1551 60q15 6 26 3t11 -17.5t-15 -33.5q-13 -16 -44 -43.5t-95.5 -68t-141 -74t-188 -58t-229.5 -24.5q-119 0 -238 31t-209 76.5t-172.5 104t-132.5 105t-84 87.5q-8 9 -10 16.5t1 12t8 7t11.5 2t11.5 -4.5q192 -117 300 -166q389 -176 799 -90q190 40 391 135z M1758 175q11 -16 2.5 -69.5t-28.5 -102.5q-34 -83 -85 -124q-17 -14 -26 -9t0 24q21 45 44.5 121.5t6.5 98.5q-5 7 -15.5 11.5t-27 6t-29.5 2.5t-35 0t-31.5 -2t-31 -3t-22.5 -2q-6 -1 -13 -1.5t-11 -1t-8.5 -1t-7 -0.5h-5.5h-4.5t-3 0.5t-2 1.5l-1.5 3q-6 16 47 40t103 30 q46 7 108 1t76 -24zM1364 618q0 -31 13.5 -64t32 -58t37.5 -46t33 -32l13 -11l-227 -224q-40 37 -79 75.5t-58 58.5l-19 20q-11 11 -25 33q-38 -59 -97.5 -102.5t-127.5 -63.5t-140 -23t-137.5 21t-117.5 65.5t-83 113t-31 162.5q0 84 28 154t72 116.5t106.5 83t122.5 57 t130 34.5t119.5 18.5t99.5 6.5v127q0 65 -21 97q-34 53 -121 53q-6 0 -16.5 -1t-40.5 -12t-56 -29.5t-56 -59.5t-48 -96l-294 27q0 60 22 119t67 113t108 95t151.5 65.5t190.5 24.5q100 0 181 -25t129.5 -61.5t81 -83t45 -86t12.5 -73.5v-589zM692 597q0 -86 70 -133 q66 -44 139 -22q84 25 114 123q14 45 14 101v162q-59 -2 -111 -12t-106.5 -33.5t-87 -71t-32.5 -114.5z" />
<glyph unicode="&#xf271;" horiz-adv-x="1792" d="M1536 1280q52 0 90 -38t38 -90v-1280q0 -52 -38 -90t-90 -38h-1408q-52 0 -90 38t-38 90v1280q0 52 38 90t90 38h128v96q0 66 47 113t113 47h64q66 0 113 -47t47 -113v-96h384v96q0 66 47 113t113 47h64q66 0 113 -47t47 -113v-96h128zM1152 1376v-288q0 -14 9 -23t23 -9 h64q14 0 23 9t9 23v288q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23zM384 1376v-288q0 -14 9 -23t23 -9h64q14 0 23 9t9 23v288q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23zM1536 -128v1024h-1408v-1024h1408zM896 448h224q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-224 v-224q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v224h-224q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h224v224q0 14 9 23t23 9h64q14 0 23 -9t9 -23v-224z" />
<glyph unicode="&#xf272;" horiz-adv-x="1792" d="M1152 416v-64q0 -14 -9 -23t-23 -9h-576q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h576q14 0 23 -9t9 -23zM128 -128h1408v1024h-1408v-1024zM512 1088v288q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-288q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM1280 1088v288q0 14 -9 23 t-23 9h-64q-14 0 -23 -9t-9 -23v-288q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM1664 1152v-1280q0 -52 -38 -90t-90 -38h-1408q-52 0 -90 38t-38 90v1280q0 52 38 90t90 38h128v96q0 66 47 113t113 47h64q66 0 113 -47t47 -113v-96h384v96q0 66 47 113t113 47h64q66 0 113 -47 t47 -113v-96h128q52 0 90 -38t38 -90z" />
<glyph unicode="&#xf273;" horiz-adv-x="1792" d="M1111 151l-46 -46q-9 -9 -22 -9t-23 9l-188 189l-188 -189q-10 -9 -23 -9t-22 9l-46 46q-9 9 -9 22t9 23l189 188l-189 188q-9 10 -9 23t9 22l46 46q9 9 22 9t23 -9l188 -188l188 188q10 9 23 9t22 -9l46 -46q9 -9 9 -22t-9 -23l-188 -188l188 -188q9 -10 9 -23t-9 -22z M128 -128h1408v1024h-1408v-1024zM512 1088v288q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-288q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM1280 1088v288q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-288q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM1664 1152v-1280 q0 -52 -38 -90t-90 -38h-1408q-52 0 -90 38t-38 90v1280q0 52 38 90t90 38h128v96q0 66 47 113t113 47h64q66 0 113 -47t47 -113v-96h384v96q0 66 47 113t113 47h64q66 0 113 -47t47 -113v-96h128q52 0 90 -38t38 -90z" />
<glyph unicode="&#xf274;" horiz-adv-x="1792" d="M1303 572l-512 -512q-10 -9 -23 -9t-23 9l-288 288q-9 10 -9 23t9 22l46 46q9 9 22 9t23 -9l220 -220l444 444q10 9 23 9t22 -9l46 -46q9 -9 9 -22t-9 -23zM128 -128h1408v1024h-1408v-1024zM512 1088v288q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-288q0 -14 9 -23 t23 -9h64q14 0 23 9t9 23zM1280 1088v288q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-288q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM1664 1152v-1280q0 -52 -38 -90t-90 -38h-1408q-52 0 -90 38t-38 90v1280q0 52 38 90t90 38h128v96q0 66 47 113t113 47h64q66 0 113 -47 t47 -113v-96h384v96q0 66 47 113t113 47h64q66 0 113 -47t47 -113v-96h128q52 0 90 -38t38 -90z" />
<glyph unicode="&#xf275;" horiz-adv-x="1792" d="M448 1536q26 0 45 -19t19 -45v-891l536 429q17 14 40 14q26 0 45 -19t19 -45v-379l536 429q17 14 40 14q26 0 45 -19t19 -45v-1152q0 -26 -19 -45t-45 -19h-1664q-26 0 -45 19t-19 45v1664q0 26 19 45t45 19h384z" />
<glyph unicode="&#xf276;" horiz-adv-x="1024" d="M512 448q66 0 128 15v-655q0 -26 -19 -45t-45 -19h-128q-26 0 -45 19t-19 45v655q61 -15 128 -15zM512 1536q212 0 362 -150t150 -362t-150 -362t-362 -150t-362 150t-150 362t150 362t362 150zM512 1312q14 0 23 9t9 23t-9 23t-23 9q-146 0 -249 -103t-103 -249 q0 -14 9 -23t23 -9t23 9t9 23q0 119 84.5 203.5t203.5 84.5z" />
<glyph unicode="&#xf277;" horiz-adv-x="1792" d="M1745 1239q10 -10 10 -23t-10 -23l-141 -141q-28 -28 -68 -28h-1344q-26 0 -45 19t-19 45v256q0 26 19 45t45 19h576v64q0 26 19 45t45 19h128q26 0 45 -19t19 -45v-64h512q40 0 68 -28zM768 320h256v-512q0 -26 -19 -45t-45 -19h-128q-26 0 -45 19t-19 45v512zM1600 768 q26 0 45 -19t19 -45v-256q0 -26 -19 -45t-45 -19h-1344q-40 0 -68 28l-141 141q-10 10 -10 23t10 23l141 141q28 28 68 28h512v192h256v-192h576z" />
<glyph unicode="&#xf278;" horiz-adv-x="2048" d="M2020 1525q28 -20 28 -53v-1408q0 -20 -11 -36t-29 -23l-640 -256q-24 -11 -48 0l-616 246l-616 -246q-10 -5 -24 -5q-19 0 -36 11q-28 20 -28 53v1408q0 20 11 36t29 23l640 256q24 11 48 0l616 -246l616 246q32 13 60 -6zM736 1390v-1270l576 -230v1270zM128 1173 v-1270l544 217v1270zM1920 107v1270l-544 -217v-1270z" />
<glyph unicode="&#xf279;" horiz-adv-x="1792" d="M512 1536q13 0 22.5 -9.5t9.5 -22.5v-1472q0 -20 -17 -28l-480 -256q-7 -4 -15 -4q-13 0 -22.5 9.5t-9.5 22.5v1472q0 20 17 28l480 256q7 4 15 4zM1760 1536q13 0 22.5 -9.5t9.5 -22.5v-1472q0 -20 -17 -28l-480 -256q-7 -4 -15 -4q-13 0 -22.5 9.5t-9.5 22.5v1472 q0 20 17 28l480 256q7 4 15 4zM640 1536q8 0 14 -3l512 -256q18 -10 18 -29v-1472q0 -13 -9.5 -22.5t-22.5 -9.5q-8 0 -14 3l-512 256q-18 10 -18 29v1472q0 13 9.5 22.5t22.5 9.5z" />
<glyph unicode="&#xf27a;" horiz-adv-x="1792" d="M640 640q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1024 640q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1408 640q0 53 -37.5 90.5t-90.5 37.5 t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1792 640q0 -174 -120 -321.5t-326 -233t-450 -85.5q-110 0 -211 18q-173 -173 -435 -229q-52 -10 -86 -13q-12 -1 -22 6t-13 18q-4 15 20 37q5 5 23.5 21.5t25.5 23.5t23.5 25.5t24 31.5t20.5 37 t20 48t14.5 57.5t12.5 72.5q-146 90 -229.5 216.5t-83.5 269.5q0 174 120 321.5t326 233t450 85.5t450 -85.5t326 -233t120 -321.5z" />
<glyph unicode="&#xf27b;" horiz-adv-x="1792" d="M640 640q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1024 640q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1408 640q0 -53 -37.5 -90.5t-90.5 -37.5 t-90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM896 1152q-204 0 -381.5 -69.5t-282 -187.5t-104.5 -255q0 -112 71.5 -213.5t201.5 -175.5l87 -50l-27 -96q-24 -91 -70 -172q152 63 275 171l43 38l57 -6q69 -8 130 -8q204 0 381.5 69.5t282 187.5 t104.5 255t-104.5 255t-282 187.5t-381.5 69.5zM1792 640q0 -174 -120 -321.5t-326 -233t-450 -85.5q-70 0 -145 8q-198 -175 -460 -242q-49 -14 -114 -22h-5q-15 0 -27 10.5t-16 27.5v1q-3 4 -0.5 12t2 10t4.5 9.5l6 9t7 8.5t8 9q7 8 31 34.5t34.5 38t31 39.5t32.5 51 t27 59t26 76q-157 89 -247.5 220t-90.5 281q0 130 71 248.5t191 204.5t286 136.5t348 50.5t348 -50.5t286 -136.5t191 -204.5t71 -248.5z" />
<glyph unicode="&#xf27c;" horiz-adv-x="1024" d="M512 345l512 295v-591l-512 -296v592zM0 640v-591l512 296zM512 1527v-591l-512 -296v591zM512 936l512 295v-591z" />
<glyph unicode="&#xf27d;" horiz-adv-x="1792" d="M1709 1018q-10 -236 -332 -651q-333 -431 -562 -431q-142 0 -240 263q-44 160 -132 482q-72 262 -157 262q-18 0 -127 -76l-77 98q24 21 108 96.5t130 115.5q156 138 241 146q95 9 153 -55.5t81 -203.5q44 -287 66 -373q55 -249 120 -249q51 0 154 161q101 161 109 246 q13 139 -109 139q-57 0 -121 -26q120 393 459 382q251 -8 236 -326z" />
<glyph unicode="&#xf27e;" d="M0 1408h1536v-1536h-1536v1536zM1085 293l-221 631l221 297h-634l221 -297l-221 -631l317 -304z" />
<glyph unicode="&#xf280;" d="M0 1408h1536v-1536h-1536v1536zM908 1088l-12 -33l75 -83l-31 -114l25 -25l107 57l107 -57l25 25l-31 114l75 83l-12 33h-95l-53 96h-32l-53 -96h-95zM641 925q32 0 44.5 -16t11.5 -63l174 21q0 55 -17.5 92.5t-50.5 56t-69 25.5t-85 7q-133 0 -199 -57.5t-66 -182.5v-72 h-96v-128h76q20 0 20 -8v-382q0 -14 -5 -20t-18 -7l-73 -7v-88h448v86l-149 14q-6 1 -8.5 1.5t-3.5 2.5t-0.5 4t1 7t0.5 10v387h191l38 128h-231q-6 0 -2 6t4 9v80q0 27 1.5 40.5t7.5 28t19.5 20t36.5 5.5zM1248 96v86l-54 9q-7 1 -9.5 2.5t-2.5 3t1 7.5t1 12v520h-275 l-23 -101l83 -22q23 -7 23 -27v-370q0 -14 -6 -18.5t-20 -6.5l-70 -9v-86h352z" />
<glyph unicode="&#xf281;" horiz-adv-x="1792" />
<glyph unicode="&#xf282;" horiz-adv-x="1792" />
<glyph unicode="&#xf283;" horiz-adv-x="1792" />
<glyph unicode="&#xf284;" horiz-adv-x="1792" />
<glyph unicode="&#xf285;" horiz-adv-x="1792" />
<glyph unicode="&#xf286;" horiz-adv-x="1792" />
<glyph unicode="&#xf287;" horiz-adv-x="1792" />
<glyph unicode="&#xf288;" horiz-adv-x="1792" />
<glyph unicode="&#xf289;" horiz-adv-x="1792" />
<glyph unicode="&#xf28a;" horiz-adv-x="1792" />
<glyph unicode="&#xf28b;" horiz-adv-x="1792" />
<glyph unicode="&#xf28c;" horiz-adv-x="1792" />
<glyph unicode="&#xf28d;" horiz-adv-x="1792" />
<glyph unicode="&#xf28e;" horiz-adv-x="1792" />
<glyph unicode="&#xf500;" horiz-adv-x="1792" />
</font>
</defs></svg>                                                                                                                                                                                                                                                                                                                                                                                    assets/css/tlpteam copy.css                                                                         0000705                 00000047306 15242037122 0011757 0                                                                                                    ustar 00                                                                                                                                                                                                                                                       figure{ margin: 0px;}
.tlp-round-picture img{
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;  
}
.tlp-position{ font-weight: 400;}
.margin-bottom{ margin-bottom: 30px;}
/* progress bar */
.skill-prog {
    height: 4px;
    margin-bottom: 4px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: content-box;
    -moz-box-sizing: content-box;
    -webkit-box-sizing: content-box;
}
.skill-prog .fill {
    height:100%;
    -webkit-animation: 400ms;
    background-color: #00afd1;
    border-radius: 4px;
}
.tlp-team-skill{ font-size: 90%; padding: 0px 0px 15px 0px;}
/*********** Social Icon ***************/
.social-icons ul{margin-left: 0px; padding-left: 0px;  }
.social-icons ul li{ list-style: none; display: inline-block; padding-right: 5px; }
.social-icons ul li .fa{ background:#333; width: 28px; height: 28px; text-align: center; vertical-align: middle; padding: 7px 0px }
.social-icons li:hover .fa-facebook{ background: #3b5999; color: #fff; }
.social-icons li:hover .fa-twitter{ background: #3aa9e0; color: #fff; }
.social-icons li:hover .fa-linkedin{ background: #0080b1; color: #fff; }
.social-icons li:hover .fa-youtube{ background: #cd322d; color: #fff; }
.social-icons li:hover .fa-vimeo{ background: #44bbff; color: #fff; }
.social-icons li:hover .fa-instagram{ background: #3e729a; color: #fff; }

.tlp-round-picture .social-icons ul li .fa{ -webkit-border-radius: 50%; -moz-border-radius: 50%; border-radius: 50%;}
/******************** Layout 1 ***********************/
.tlp-team{ position: relative;}
.tlp-team-layout1 .tlp-content-layout1 {background: #f12929;color: #ffffff; padding: 10px 0; }
.tlp-team-layout1 .single-team-area h3 { padding: 0; margin: 0 0 10px 0; }
.single-team-area img { width: 100%; }
.single-team-area .single-team { position: relative; overflow: hidden; }  
.tlp-team-layout1 .single-team-area .overlay {position: absolute;bottom: 0;left: 0;height: 100%;width: 100%;color: #fff;
  background-color: rgba(217, 35, 45, 0.85);
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  text-align: center;
  }    
.tlp-team-layout1 .single-team-area .overlay,
.tlp-team-layout1 .single-team-area .overlay-element h4,
.tlp-team-layout1 .single-team-area .detile-popup {    
  -moz-transform: scale(0.5);
  -webkit-transform: scale(0.5);
  -o-transform: scale(0.5);
  -ms-transform: scale(0.5);
  transform: scale(0.5);
  opacity: 0;
  }
.tlp-team-layout1 .single-team-area:hover .overlay,
.tlp-team-layout1 .single-team-area:hover .overlay-element h4,
.tlp-team-layout1 .single-team-area:hover .detile-popup {
   opacity: 1;
  -moz-transform: scale(1);
  -webkit-transform: scale(1);
  -o-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  }
    
.tlp-team-layout1 .short-bio{ padding: 10px 0px 0px;}
.tlp-team-layout1 .overlay .social-icons { text-align: center; padding: 50% 0; }
.tlp-team-layout1 .overlay .social-icons1 { text-align: center; padding: 20% 0; }
.tlp-team-layout1 .overlay .social-icons ul { margin: 0; padding: 0; list-style: none; text-align: center; }

.tlp-team-layout1 .single-team:hover .overlay { top: 0; }
.single-team-area:hover > .single-team:before { display: none; }

.overlay-element {text-align: center; color: #ffffff;}

.overlay-element .detail-link i.fa {color: #ffffff;font-size: 20px;margin-top: 45%;z-index: 9999;padding:4px 6px;}
.overlay-element .detail-link:hover i.fa { background: #fff; color:#ed344a;-webkit-border-radius: 50%; -moz-border-radius: 50%;
  border-radius: 50%;  }
.tlp-team-layout1 .contact-info { margin: 0px; padding: 0px 0px 10px 0px; }
.tlp-team-layout1 .contact-info ul{ margin: 0px; padding: 0px;}
.tlp-team-layout1 .contact-info ul li{ margin: 0px; padding: 0px; list-style: none;}
.tlp-team-layout1 .contact-info i{ padding-right: 8px;}

/************************ End Layout 1 ******************/
/************************ Start Layout 2 ******************/
.tlp-team-layout2 .tlp-content h3{ margin-top: 10px; }

.tlp-team-layout2 .short-bio{ padding: 8px 0px;}
.tlp-team-layout2 .contact-info { margin: 0px; padding: 0px 0px 10px 0px; }
.tlp-team-layout2 .contact-info ul{ margin: 0px; padding: 0px;}
.tlp-team-layout2 .contact-info ul li{ margin: 0px; padding: 0px; list-style: none;}
.tlp-team-layout2 .contact-info i{ padding-right: 8px;}
/************************ End Layout 2 ********************/

/************************ Start Layout 3 ******************/
.tlp-team-layout3 .tlp-content{ background: none; padding: 10px 0px 10px; }
.tlp-team-layout3 .single-team-area  h3{ margin-top: 0px; padding-top: 10px; }
.tlp-team-layout3 .short-bio{ text-align: center; padding: 0px 0px 0px; }
.tlp-team-layout3 .contact-info { margin: 0px; padding: 0px 0px 10px 0px; }
.tlp-team-layout3 .contact-info ul{ margin: 0px; padding: 0px;}
.tlp-team-layout3 .contact-info ul li{ margin: 0px; padding: 0px; list-style: none;}
.tlp-team-layout3 .contact-info i{ padding-right: 8px;}
/************************ End Layout 3 ********************/
/************************ Start Layout 4 ******************/
.tlp-team-layout4 .single-team-area h3 a span,.tlp-team-layout4 .single-team-area h3 { padding: 0;  text-align: center; color: #fff;}
.tlp-team-layout4 .tlp-position{ color: #fff; padding-bottom: 10px; display: inline;}
.tlp-team-layout4 .short-bio{ text-align: center; padding: 0px 0px 0px; line-height: 20px; padding-top: 10px;}
.tlp-team-layout4 .single-team-area .overlay {position: absolute;bottom: 0;left: 0;height: 100%;width: 100%;color: #fff;
  background-color: rgba(217, 35, 45, 0.85);
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  text-align: center;
}
.tlp-team-layout4 .single-team-area .overlay-element { text-align: center; padding: 20px;}
.tlp-team-layout4 .single-team-area .overlay,
.tlp-team-layout4 .single-team-area .overlay-element h4,
.tlp-team-layout4 .single-team-area .detile-popup { 
  -moz-transform: scale(0.5);
  -webkit-transform: scale(0.5);
  -o-transform: scale(0.5);
  -ms-transform: scale(0.5);
  transform: scale(0.5);
  opacity: 0;
}
.tlp-team-layout4 .single-team-area:hover .overlay,
.tlp-team-layout4 .single-team-area:hover .overlay-element h4,
.tlp-team-layout4 .single-team-area:hover .detile-popup { 
  opacity: 1;
  -moz-transform: scale(1);
  -webkit-transform: scale(1);
  -o-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
.tlp-round-picture .overlay{-webkit-border-radius: 50%; -moz-border-radius: 50%; border-radius: 50%; padding-top: 10%;}
.tlp-team-layout4 .tlp-round-picture:hover .overlay {top: 0; -webkit-border-radius: 50%; -moz-border-radius: 50%; border-radius: 50%;}
.tlp-team-layout4 .tlp-round-picture .tlp-content{ background: none; padding-top: 15%;}
.tlp-team-layout4 .tlp-round-picture .overlay .social-icons { text-align: center; margin: 0px; padding:0px; }
/************************ End Layout 4 ********************/

/************************ Start Layout 5 ******************/
.tlp-team-layout5 .tlp-content{ background: none; padding-top: 10%;}
.tlp-team-layout5 .table tr td{ vertical-align: middle;}
.tlp-team-layout5 .table>thead>tr>th, .tlp-team-layout5 .table>tbody>tr>th, .tlp-team-layout5 .table>thead>tr>td, .table>tbody>tr>td {vertical-align: middle !important;}

/************************ End Layout 5 ********************/

/************************ Start Layout 6 ******************/
.tlp-team-layout6 .team-item h3 a{ color: #fff;}
.tlp-team-layout6 .team-item .overlay .tlp-position{ color: #fff; text-align: center;}
.tlp-team-layout6 .tlp-content{ background: none; padding-top: 24px;}
.isotop-container .team-item{ overflow: hidden;}
.team-item .overlay .short-bio{ padding-top: 14px; line-height: 20px;}

.isotop-container  .team-item .overlay {position: absolute;bottom: 0;left: 0;height: 100%;width: 100%;color: #fff;
  background-color: rgba(217, 35, 45, 0.85);
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  text-align: center;
  padding: 20px;
}
.isotop-container .team-item .overlay,
.isotop-container .team-item .overlay-element h4,
.isotop-container .team-item .detile-popup {    
  -moz-transform: scale(0.5);
  -webkit-transform: scale(0.5);
  -o-transform: scale(0.5);
  -ms-transform: scale(0.5);
  transform: scale(0.5);
  opacity: 0;
}
.isotop-container  .team-item:hover .overlay,
.isotop-container  .team-item:hover .overlay-element h4,
.isotop-container  .team-item:hover .detile-popup {
  opacity: 1;
  -moz-transform: scale(1);
  -webkit-transform: scale(1);
  -o-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
.isotop-container  .button-group{text-align: center;padding-bottom: 20px;}
.isotop-container .button-group button {background: #333; border:none;color: #fff;margin: 5px;padding: 3px 10px;
}
.isotop-container .button-group button:hover{
    background: #000000;
}

.tlp-team-layout6 .social-icons{ padding-top: 15px;}
/*********************** End Layout 6 ********************/
/*********************** Start Layout 7 ********************/
.tlp-team-layout7 .tlp-content{ background: none; padding-top: 0px;}
.tlp-team-layout7 .team-item { margin-right: 30px; margin-bottom: 15px;  max-width: 250px;}
.tlp-team-layout7 .contact-info { margin: 0px; padding: 0px 0px 10px 0px; }
.tlp-team-layout7 .contact-info ul{ margin: 0px; padding: 0px;}
.tlp-team-layout7 .contact-info ul li{ margin: 0px; padding: 0px; list-style: none;}
.tlp-team-layout7 .contact-info i{ padding-right: 8px;}
/*********************** End Layout 7 ********************/

/*********************** Start Layout 8 ********************/
.tlp-team-layout8 .single-team-area h3 a span{ color: #fff;}
.tlp-team-layout8 .tlp-position{ color: #fff; text-align: left;}
.tlp-team-layout8 .short-bio{ padding-top: 14px; line-height: 20px; text-align: left;}
.tlp-team-layout8 .tlp-img-block{padding: 0;}
.tlp-team-layout8 .tlp-info-block{padding: 0;background: #fd662d;color: #fff;position: relative;}
.tlp-team-layout8 .tlp-right-arrow:after{border-color: transparent #fd642d;border-style: solid;border-width: 0 34px 34px 0;content: " ";display: block;
    height: 0;left: -34px;position: absolute;top: 50%;width: 0; }
.tlp-team-layout8 .tlp-left-arrow:after{  border-color: #fd642d transparent transparent;border-style: solid;border-width: 34px 34px 0 0;
    content: " ";display: block;height: 0;position: absolute;right: -34px;top: 50%;width: 0;z-index: 2;}
.tlp-team-layout8 .tlp-info-block article{padding-left: 15px; padding-right: 15px; }
.tlp-team-layout8 .tlp-img.tlp-single-team {height: 100%;width: 100%;}
.tlp-team-layout8 .tlp-img-responsive {width: 100%;height: 100%;}
.tlp-team-layout8 .contact-info { margin: 0px; padding: 0px 0px 10px 0px; }
.tlp-team-layout8 .contact-info ul{ margin: 0px; padding: 0px; list-style: none;}
.tlp-team-layout8 .contact-info ul li{ margin: 0px; padding: 0px; list-style: none;}
.tlp-team-layout8 .contact-info i{ padding-right: 8px;}
.tlp-team-layout8 .margin-bottom{ margin-bottom:0px !important; }

/*********************** End Layout 8 ********************/

/*********************** Start Layout 9 ********************/
.tlp-team-layout9 a {color: #fff;}
.tlp-team-layout9 .social-icons {bottom: 2px;left: 0;position: absolute;right: 0;}
.tlp-team-layout9 .social-icons ul { margin: 0px; padding: 0px;}
.tlp-team-layout9 .social-icons ul li {list-style: none;display: inline-block;margin: 2px;border: 1px solid #fff; width: 24px; text-align: center;}
.tlp-team-layout9 .social-icons ul li a:hover {background: #fff;}
.tlp-team-layout9 .tlp-grid-9 {position: relative;margin: 0 auto;max-width: 1000px;list-style: none;text-align: center;overflow: hidden;}
.tlp-team-layout9 .tlp-grid-9 figure {position: relative;overflow: hidden;margin: 10px 1%;background: #3085a3;text-align: center;cursor: pointer;
}
.tlp-team-layout9 .tlp-grid-9 figure img {position: relative;display: block;min-height: 100%;max-width: 100%;opacity: 0.8;
  width: 100%;
}
.tlp-team-layout9 .tlp-grid-9 figure figcaption {color: #fff;text-transform: uppercase;font-size: 1.25em;-webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.tlp-team-layout9 .tlp-grid-9 figure figcaption::before,
.tlp-team-layout9 .tlp-grid-9 figure figcaption::after {pointer-events: none;}
.tlp-team-layout9 .tlp-grid-9 figure figcaption,
.tlp-team-layout9 .tlp-grid-9 figure figcaption > a {position: absolute;top: 0;left: 0;width: 100%;height: 100%;}
.tlp-team-layout9 .tlp-grid-9 figure figcaption > a {z-index: 1000;text-indent: 200%;white-space: nowrap;font-size: 0;opacity: 0;}
.tlp-team-layout9 .tlp-grid-9 figure span.tlp-position {margin: 0;}
.tlp-team-layout9 .tlp-grid-9 figure span.tlp-position {letter-spacing: 1px;font-size: 68.5%;padding: 0 30px;}
.tlp-team-layout9 figure.effect-bubba {background: #9e5406;}
.tlp-team-layout9 figure.effect-bubba img {opacity: 0.7;-webkit-transition: opacity 0.35s;transition: opacity 0.35s;}
.tlp-team-layout9 figure.effect-bubba:hover img {
  opacity: 0.4;
}
.tlp-team-layout9 figure.effect-bubba:hover .tpl-social {
  -webkit-transition: -webkit-transform 0.35s;
  transition: transform 0.35s;
  -webkit-transform: translate3d(0, -20px, 0);
  transform: translate3d(0, -20px, 0);
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  text-align: center;
  top: -90px;
  color: #fff;
}
.tlp-team-layout9 figure.effect-bubba figcaption::before,
.tlp-team-layout9 figure.effect-bubba figcaption::after {
  position: absolute;
  top: 30px;
  right: 30px;
  bottom: 30px;
  left: 30px;
  content: '';
  opacity: 0;
  -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
  transition: opacity 0.35s, transform 0.35s;
}
.tlp-team-layout9 figure.effect-bubba figcaption::before {
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.tlp-team-layout9 figure.effect-bubba figcaption::after {
  border-right: 1px solid #fff;
  border-left: 1px solid #fff;
  -webkit-transform: scale(1, 0);
  transform: scale(1, 0);
}
.tlp-team-layout9 figure.effect-bubba h3 {
  padding-top: 30%;
  -webkit-transition: -webkit-transform 0.35s;
  transition: transform 0.35s;
  -webkit-transform: translate3d(0, -20px, 0);
  transform: translate3d(0, -20px, 0);
  opacity: 0;
}
.tlp-team-layout9 figure.effect-bubba span.tlp-position {
  padding: 20px 2.5em;
  opacity: 0;
  -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
  transition: opacity 0.35s, transform 0.35s;
  -webkit-transform: translate3d(0, 20px, 0);
  transform: translate3d(0, 20px, 0);
}
.tlp-team-layout9 figure.effect-bubba:hover figcaption::before,
.tlp-team-layout9 figure.effect-bubba:hover figcaption::after {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}
.tlp-team-layout9 figure.effect-bubba:hover h3,
.tlp-team-layout9 figure.effect-bubba:hover span.tlp-position {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
/*********************** End Layout 9 ********************/
.tlp-team-layout10  {
 
}
.tlp-team-layout10 .social-icons ul li {
  list-style: none;
  display: inline-block;
  margin: 0 2px;
}
.tlp-team-layout10 .social-icons ul {
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: center;
}
.tlp-team-layout10 .social-icons ul li {
  display: inline-block;
  list-style: outside none none;
}
.tlp-team-layout10 .social-icons ul li a {
  border: 1px solid #fff;
  display: inline-block;
  list-style: outside none none;
  width: 22px;
  display: block;
  text-decoration: none;
  font-size: 16px;
  color: rgba(22, 168, 235, 0.8);
}
.tlp-team-layout10 .social-icons ul li a:hover {
  background: #fff;
  border: 1px solid #fff;
}
.tlp-team-layout10 .grid-10 {
  position: relative;
  margin: 0 auto;
  max-width: 1000px;
  list-style: none;
  text-align: center;
  overflow: hidden;
}
.tlp-team-layout10 .grid-10 figure {
  position: relative;
  overflow: hidden;
  margin: 10px 1%;
  background: #000000;
  text-align: center;
  cursor: pointer;
}
.tlp-team-layout10 .grid-10 figure:hover img {
  opacity: .5;
}
.tlp-team-layout10 .grid-10 figure img {
  position: relative;
  display: block;
  min-height: 100%;
  max-width: 100%;
  opacity: 0.8;
  width: 100%;
}
.tlp-team-layout10 .grid-10 figure figcaption {
  padding: 2em;
  color: #fff;
  text-transform: uppercase;
  font-size: 1.25em;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.tlp-team-layout10 .grid-10 figure figcaption::before,
.tlp-team-layout10 .grid-10 figure figcaption::after {
  pointer-events: none;
}
.tlp-team-layout10 .grid-10 figure figcaption,
.tlp-team-layout10 .grid-10 figure figcaption > a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.tlp-team-layout10 .grid-10 figure figcaption > a {
  z-index: 1000;
  text-indent: 200%;
  white-space: nowrap;
  font-size: 0;
  opacity: 0;
}
.tlp-team-layout10 .grid-10 figure h3 {
  font-weight: 300;
}
.tlp-team-layout10 .grid-10 figure h3 span {
  font-weight: 800;
}
.tlp-team-layout10 .grid-10 figure h3,
.tlp-team-layout10 .grid-10 figure p {
  margin: 0;
}
.tlp-team-layout10 .grid-10 figure p {
  letter-spacing: 1px;
  font-size: 68.5%;
}
.tlp-team-layout10 figure.effect-zoe figcaption {
  top: auto;
  bottom: 0;
  height: 39px;
  padding: 10px 0 0;
  background: rgba(255, 255, 255, 0.5);
  color: #3c4a50;
  -webkit-transition: -webkit-transform 0.35s;
  transition: transform 0.35s;
  -webkit-transform: translate3d(0, 100%, 0);
  transform: translate3d(0, 100%, 0);
}
.tlp-team-layout10 figure.effect-zoe h3 {
  font-size: 22px;
  font-weight: 700;
}
.tlp-team-layout10 figure.effect-zoe p.icon-links a {
  float: right;
  color: #3c4a50;
  font-size: 1.4em;
}
.tlp-team-layout10 figure.effect-zoe:hover p.icon-links a:hover,
.tlp-team-layout10 figure.effect-zoe:hover p.icon-links a:focus {
  color: #252d31;
}
.tlp-team-layout10 figure.effect-zoe span.tlp-position {
  position: absolute;
  bottom: 3em;
  padding: 2em;
  color: #fff;
  text-transform: none;
  font-size: 90%;
  opacity: 0;
  left: 0;
  right: 0;
  -webkit-transition: opacity 0.35s;
  transition: opacity 0.35s;
  -webkit-backface-visibility: hidden;
  /* Fix for Chrome 37.0.2062.120 (Mac) */
}
.tlp-team-layout10 figure.effect-zoe h3,
.tlp-team-layout10 figure.effect-zoe p.icon-links a {
  -webkit-transition: -webkit-transform 0.50s;
  transition: transform 0.50s;
  -webkit-transform: translate3d(0, 300%, 0);
  transform: translate3d(0, 300%, 0);
}
.tlp-team-layout10 figure.effect-zoe p.icon-links a span::before {
  display: inline-block;
  padding: 8px 10px;
  font-family: 'feathericons';
  speak: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.tlp-team-layout10 figure.effect-zoe h3 {
  display: inline-block;
}
.tlp-team-layout10 figure.effect-zoe:hover span.tlp-position {
  opacity: 1;
}
.tlp-team-layout10 figure.effect-zoe:hover figcaption,
.tlp-team-layout10 figure.effect-zoe:hover h3,
.tlp-team-layout10 figure.effect-zoe:hover p.icon-links a {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.tlp-team-layout10 figure.effect-zoe:hover h3 {
  -webkit-transition-delay: 0.05s;
  transition-delay: 0.05s;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  text-align: center;
  top: -120px;
  color: #fff;
 
}
.tlp-team-layout10 figure.effect-zoe:hover p.icon-links a:nth-child(3) {
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s;
}
.tlp-team-layout10 figure.effect-zoe:hover p.icon-links a:nth-child(2) {
  -webkit-transition-delay: 0.15s;
  transition-delay: 0.15s;
}
.tlp-team-layout10 figure.effect-zoe:hover p.icon-links a:first-child {
  -webkit-transition-delay: 0.2s;
  transition-delay: 0.2s;
}











                                                                                                                                                                                                                                                                                                                          assets/css/font-awesome.css                                                                         0000705                 00000077076 15242037122 0011771 0                                                                                                    ustar 00                                                                                                                                                                                                                                                       /*!
 *  Font Awesome 4.4.0 by @davegandy - http://fontawesome.io - @fontawesome
 *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
 */
/* FONT PATH
 * -------------------------- */
@font-face {
  font-family: 'FontAwesome';
  src: url('../fonts/fontawesome-webfont.eot?v=4.4.0');
  src: url('../fonts/fontawesome-webfont.eot?#iefix&v=4.4.0') format('embedded-opentype'), url('../fonts/fontawesome-webfont.woff2?v=4.4.0') format('woff2'), url('../fonts/fontawesome-webfont.woff?v=4.4.0') format('woff'), url('../fonts/fontawesome-webfont.ttf?v=4.4.0') format('truetype'), url('../fonts/fontawesome-webfont.svg?v=4.4.0#fontawesomeregular') format('svg');
  font-weight: normal;
  font-style: normal;
}
.fa {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
/* makes the font 33% larger relative to the icon container */
.fa-lg {
  font-size: 1.33333333em;
  line-height: 0.75em;
  vertical-align: -15%;
}
.fa-2x {
  font-size: 2em;
}
.fa-3x {
  font-size: 3em;
}
.fa-4x {
  font-size: 4em;
}
.fa-5x {
  font-size: 5em;
}
.fa-fw {
  width: 1.28571429em;
  text-align: center;
}
.fa-ul {
  padding-left: 0;
  margin-left: 2.14285714em;
  list-style-type: none;
}
.fa-ul > li {
  position: relative;
}
.fa-li {
  position: absolute;
  left: -2.14285714em;
  width: 2.14285714em;
  top: 0.14285714em;
  text-align: center;
}
.fa-li.fa-lg {
  left: -1.85714286em;
}
.fa-border {
  padding: .2em .25em .15em;
  border: solid 0.08em #eeeeee;
  border-radius: .1em;
}
.fa-pull-left {
  float: left;
}
.fa-pull-right {
  float: right;
}
.fa.fa-pull-left {
  margin-right: .3em;
}
.fa.fa-pull-right {
  margin-left: .3em;
}
/* Deprecated as of 4.4.0 */
.pull-right {
  float: right;
}
.pull-left {
  float: left;
}
.fa.pull-left {
  margin-right: .3em;
}
.fa.pull-right {
  margin-left: .3em;
}
.fa-spin {
  -webkit-animation: fa-spin 2s infinite linear;
  animation: fa-spin 2s infinite linear;
}
.fa-pulse {
  -webkit-animation: fa-spin 1s infinite steps(8);
  animation: fa-spin 1s infinite steps(8);
}
@-webkit-keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
@keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
.fa-rotate-90 {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1);
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}
.fa-rotate-180 {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
.fa-rotate-270 {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
  -webkit-transform: rotate(270deg);
  -ms-transform: rotate(270deg);
  transform: rotate(270deg);
}
.fa-flip-horizontal {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1);
  -webkit-transform: scale(-1, 1);
  -ms-transform: scale(-1, 1);
  transform: scale(-1, 1);
}
.fa-flip-vertical {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1);
  -webkit-transform: scale(1, -1);
  -ms-transform: scale(1, -1);
  transform: scale(1, -1);
}
:root .fa-rotate-90,
:root .fa-rotate-180,
:root .fa-rotate-270,
:root .fa-flip-horizontal,
:root .fa-flip-vertical {
  filter: none;
}
.fa-stack {
  position: relative;
  display: inline-block;
  width: 2em;
  height: 2em;
  line-height: 2em;
  vertical-align: middle;
}
.fa-stack-1x,
.fa-stack-2x {
  position: absolute;
  left: 0;
  width: 100%;
  text-align: center;
}
.fa-stack-1x {
  line-height: inherit;
}
.fa-stack-2x {
  font-size: 2em;
}
.fa-inverse {
  color: #ffffff;
}
/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
   readers do not read off random characters that represent icons */
.fa-glass:before {
  content: "\f000";
}
.fa-music:before {
  content: "\f001";
}
.fa-search:before {
  content: "\f002";
}
.fa-envelope-o:before {
  content: "\f003";
}
.fa-heart:before {
  content: "\f004";
}
.fa-star:before {
  content: "\f005";
}
.fa-star-o:before {
  content: "\f006";
}
.fa-user:before {
  content: "\f007";
}
.fa-film:before {
  content: "\f008";
}
.fa-th-large:before {
  content: "\f009";
}
.fa-th:before {
  content: "\f00a";
}
.fa-th-list:before {
  content: "\f00b";
}
.fa-check:before {
  content: "\f00c";
}
.fa-remove:before,
.fa-close:before,
.fa-times:before {
  content: "\f00d";
}
.fa-search-plus:before {
  content: "\f00e";
}
.fa-search-minus:before {
  content: "\f010";
}
.fa-power-off:before {
  content: "\f011";
}
.fa-signal:before {
  content: "\f012";
}
.fa-gear:before,
.fa-cog:before {
  content: "\f013";
}
.fa-trash-o:before {
  content: "\f014";
}
.fa-home:before {
  content: "\f015";
}
.fa-file-o:before {
  content: "\f016";
}
.fa-clock-o:before {
  content: "\f017";
}
.fa-road:before {
  content: "\f018";
}
.fa-download:before {
  content: "\f019";
}
.fa-arrow-circle-o-down:before {
  content: "\f01a";
}
.fa-arrow-circle-o-up:before {
  content: "\f01b";
}
.fa-inbox:before {
  content: "\f01c";
}
.fa-play-circle-o:before {
  content: "\f01d";
}
.fa-rotate-right:before,
.fa-repeat:before {
  content: "\f01e";
}
.fa-refresh:before {
  content: "\f021";
}
.fa-list-alt:before {
  content: "\f022";
}
.fa-lock:before {
  content: "\f023";
}
.fa-flag:before {
  content: "\f024";
}
.fa-headphones:before {
  content: "\f025";
}
.fa-volume-off:before {
  content: "\f026";
}
.fa-volume-down:before {
  content: "\f027";
}
.fa-volume-up:before {
  content: "\f028";
}
.fa-qrcode:before {
  content: "\f029";
}
.fa-barcode:before {
  content: "\f02a";
}
.fa-tag:before {
  content: "\f02b";
}
.fa-tags:before {
  content: "\f02c";
}
.fa-book:before {
  content: "\f02d";
}
.fa-bookmark:before {
  content: "\f02e";
}
.fa-print:before {
  content: "\f02f";
}
.fa-camera:before {
  content: "\f030";
}
.fa-font:before {
  content: "\f031";
}
.fa-bold:before {
  content: "\f032";
}
.fa-italic:before {
  content: "\f033";
}
.fa-text-height:before {
  content: "\f034";
}
.fa-text-width:before {
  content: "\f035";
}
.fa-align-left:before {
  content: "\f036";
}
.fa-align-center:before {
  content: "\f037";
}
.fa-align-right:before {
  content: "\f038";
}
.fa-align-justify:before {
  content: "\f039";
}
.fa-list:before {
  content: "\f03a";
}
.fa-dedent:before,
.fa-outdent:before {
  content: "\f03b";
}
.fa-indent:before {
  content: "\f03c";
}
.fa-video-camera:before {
  content: "\f03d";
}
.fa-photo:before,
.fa-image:before,
.fa-picture-o:before {
  content: "\f03e";
}
.fa-pencil:before {
  content: "\f040";
}
.fa-map-marker:before {
  content: "\f041";
}
.fa-adjust:before {
  content: "\f042";
}
.fa-tint:before {
  content: "\f043";
}
.fa-edit:before,
.fa-pencil-square-o:before {
  content: "\f044";
}
.fa-share-square-o:before {
  content: "\f045";
}
.fa-check-square-o:before {
  content: "\f046";
}
.fa-arrows:before {
  content: "\f047";
}
.fa-step-backward:before {
  content: "\f048";
}
.fa-fast-backward:before {
  content: "\f049";
}
.fa-backward:before {
  content: "\f04a";
}
.fa-play:before {
  content: "\f04b";
}
.fa-pause:before {
  content: "\f04c";
}
.fa-stop:before {
  content: "\f04d";
}
.fa-forward:before {
  content: "\f04e";
}
.fa-fast-forward:before {
  content: "\f050";
}
.fa-step-forward:before {
  content: "\f051";
}
.fa-eject:before {
  content: "\f052";
}
.fa-chevron-left:before {
  content: "\f053";
}
.fa-chevron-right:before {
  content: "\f054";
}
.fa-plus-circle:before {
  content: "\f055";
}
.fa-minus-circle:before {
  content: "\f056";
}
.fa-times-circle:before {
  content: "\f057";
}
.fa-check-circle:before {
  content: "\f058";
}
.fa-question-circle:before {
  content: "\f059";
}
.fa-info-circle:before {
  content: "\f05a";
}
.fa-crosshairs:before {
  content: "\f05b";
}
.fa-times-circle-o:before {
  content: "\f05c";
}
.fa-check-circle-o:before {
  content: "\f05d";
}
.fa-ban:before {
  content: "\f05e";
}
.fa-arrow-left:before {
  content: "\f060";
}
.fa-arrow-right:before {
  content: "\f061";
}
.fa-arrow-up:before {
  content: "\f062";
}
.fa-arrow-down:before {
  content: "\f063";
}
.fa-mail-forward:before,
.fa-share:before {
  content: "\f064";
}
.fa-expand:before {
  content: "\f065";
}
.fa-compress:before {
  content: "\f066";
}
.fa-plus:before {
  content: "\f067";
}
.fa-minus:before {
  content: "\f068";
}
.fa-asterisk:before {
  content: "\f069";
}
.fa-exclamation-circle:before {
  content: "\f06a";
}
.fa-gift:before {
  content: "\f06b";
}
.fa-leaf:before {
  content: "\f06c";
}
.fa-fire:before {
  content: "\f06d";
}
.fa-eye:before {
  content: "\f06e";
}
.fa-eye-slash:before {
  content: "\f070";
}
.fa-warning:before,
.fa-exclamation-triangle:before {
  content: "\f071";
}
.fa-plane:before {
  content: "\f072";
}
.fa-calendar:before {
  content: "\f073";
}
.fa-random:before {
  content: "\f074";
}
.fa-comment:before {
  content: "\f075";
}
.fa-magnet:before {
  content: "\f076";
}
.fa-chevron-up:before {
  content: "\f077";
}
.fa-chevron-down:before {
  content: "\f078";
}
.fa-retweet:before {
  content: "\f079";
}
.fa-shopping-cart:before {
  content: "\f07a";
}
.fa-folder:before {
  content: "\f07b";
}
.fa-folder-open:before {
  content: "\f07c";
}
.fa-arrows-v:before {
  content: "\f07d";
}
.fa-arrows-h:before {
  content: "\f07e";
}
.fa-bar-chart-o:before,
.fa-bar-chart:before {
  content: "\f080";
}
.fa-twitter-square:before {
  content: "\f081";
}
.fa-facebook-square:before {
  content: "\f082";
}
.fa-camera-retro:before {
  content: "\f083";
}
.fa-key:before {
  content: "\f084";
}
.fa-gears:before,
.fa-cogs:before {
  content: "\f085";
}
.fa-comments:before {
  content: "\f086";
}
.fa-thumbs-o-up:before {
  content: "\f087";
}
.fa-thumbs-o-down:before {
  content: "\f088";
}
.fa-star-half:before {
  content: "\f089";
}
.fa-heart-o:before {
  content: "\f08a";
}
.fa-sign-out:before {
  content: "\f08b";
}
.fa-linkedin-square:before {
  content: "\f08c";
}
.fa-thumb-tack:before {
  content: "\f08d";
}
.fa-external-link:before {
  content: "\f08e";
}
.fa-sign-in:before {
  content: "\f090";
}
.fa-trophy:before {
  content: "\f091";
}
.fa-github-square:before {
  content: "\f092";
}
.fa-upload:before {
  content: "\f093";
}
.fa-lemon-o:before {
  content: "\f094";
}
.fa-phone:before {
  content: "\f095";
}
.fa-square-o:before {
  content: "\f096";
}
.fa-bookmark-o:before {
  content: "\f097";
}
.fa-phone-square:before {
  content: "\f098";
}
.fa-twitter:before {
  content: "\f099";
}
.fa-facebook-f:before,
.fa-facebook:before {
  content: "\f09a";
}
.fa-github:before {
  content: "\f09b";
}
.fa-unlock:before {
  content: "\f09c";
}
.fa-credit-card:before {
  content: "\f09d";
}
.fa-feed:before,
.fa-rss:before {
  content: "\f09e";
}
.fa-hdd-o:before {
  content: "\f0a0";
}
.fa-bullhorn:before {
  content: "\f0a1";
}
.fa-bell:before {
  content: "\f0f3";
}
.fa-certificate:before {
  content: "\f0a3";
}
.fa-hand-o-right:before {
  content: "\f0a4";
}
.fa-hand-o-left:before {
  content: "\f0a5";
}
.fa-hand-o-up:before {
  content: "\f0a6";
}
.fa-hand-o-down:before {
  content: "\f0a7";
}
.fa-arrow-circle-left:before {
  content: "\f0a8";
}
.fa-arrow-circle-right:before {
  content: "\f0a9";
}
.fa-arrow-circle-up:before {
  content: "\f0aa";
}
.fa-arrow-circle-down:before {
  content: "\f0ab";
}
.fa-globe:before {
  content: "\f0ac";
}
.fa-wrench:before {
  content: "\f0ad";
}
.fa-tasks:before {
  content: "\f0ae";
}
.fa-filter:before {
  content: "\f0b0";
}
.fa-briefcase:before {
  content: "\f0b1";
}
.fa-arrows-alt:before {
  content: "\f0b2";
}
.fa-group:before,
.fa-users:before {
  content: "\f0c0";
}
.fa-chain:before,
.fa-link:before {
  content: "\f0c1";
}
.fa-cloud:before {
  content: "\f0c2";
}
.fa-flask:before {
  content: "\f0c3";
}
.fa-cut:before,
.fa-scissors:before {
  content: "\f0c4";
}
.fa-copy:before,
.fa-files-o:before {
  content: "\f0c5";
}
.fa-paperclip:before {
  content: "\f0c6";
}
.fa-save:before,
.fa-floppy-o:before {
  content: "\f0c7";
}
.fa-square:before {
  content: "\f0c8";
}
.fa-navicon:before,
.fa-reorder:before,
.fa-bars:before {
  content: "\f0c9";
}
.fa-list-ul:before {
  content: "\f0ca";
}
.fa-list-ol:before {
  content: "\f0cb";
}
.fa-strikethrough:before {
  content: "\f0cc";
}
.fa-underline:before {
  content: "\f0cd";
}
.fa-table:before {
  content: "\f0ce";
}
.fa-magic:before {
  content: "\f0d0";
}
.fa-truck:before {
  content: "\f0d1";
}
.fa-pinterest:before {
  content: "\f0d2";
}
.fa-pinterest-square:before {
  content: "\f0d3";
}
.fa-google-plus-square:before {
  content: "\f0d4";
}
.fa-google-plus:before {
  content: "\f0d5";
}
.fa-money:before {
  content: "\f0d6";
}
.fa-caret-down:before {
  content: "\f0d7";
}
.fa-caret-up:before {
  content: "\f0d8";
}
.fa-caret-left:before {
  content: "\f0d9";
}
.fa-caret-right:before {
  content: "\f0da";
}
.fa-columns:before {
  content: "\f0db";
}
.fa-unsorted:before,
.fa-sort:before {
  content: "\f0dc";
}
.fa-sort-down:before,
.fa-sort-desc:before {
  content: "\f0dd";
}
.fa-sort-up:before,
.fa-sort-asc:before {
  content: "\f0de";
}
.fa-envelope:before {
  content: "\f0e0";
}
.fa-linkedin:before {
  content: "\f0e1";
}
.fa-rotate-left:before,
.fa-undo:before {
  content: "\f0e2";
}
.fa-legal:before,
.fa-gavel:before {
  content: "\f0e3";
}
.fa-dashboard:before,
.fa-tachometer:before {
  content: "\f0e4";
}
.fa-comment-o:before {
  content: "\f0e5";
}
.fa-comments-o:before {
  content: "\f0e6";
}
.fa-flash:before,
.fa-bolt:before {
  content: "\f0e7";
}
.fa-sitemap:before {
  content: "\f0e8";
}
.fa-umbrella:before {
  content: "\f0e9";
}
.fa-paste:before,
.fa-clipboard:before {
  content: "\f0ea";
}
.fa-lightbulb-o:before {
  content: "\f0eb";
}
.fa-exchange:before {
  content: "\f0ec";
}
.fa-cloud-download:before {
  content: "\f0ed";
}
.fa-cloud-upload:before {
  content: "\f0ee";
}
.fa-user-md:before {
  content: "\f0f0";
}
.fa-stethoscope:before {
  content: "\f0f1";
}
.fa-suitcase:before {
  content: "\f0f2";
}
.fa-bell-o:before {
  content: "\f0a2";
}
.fa-coffee:before {
  content: "\f0f4";
}
.fa-cutlery:before {
  content: "\f0f5";
}
.fa-file-text-o:before {
  content: "\f0f6";
}
.fa-building-o:before {
  content: "\f0f7";
}
.fa-hospital-o:before {
  content: "\f0f8";
}
.fa-ambulance:before {
  content: "\f0f9";
}
.fa-medkit:before {
  content: "\f0fa";
}
.fa-fighter-jet:before {
  content: "\f0fb";
}
.fa-beer:before {
  content: "\f0fc";
}
.fa-h-square:before {
  content: "\f0fd";
}
.fa-plus-square:before {
  content: "\f0fe";
}
.fa-angle-double-left:before {
  content: "\f100";
}
.fa-angle-double-right:before {
  content: "\f101";
}
.fa-angle-double-up:before {
  content: "\f102";
}
.fa-angle-double-down:before {
  content: "\f103";
}
.fa-angle-left:before {
  content: "\f104";
}
.fa-angle-right:before {
  content: "\f105";
}
.fa-angle-up:before {
  content: "\f106";
}
.fa-angle-down:before {
  content: "\f107";
}
.fa-desktop:before {
  content: "\f108";
}
.fa-laptop:before {
  content: "\f109";
}
.fa-tablet:before {
  content: "\f10a";
}
.fa-mobile-phone:before,
.fa-mobile:before {
  content: "\f10b";
}
.fa-circle-o:before {
  content: "\f10c";
}
.fa-quote-left:before {
  content: "\f10d";
}
.fa-quote-right:before {
  content: "\f10e";
}
.fa-spinner:before {
  content: "\f110";
}
.fa-circle:before {
  content: "\f111";
}
.fa-mail-reply:before,
.fa-reply:before {
  content: "\f112";
}
.fa-github-alt:before {
  content: "\f113";
}
.fa-folder-o:before {
  content: "\f114";
}
.fa-folder-open-o:before {
  content: "\f115";
}
.fa-smile-o:before {
  content: "\f118";
}
.fa-frown-o:before {
  content: "\f119";
}
.fa-meh-o:before {
  content: "\f11a";
}
.fa-gamepad:before {
  content: "\f11b";
}
.fa-keyboard-o:before {
  content: "\f11c";
}
.fa-flag-o:before {
  content: "\f11d";
}
.fa-flag-checkered:before {
  content: "\f11e";
}
.fa-terminal:before {
  content: "\f120";
}
.fa-code:before {
  content: "\f121";
}
.fa-mail-reply-all:before,
.fa-reply-all:before {
  content: "\f122";
}
.fa-star-half-empty:before,
.fa-star-half-full:before,
.fa-star-half-o:before {
  content: "\f123";
}
.fa-location-arrow:before {
  content: "\f124";
}
.fa-crop:before {
  content: "\f125";
}
.fa-code-fork:before {
  content: "\f126";
}
.fa-unlink:before,
.fa-chain-broken:before {
  content: "\f127";
}
.fa-question:before {
  content: "\f128";
}
.fa-info:before {
  content: "\f129";
}
.fa-exclamation:before {
  content: "\f12a";
}
.fa-superscript:before {
  content: "\f12b";
}
.fa-subscript:before {
  content: "\f12c";
}
.fa-eraser:before {
  content: "\f12d";
}
.fa-puzzle-piece:before {
  content: "\f12e";
}
.fa-microphone:before {
  content: "\f130";
}
.fa-microphone-slash:before {
  content: "\f131";
}
.fa-shield:before {
  content: "\f132";
}
.fa-calendar-o:before {
  content: "\f133";
}
.fa-fire-extinguisher:before {
  content: "\f134";
}
.fa-rocket:before {
  content: "\f135";
}
.fa-maxcdn:before {
  content: "\f136";
}
.fa-chevron-circle-left:before {
  content: "\f137";
}
.fa-chevron-circle-right:before {
  content: "\f138";
}
.fa-chevron-circle-up:before {
  content: "\f139";
}
.fa-chevron-circle-down:before {
  content: "\f13a";
}
.fa-html5:before {
  content: "\f13b";
}
.fa-css3:before {
  content: "\f13c";
}
.fa-anchor:before {
  content: "\f13d";
}
.fa-unlock-alt:before {
  content: "\f13e";
}
.fa-bullseye:before {
  content: "\f140";
}
.fa-ellipsis-h:before {
  content: "\f141";
}
.fa-ellipsis-v:before {
  content: "\f142";
}
.fa-rss-square:before {
  content: "\f143";
}
.fa-play-circle:before {
  content: "\f144";
}
.fa-ticket:before {
  content: "\f145";
}
.fa-minus-square:before {
  content: "\f146";
}
.fa-minus-square-o:before {
  content: "\f147";
}
.fa-level-up:before {
  content: "\f148";
}
.fa-level-down:before {
  content: "\f149";
}
.fa-check-square:before {
  content: "\f14a";
}
.fa-pencil-square:before {
  content: "\f14b";
}
.fa-external-link-square:before {
  content: "\f14c";
}
.fa-share-square:before {
  content: "\f14d";
}
.fa-compass:before {
  content: "\f14e";
}
.fa-toggle-down:before,
.fa-caret-square-o-down:before {
  content: "\f150";
}
.fa-toggle-up:before,
.fa-caret-square-o-up:before {
  content: "\f151";
}
.fa-toggle-right:before,
.fa-caret-square-o-right:before {
  content: "\f152";
}
.fa-euro:before,
.fa-eur:before {
  content: "\f153";
}
.fa-gbp:before {
  content: "\f154";
}
.fa-dollar:before,
.fa-usd:before {
  content: "\f155";
}
.fa-rupee:before,
.fa-inr:before {
  content: "\f156";
}
.fa-cny:before,
.fa-rmb:before,
.fa-yen:before,
.fa-jpy:before {
  content: "\f157";
}
.fa-ruble:before,
.fa-rouble:before,
.fa-rub:before {
  content: "\f158";
}
.fa-won:before,
.fa-krw:before {
  content: "\f159";
}
.fa-bitcoin:before,
.fa-btc:before {
  content: "\f15a";
}
.fa-file:before {
  content: "\f15b";
}
.fa-file-text:before {
  content: "\f15c";
}
.fa-sort-alpha-asc:before {
  content: "\f15d";
}
.fa-sort-alpha-desc:before {
  content: "\f15e";
}
.fa-sort-amount-asc:before {
  content: "\f160";
}
.fa-sort-amount-desc:before {
  content: "\f161";
}
.fa-sort-numeric-asc:before {
  content: "\f162";
}
.fa-sort-numeric-desc:before {
  content: "\f163";
}
.fa-thumbs-up:before {
  content: "\f164";
}
.fa-thumbs-down:before {
  content: "\f165";
}
.fa-youtube-square:before {
  content: "\f166";
}
.fa-youtube:before {
  content: "\f167";
}
.fa-xing:before {
  content: "\f168";
}
.fa-xing-square:before {
  content: "\f169";
}
.fa-youtube-play:before {
  content: "\f16a";
}
.fa-dropbox:before {
  content: "\f16b";
}
.fa-stack-overflow:before {
  content: "\f16c";
}
.fa-instagram:before {
  content: "\f16d";
}
.fa-flickr:before {
  content: "\f16e";
}
.fa-adn:before {
  content: "\f170";
}
.fa-bitbucket:before {
  content: "\f171";
}
.fa-bitbucket-square:before {
  content: "\f172";
}
.fa-tumblr:before {
  content: "\f173";
}
.fa-tumblr-square:before {
  content: "\f174";
}
.fa-long-arrow-down:before {
  content: "\f175";
}
.fa-long-arrow-up:before {
  content: "\f176";
}
.fa-long-arrow-left:before {
  content: "\f177";
}
.fa-long-arrow-right:before {
  content: "\f178";
}
.fa-apple:before {
  content: "\f179";
}
.fa-windows:before {
  content: "\f17a";
}
.fa-android:before {
  content: "\f17b";
}
.fa-linux:before {
  content: "\f17c";
}
.fa-dribbble:before {
  content: "\f17d";
}
.fa-skype:before {
  content: "\f17e";
}
.fa-foursquare:before {
  content: "\f180";
}
.fa-trello:before {
  content: "\f181";
}
.fa-female:before {
  content: "\f182";
}
.fa-male:before {
  content: "\f183";
}
.fa-gittip:before,
.fa-gratipay:before {
  content: "\f184";
}
.fa-sun-o:before {
  content: "\f185";
}
.fa-moon-o:before {
  content: "\f186";
}
.fa-archive:before {
  content: "\f187";
}
.fa-bug:before {
  content: "\f188";
}
.fa-vk:before {
  content: "\f189";
}
.fa-weibo:before {
  content: "\f18a";
}
.fa-renren:before {
  content: "\f18b";
}
.fa-pagelines:before {
  content: "\f18c";
}
.fa-stack-exchange:before {
  content: "\f18d";
}
.fa-arrow-circle-o-right:before {
  content: "\f18e";
}
.fa-arrow-circle-o-left:before {
  content: "\f190";
}
.fa-toggle-left:before,
.fa-caret-square-o-left:before {
  content: "\f191";
}
.fa-dot-circle-o:before {
  content: "\f192";
}
.fa-wheelchair:before {
  content: "\f193";
}
.fa-vimeo-square:before {
  content: "\f194";
}
.fa-turkish-lira:before,
.fa-try:before {
  content: "\f195";
}
.fa-plus-square-o:before {
  content: "\f196";
}
.fa-space-shuttle:before {
  content: "\f197";
}
.fa-slack:before {
  content: "\f198";
}
.fa-envelope-square:before {
  content: "\f199";
}
.fa-wordpress:before {
  content: "\f19a";
}
.fa-openid:before {
  content: "\f19b";
}
.fa-institution:before,
.fa-bank:before,
.fa-university:before {
  content: "\f19c";
}
.fa-mortar-board:before,
.fa-graduation-cap:before {
  content: "\f19d";
}
.fa-yahoo:before {
  content: "\f19e";
}
.fa-google:before {
  content: "\f1a0";
}
.fa-reddit:before {
  content: "\f1a1";
}
.fa-reddit-square:before {
  content: "\f1a2";
}
.fa-stumbleupon-circle:before {
  content: "\f1a3";
}
.fa-stumbleupon:before {
  content: "\f1a4";
}
.fa-delicious:before {
  content: "\f1a5";
}
.fa-digg:before {
  content: "\f1a6";
}
.fa-pied-piper:before {
  content: "\f1a7";
}
.fa-pied-piper-alt:before {
  content: "\f1a8";
}
.fa-drupal:before {
  content: "\f1a9";
}
.fa-joomla:before {
  content: "\f1aa";
}
.fa-language:before {
  content: "\f1ab";
}
.fa-fax:before {
  content: "\f1ac";
}
.fa-building:before {
  content: "\f1ad";
}
.fa-child:before {
  content: "\f1ae";
}
.fa-paw:before {
  content: "\f1b0";
}
.fa-spoon:before {
  content: "\f1b1";
}
.fa-cube:before {
  content: "\f1b2";
}
.fa-cubes:before {
  content: "\f1b3";
}
.fa-behance:before {
  content: "\f1b4";
}
.fa-behance-square:before {
  content: "\f1b5";
}
.fa-steam:before {
  content: "\f1b6";
}
.fa-steam-square:before {
  content: "\f1b7";
}
.fa-recycle:before {
  content: "\f1b8";
}
.fa-automobile:before,
.fa-car:before {
  content: "\f1b9";
}
.fa-cab:before,
.fa-taxi:before {
  content: "\f1ba";
}
.fa-tree:before {
  content: "\f1bb";
}
.fa-spotify:before {
  content: "\f1bc";
}
.fa-deviantart:before {
  content: "\f1bd";
}
.fa-soundcloud:before {
  content: "\f1be";
}
.fa-database:before {
  content: "\f1c0";
}
.fa-file-pdf-o:before {
  content: "\f1c1";
}
.fa-file-word-o:before {
  content: "\f1c2";
}
.fa-file-excel-o:before {
  content: "\f1c3";
}
.fa-file-powerpoint-o:before {
  content: "\f1c4";
}
.fa-file-photo-o:before,
.fa-file-picture-o:before,
.fa-file-image-o:before {
  content: "\f1c5";
}
.fa-file-zip-o:before,
.fa-file-archive-o:before {
  content: "\f1c6";
}
.fa-file-sound-o:before,
.fa-file-audio-o:before {
  content: "\f1c7";
}
.fa-file-movie-o:before,
.fa-file-video-o:before {
  content: "\f1c8";
}
.fa-file-code-o:before {
  content: "\f1c9";
}
.fa-vine:before {
  content: "\f1ca";
}
.fa-codepen:before {
  content: "\f1cb";
}
.fa-jsfiddle:before {
  content: "\f1cc";
}
.fa-life-bouy:before,
.fa-life-buoy:before,
.fa-life-saver:before,
.fa-support:before,
.fa-life-ring:before {
  content: "\f1cd";
}
.fa-circle-o-notch:before {
  content: "\f1ce";
}
.fa-ra:before,
.fa-rebel:before {
  content: "\f1d0";
}
.fa-ge:before,
.fa-empire:before {
  content: "\f1d1";
}
.fa-git-square:before {
  content: "\f1d2";
}
.fa-git:before {
  content: "\f1d3";
}
.fa-y-combinator-square:before,
.fa-yc-square:before,
.fa-hacker-news:before {
  content: "\f1d4";
}
.fa-tencent-weibo:before {
  content: "\f1d5";
}
.fa-qq:before {
  content: "\f1d6";
}
.fa-wechat:before,
.fa-weixin:before {
  content: "\f1d7";
}
.fa-send:before,
.fa-paper-plane:before {
  content: "\f1d8";
}
.fa-send-o:before,
.fa-paper-plane-o:before {
  content: "\f1d9";
}
.fa-history:before {
  content: "\f1da";
}
.fa-circle-thin:before {
  content: "\f1db";
}
.fa-header:before {
  content: "\f1dc";
}
.fa-paragraph:before {
  content: "\f1dd";
}
.fa-sliders:before {
  content: "\f1de";
}
.fa-share-alt:before {
  content: "\f1e0";
}
.fa-share-alt-square:before {
  content: "\f1e1";
}
.fa-bomb:before {
  content: "\f1e2";
}
.fa-soccer-ball-o:before,
.fa-futbol-o:before {
  content: "\f1e3";
}
.fa-tty:before {
  content: "\f1e4";
}
.fa-binoculars:before {
  content: "\f1e5";
}
.fa-plug:before {
  content: "\f1e6";
}
.fa-slideshare:before {
  content: "\f1e7";
}
.fa-twitch:before {
  content: "\f1e8";
}
.fa-yelp:before {
  content: "\f1e9";
}
.fa-newspaper-o:before {
  content: "\f1ea";
}
.fa-wifi:before {
  content: "\f1eb";
}
.fa-calculator:before {
  content: "\f1ec";
}
.fa-paypal:before {
  content: "\f1ed";
}
.fa-google-wallet:before {
  content: "\f1ee";
}
.fa-cc-visa:before {
  content: "\f1f0";
}
.fa-cc-mastercard:before {
  content: "\f1f1";
}
.fa-cc-discover:before {
  content: "\f1f2";
}
.fa-cc-amex:before {
  content: "\f1f3";
}
.fa-cc-paypal:before {
  content: "\f1f4";
}
.fa-cc-stripe:before {
  content: "\f1f5";
}
.fa-bell-slash:before {
  content: "\f1f6";
}
.fa-bell-slash-o:before {
  content: "\f1f7";
}
.fa-trash:before {
  content: "\f1f8";
}
.fa-copyright:before {
  content: "\f1f9";
}
.fa-at:before {
  content: "\f1fa";
}
.fa-eyedropper:before {
  content: "\f1fb";
}
.fa-paint-brush:before {
  content: "\f1fc";
}
.fa-birthday-cake:before {
  content: "\f1fd";
}
.fa-area-chart:before {
  content: "\f1fe";
}
.fa-pie-chart:before {
  content: "\f200";
}
.fa-line-chart:before {
  content: "\f201";
}
.fa-lastfm:before {
  content: "\f202";
}
.fa-lastfm-square:before {
  content: "\f203";
}
.fa-toggle-off:before {
  content: "\f204";
}
.fa-toggle-on:before {
  content: "\f205";
}
.fa-bicycle:before {
  content: "\f206";
}
.fa-bus:before {
  content: "\f207";
}
.fa-ioxhost:before {
  content: "\f208";
}
.fa-angellist:before {
  content: "\f209";
}
.fa-cc:before {
  content: "\f20a";
}
.fa-shekel:before,
.fa-sheqel:before,
.fa-ils:before {
  content: "\f20b";
}
.fa-meanpath:before {
  content: "\f20c";
}
.fa-buysellads:before {
  content: "\f20d";
}
.fa-connectdevelop:before {
  content: "\f20e";
}
.fa-dashcube:before {
  content: "\f210";
}
.fa-forumbee:before {
  content: "\f211";
}
.fa-leanpub:before {
  content: "\f212";
}
.fa-sellsy:before {
  content: "\f213";
}
.fa-shirtsinbulk:before {
  content: "\f214";
}
.fa-simplybuilt:before {
  content: "\f215";
}
.fa-skyatlas:before {
  content: "\f216";
}
.fa-cart-plus:before {
  content: "\f217";
}
.fa-cart-arrow-down:before {
  content: "\f218";
}
.fa-diamond:before {
  content: "\f219";
}
.fa-ship:before {
  content: "\f21a";
}
.fa-user-secret:before {
  content: "\f21b";
}
.fa-motorcycle:before {
  content: "\f21c";
}
.fa-street-view:before {
  content: "\f21d";
}
.fa-heartbeat:before {
  content: "\f21e";
}
.fa-venus:before {
  content: "\f221";
}
.fa-mars:before {
  content: "\f222";
}
.fa-mercury:before {
  content: "\f223";
}
.fa-intersex:before,
.fa-transgender:before {
  content: "\f224";
}
.fa-transgender-alt:before {
  content: "\f225";
}
.fa-venus-double:before {
  content: "\f226";
}
.fa-mars-double:before {
  content: "\f227";
}
.fa-venus-mars:before {
  content: "\f228";
}
.fa-mars-stroke:before {
  content: "\f229";
}
.fa-mars-stroke-v:before {
  content: "\f22a";
}
.fa-mars-stroke-h:before {
  content: "\f22b";
}
.fa-neuter:before {
  content: "\f22c";
}
.fa-genderless:before {
  content: "\f22d";
}
.fa-facebook-official:before {
  content: "\f230";
}
.fa-pinterest-p:before {
  content: "\f231";
}
.fa-whatsapp:before {
  content: "\f232";
}
.fa-server:before {
  content: "\f233";
}
.fa-user-plus:before {
  content: "\f234";
}
.fa-user-times:before {
  content: "\f235";
}
.fa-hotel:before,
.fa-bed:before {
  content: "\f236";
}
.fa-viacoin:before {
  content: "\f237";
}
.fa-train:before {
  content: "\f238";
}
.fa-subway:before {
  content: "\f239";
}
.fa-medium:before {
  content: "\f23a";
}
.fa-yc:before,
.fa-y-combinator:before {
  content: "\f23b";
}
.fa-optin-monster:before {
  content: "\f23c";
}
.fa-opencart:before {
  content: "\f23d";
}
.fa-expeditedssl:before {
  content: "\f23e";
}
.fa-battery-4:before,
.fa-battery-full:before {
  content: "\f240";
}
.fa-battery-3:before,
.fa-battery-three-quarters:before {
  content: "\f241";
}
.fa-battery-2:before,
.fa-battery-half:before {
  content: "\f242";
}
.fa-battery-1:before,
.fa-battery-quarter:before {
  content: "\f243";
}
.fa-battery-0:before,
.fa-battery-empty:before {
  content: "\f244";
}
.fa-mouse-pointer:before {
  content: "\f245";
}
.fa-i-cursor:before {
  content: "\f246";
}
.fa-object-group:before {
  content: "\f247";
}
.fa-object-ungroup:before {
  content: "\f248";
}
.fa-sticky-note:before {
  content: "\f249";
}
.fa-sticky-note-o:before {
  content: "\f24a";
}
.fa-cc-jcb:before {
  content: "\f24b";
}
.fa-cc-diners-club:before {
  content: "\f24c";
}
.fa-clone:before {
  content: "\f24d";
}
.fa-balance-scale:before {
  content: "\f24e";
}
.fa-hourglass-o:before {
  content: "\f250";
}
.fa-hourglass-1:before,
.fa-hourglass-start:before {
  content: "\f251";
}
.fa-hourglass-2:before,
.fa-hourglass-half:before {
  content: "\f252";
}
.fa-hourglass-3:before,
.fa-hourglass-end:before {
  content: "\f253";
}
.fa-hourglass:before {
  content: "\f254";
}
.fa-hand-grab-o:before,
.fa-hand-rock-o:before {
  content: "\f255";
}
.fa-hand-stop-o:before,
.fa-hand-paper-o:before {
  content: "\f256";
}
.fa-hand-scissors-o:before {
  content: "\f257";
}
.fa-hand-lizard-o:before {
  content: "\f258";
}
.fa-hand-spock-o:before {
  content: "\f259";
}
.fa-hand-pointer-o:before {
  content: "\f25a";
}
.fa-hand-peace-o:before {
  content: "\f25b";
}
.fa-trademark:before {
  content: "\f25c";
}
.fa-registered:before {
  content: "\f25d";
}
.fa-creative-commons:before {
  content: "\f25e";
}
.fa-gg:before {
  content: "\f260";
}
.fa-gg-circle:before {
  content: "\f261";
}
.fa-tripadvisor:before {
  content: "\f262";
}
.fa-odnoklassniki:before {
  content: "\f263";
}
.fa-odnoklassniki-square:before {
  content: "\f264";
}
.fa-get-pocket:before {
  content: "\f265";
}
.fa-wikipedia-w:before {
  content: "\f266";
}
.fa-safari:before {
  content: "\f267";
}
.fa-chrome:before {
  content: "\f268";
}
.fa-firefox:before {
  content: "\f269";
}
.fa-opera:before {
  content: "\f26a";
}
.fa-internet-explorer:before {
  content: "\f26b";
}
.fa-tv:before,
.fa-television:before {
  content: "\f26c";
}
.fa-contao:before {
  content: "\f26d";
}
.fa-500px:before {
  content: "\f26e";
}
.fa-amazon:before {
  content: "\f270";
}
.fa-calendar-plus-o:before {
  content: "\f271";
}
.fa-calendar-minus-o:before {
  content: "\f272";
}
.fa-calendar-times-o:before {
  content: "\f273";
}
.fa-calendar-check-o:before {
  content: "\f274";
}
.fa-industry:before {
  content: "\f275";
}
.fa-map-pin:before {
  content: "\f276";
}
.fa-map-signs:before {
  content: "\f277";
}
.fa-map-o:before {
  content: "\f278";
}
.fa-map:before {
  content: "\f279";
}
.fa-commenting:before {
  content: "\f27a";
}
.fa-commenting-o:before {
  content: "\f27b";
}
.fa-houzz:before {
  content: "\f27c";
}
.fa-vimeo:before {
  content: "\f27d";
}
.fa-black-tie:before {
  content: "\f27e";
}
.fa-fonticons:before {
  content: "\f280";
}
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  assets/css/tlpteam.css                                                                              0000705                 00000154051 15242037122 0011020 0                                                                                                    ustar 00                                                                                                                                                                                                                                                       /*******************************************************************/
/******************** Joomla TLP TEAM PRO V 2.0 *********************/
/************************* www.techlabpro.com **********************/
/************************* info@techlabpro.com *********************/
/***** Copyright (c) 2015, TechLabPro.com. All right Reserved ******/
/*******************************************************************/

/* body */
body.rt-body {overflow: hidden;}
/************************** Grid ********************/
.tlp-team * { -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; }
.tlp-team *:before,
.tlp-team *:after { -webkit-box-sizing: border-box;-moz-box-sizing: border-box;box-sizing: border-box; }
.tlp-container { margin-right: auto; margin-left: auto; padding-left: 15px; padding-right: 15px; }
.container-fluid { margin-right: auto; margin-left: auto; padding-left: 15px; padding-right: 15px; }
.tlp-row { margin-left: -15px;margin-right: -15px; border: 0px solid red; }
.clearfix:before, .clearfix:after, .tlp-container:before, .tlp-container:after, .container-fluid:before, .container-fluid:after, .tlp-row:before, .tlp-row:after { content: " "; display: table; } 
.clearfix:after,.tlp-container:after, .container-fluid:after, .tlp-row:after { clear: both; }
.tlp-col-xs-1, .tlp-col-sm-1, .tlp-col-md-1, .tlp-col-lg-1, .tlp-col-xs-2, .tlp-col-sm-2, .tlp-col-md-2, .tlp-col-lg-2, .tlp-col-xs-3, .tlp-col-sm-3, .tlp-col-md-3, .tlp-col-lg-3, .tlp-col-xs-4, .tlp-col-sm-4, .tlp-col-md-4, .tlp-col-lg-4, .tlp-col-xs-5, .tlp-col-sm-5, .tlp-col-md-5, .tlp-col-lg-5, .tlp-col-xs-6, .tlp-col-sm-6, .tlp-col-md-6, .tlp-col-lg-6, .tlp-col-xs-7, .tlp-col-sm-7, .tlp-col-md-7, .tlp-col-lg-7, .tlp-col-xs-8, .tlp-col-sm-8, .tlp-col-md-8, .tlp-col-lg-8, .tlp-col-xs-9, .tlp-col-sm-9, .tlp-col-md-9, .tlp-col-lg-9, .tlp-col-xs-10, .tlp-col-sm-10, .tlp-col-md-10, .tlp-col-lg-10, .tlp-col-xs-11, .tlp-col-sm-11, .tlp-col-md-11, .tlp-col-lg-11, .tlp-col-xs-12, .tlp-col-sm-12, .tlp-col-md-12, .tlp-col-lg-12 { position: relative; min-height: 1px; padding-left: 15px; padding-right: 15px; }
.tlp-col-xs-1, .tlp-col-xs-2, .tlp-col-xs-3, .tlp-col-xs-4, .tlp-col-xs-5, .tlp-col-xs-6, .tlp-col-xs-7, .tlp-col-xs-8, .tlp-col-xs-9, .tlp-col-xs-10, .tlp-col-xs-11, .tlp-col-xs-12 { float: left; }
.tlp-col-xs-12 { width: 100%; } .tlp-col-xs-11 { width: 91.66666667%; } .tlp-col-xs-10 { width: 83.33333333%; } .tlp-col-xs-9 { width: 75%; } .tlp-col-xs-8 { width: 66.66666667%; } .tlp-col-xs-7 { width: 58.33333333%; } .tlp-col-xs-6 { width: 50%; } .tlp-col-xs-5 { width: 41.66666667%; } .tlp-col-xs-4 { width: 33.33333333%; } .tlp-col-xs-3 { width: 25%; } .tlp-col-xs-2 { width: 16.66666667%; } .tlp-col-xs-1 { width: 8.33333333%; }

/********************** Common Css *************************/

.tlp-team figure { margin: 0px; }
.tlp-team .tlp-round-picture img {-webkit-border-radius: 50%; -moz-border-radius: 50%; border-radius: 50%;  }
.tlp-team .tlp-position { font-weight: 400; }
.tlp-team .margin-bottom { margin-bottom: 30px; }
.tlp-team .tlp-team h3 { margin-top: 2px; font-weight: 400 !important; }
.tlp-team .img-responsive { width: 100%; height: auto; display: block; }
.tlp-team .paddingl0 { padding-left: 0px; }
.tlp-team .paddingr0 { padding-right: 0px; }
.tlp-team .tlp-equal-height { margin-bottom: 30px; }
.tlp-team .allmargin0 { margin:0px !important; padding: 0px !important; }
.tlp-team .short-bio p { margin-top: 0px; }
.alignmiddle { vertical-align: middle; }
.tlp-team .button-group{text-align: center;padding-bottom: 20px;}
.tlp-team .button-group button { border:none;color: #fff;margin: 5px;padding: 3px 10px; outline: 0px;}
.tlp-team .button-group button:hover{ opacity: .8;}
.tlp-team .button-group .selected{ background: #26AAE1;}
/* progress bar */
.tlp-team .skill-prog { height: 4px; margin-bottom: 4px; background: #fff; border: 1px solid #edeaea; border-radius: 4px; box-sizing: content-box; -moz-box-sizing: content-box; -webkit-box-sizing: content-box; }
.tlp-team .skill-prog .fill { height:100%; -webkit-animation: 400ms; background-color: #00afd1; border-radius: 4px; }
.tlp-tooltip + .tooltip > .tooltip-inner { background-color: #f00; font-size: 80%; }
.tooltip.top .tooltip-arrow { border-top-color: red; }
.tlp-team .tlp-team-skill { font-size: 90%; padding: 0px 0px 15px 0px; margin: 0px; }
.tlp-team .single-team-area img.tlp-grayscale,
.tlp-team .tlp-team-grid img.tlp-grayscale {
    -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    -o-filter: grayscale(100%);
    filter: url(data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter i…0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0\'/></filter></svg>#grayscale);
    filter: grayscale(100%);
}
.tlp-team .single-team-area:hover img.tlp-grayscale,
.tlp-team .team-item:hover img.tlp-grayscale {
    -webkit-filter: grayscale(0);
    -moz-filter: grayscale(0);
    -o-filter: grayscale(0);
    filter: none;
    filter: grayscale(0);
}
.tlp-team .tlp-team-detail {
    padding-bottom: 50px;
}
.tlp-team .tlp-team-detail .social-icons {
    text-align: center;
    margin-top: 20px;

}
/*********** Social Icon ***************/
.tlp-team .social-icons { margin: 0px; padding: 0px; display: block;}
.tlp-team .social-icons a:before {  content: none;}
.tlp-team .social-icons a { text-align: center; color: #fff; text-decoration: none; display: inline-block; margin-right:4px; margin-bottom: 6px; font-size: 20px; padding: 0px; width: 30px; height: 30px; }
.tlp-team .social-icons a .fa { padding: 7px 0px 0px; display: block; }
.tlp-team .social-icons a:hover .fa-facebook { background: #3b5999; color: #fff; width: 30px; height: 30px; }
.tlp-team .social-icons a:hover .fa-twitter { background: #3aa9e0; color: #fff; width: 30px; height: 30px; }
.tlp-team .social-icons a:hover .fa-linkedin { background: #0080b1; color: #fff; width: 30px; height: 30px; }
.tlp-team .social-icons a:hover .fa-google-plus { background: #D04333; color: #fff; width: 30px; height: 30px; }
.tlp-team .social-icons a:hover .fa-youtube { background: #cd322d; color: #fff; width: 30px; height: 30px; }
.tlp-team .social-icons a:hover .fa-vimeo { background: #44bbff; color: #fff; width: 30px; height: 30px; }
.tlp-team .social-icons a:hover .fa-instagram { background: #3e729a; color: #fff; width: 30px; height: 30px; }
.tlp-team .tlp-round-picture .social-icons a { -webkit-border-radius: 50%; -moz-border-radius: 50%; border-radius: 50%; }
.tlp-team .tlp-round-picture .social-icons a:hover .fa-facebook, 
.tlp-team .tlp-round-picture .social-icons a:hover .fa-twitter,
.tlp-team .tlp-round-picture .social-icons a:hover .fa-linkedin,
.tlp-team .tlp-round-picture .social-icons a:hover .fa-google-plus,
.tlp-team .tlp-round-picture .social-icons a:hover .fa-youtube,
.tlp-team .tlp-round-picture .social-icons a:hover .fa-vimeo,
.tlp-team .tlp-round-picture .social-icons a:hover .fa-instagram { -webkit-border-radius: 50%; -moz-border-radius: 50%; border-radius: 50%; }

/***************** Contact info *******************/
.tlp-team .contact-info { margin: 0px; padding: 0px 0px 10px 0px; }
.tlp-team .contact-info ul { margin: 0px; padding: 0px; list-style: none; }
.tlp-team .contact-info ul li { margin: 0px; padding: 0px; list-style: none !important; border: none; background: no-repeat; }
.tlp-team .contact-info i { padding-right: 8px; }

/******************** Layout 1 ***********************/
.tlp-team .layout1 { position: relative; }
.tlp-team .tlp-content-layout1,
.mod-tlp-team .tlp-content-layout1 { background: #f12929; color: #ffffff; margin: 0px; padding:0px; }
.tlp-team .layout1 h3,
.tlp-team .isotope9 h3 { margin: 0px; padding: 10px 10px 5px 10px; text-align: center; }
.tlp-team .layout1 .tlp-position,
.tlp-team .isotope9 .tlp-position { padding: 0 10px 10px; }
.tlp-team .layout1 .single-team-area h3, 
.tlp-team .layout1 .single-team-area h3 a, 
.tlp-team .layout1 .tlp-position,
.tlp-team .isotope9 .single-team-area h3, 
.tlp-team .isotope9 .single-team-area h3 a, 
.tlp-team .isotope9 .tlp-position { color: #fff;}
.tlp-team .layout1 .single-team,
.tlp-team .isotope9 .single-team { position: relative; overflow: hidden;  }
.tlp-team .layout1 .tlp-round-picture .overlay,
.tlp-team .isotope9 .tlp-round-picture .overlay { display: inline-block; -webkit-border-radius: 50%; -moz-border-radius: 50%; border-radius: 50%;}
.tlp-team .layout1 .overlay,
.tlp-team .isotope9 .overlay { position: absolute; bottom: 0;left: 0; height: 100%; width: 100%; color: #fff; -webkit-transition: all 0.5s ease-out 0.15s; -moz-transition: all 0.5s ease-out 0.15s; -ms-transition: all 0.5s ease-out 0.15s; -o-transition: all 0.5s ease-out 0.15s; transition: all 0.5s ease-out 0.15s; } 
.tlp-team .layout1 .single-team-area .overlay,
.tlp-team .layout1 .single-team-area .overlay-element h3,
.tlp-team .layout1 .single-team-area .detile-popup,
.tlp-team .isotope9 .single-team-area .overlay,
.tlp-team .isotope9 .single-team-area .overlay-element h3,
.tlp-team .isotope9 .single-team-area .detile-popup { opacity: 0; }
.tlp-team .layout1 .single-team-area:hover .overlay,
.tlp-team .layout1 .single-team-area:hover .overlay-element h3,
.tlp-team .layout1 .single-team-area:hover .detile-popup,
.tlp-team .single-team-area:hover .overlay,
.tlp-team .isotope9 .single-team-area:hover .overlay,
.tlp-team .isotope9 .single-team-area:hover .overlay-element h3,
.tlp-team .isotope9 .single-team-area:hover .detile-popup,
.tlp-team .single-team-area:hover .overlay { opacity: 1; -moz-transform: scale(1); -webkit-transform: scale(1); -o-transform: scale(1); -ms-transform: scale(1); transform: scale(1); }
.tlp-team .layout1 .short-bio,
.tlp-team .isotope9 .short-bio { padding: 10px 0px 0px;}
.tlp-team .layout1 .overlay .social-icons,
.tlp-team .isotope9 .overlay .social-icons { text-align: center; padding: 20% 0; }
.tlp-team .layout1 .overlay .social-icons1 { text-align: center; padding: 20% 0; }
.tlp-team .layout1 .single-team:hover .overlay,
.tlp-team .isotope9 .single-team:hover .overlay { top: 0; }
.tlp-team .layout1 .single-team-area:hover > .single-team:before,
.tlp-team .isotope9 .single-team-area:hover > .single-team:before { display: none; }
.tlp-team .layout1 .overlay-element,
.tlp-team .isotope9 .overlay-element { text-align: center; color: #ffffff; }
.tlp-team .layout1 .overlay-element .detail-link i.fa,
.tlp-team .isotope9 .overlay-element .detail-link i.fa { color: #ffffff; font-size: 20px; margin-top: 45%; z-index: 9999; padding:4px 6px; }
.tlp-team .layout1 .overlay-element .detail-link:hover i.fa,
.tlp-team .isotope9 .overlay-element .detail-link:hover i.fa { background: #fff; color: #ed344a; -webkit-border-radius: 50%; -moz-border-radius: 50%; border-radius: 50%;  }
.tlp-team .layout1 .contact-info,
.tlp-team .isotope9 .contact-info { margin: 0px; padding: 0px 0px 10px 0px; }
.tlp-team .layout1 .contact-info ul,
.tlp-team .isotope9 .contact-info ul { margin: 0px; padding: 0px; }
.tlp-team .layout1 .contact-info ul li,
.tlp-team .isotope9 .contact-info ul li { margin: 0px; padding: 0px; list-style: none; }
.tlp-team .layout1 .contact-info i,
.tlp-team .isotope9 .contact-info i { padding-right: 8px; }
.tlp-team .layout1 .tlp-round-picture:hover .overlay,
.tlp-team .isotope9 .tlp-round-picture:hover .overlay { top: 0; -webkit-border-radius: 50%; -moz-border-radius: 50%; border-radius: 50%; }

/************************ End Layout 1 ******************/
/************************ Start Layout 2 ******************/
.tlp-team .layout2 .single-team-area .tlp-img { overflow: hidden; }
.tlp-team .layout2 h3 { margin: 0px; padding: 0px 0px 5px; }
.tlp-team .layout2 .short-bio { padding: 5px 0px; }
.tlp-team .layout2 .contact-info { margin: 0px; padding: 0px 0px 10px 0px; }
.tlp-team .layout2 .contact-info ul { margin: 0px; padding: 0px; }
.tlp-team .layout2 .contact-info ul li { margin: 0px; padding: 0px; list-style: none; }
.tlp-team .layout2 .contact-info i { padding-right: 8px; }
.tlp-team .layout2 .tlp-round-picture img { -webkit-border-radius: 50%; -moz-border-radius: 50%; border-radius: 50%; }

/************************ End Layout 2 ********************/

/************************ Start Layout 3 ******************/
.tlp-team .layout3 .tlp-content { background: none; padding: 10px 0px 8px; }
.tlp-team .layout3 .single-team-area  h3 { margin-top: 0px; padding-top: 6px; }
.plg-tlp-team h3,
.plg-tlp-team h3 a,
.plg-tlp-team h3 span { margin-top: 10px!important; padding-top: 1px; }
.tlp-team .layout3 .short-bio { padding: 0px 0px 0px; }
.tlp-team .layout3 .contact-info { margin: 0px; padding: 0px 0px 10px 0px; }
.tlp-team .layout3 .contact-info ul { margin: 0px; padding: 0px; }
.tlp-team .layout3 .contact-info ul li { margin: 0px; padding: 0px; list-style: none; }
.tlp-team .layout3 .contact-info i { padding-right: 8px; }
.tlp-team .layout3 .tlp-round-picture img { -webkit-border-radius: 50%; -moz-border-radius: 50%; border-radius: 50%; }

/************************ End Layout 3 ********************/
/************************ Start Layout 4 ******************/
.tlp-team .layout4 .single-team-area,
.tlp-team .layout4 .single-team-area { position: relative; }
.tlp-team .layout4 .single-team-area figure { overflow: hidden; }
.tlp-team .layout4 .single-team-area h3 a ,
.tlp-team .layout4 .single-team-area h3 { padding: 0; margin: 10px 5px;  text-align: center; color: #fff; }
.tlp-team .layout4 .tlp-position { color: #fff; padding-bottom: 0px; margin-bottom: 0px; display: inline; }
.tlp-team .layout4 .short-bio { text-align: center; padding: 0px 0px 0px; line-height: 20px; padding-top: 10px; }
.tlp-team .layout4 .single-team-area .overlay { position: absolute; bottom: 0; left: 0; color: #fff; width: 100%; height: 100%; background-color: rgba(217, 35, 45, 0.85); -webkit-transition: all 0.3s ease-out 0s; -moz-transition: all 0.3s ease-out 0s; -ms-transition: all 0.3s ease-out 0s; -o-transition: all 0.3s ease-out 0s; transition: all 0.3s ease-out 0s; text-align: center; }
.tlp-team .layout4 .single-team-area .tlp-content { text-align: center; padding: 20px 20px 5px; padding-top: 10%; }
.tlp-team .layout4 .single-team-area .overlay,
.tlp-team .layout4 .single-team-area .detile-popup { -moz-transform: scale(0.5); -webkit-transform: scale(0.5); -o-transform: scale(0.5); -ms-transform: scale(0.5); transform: scale(0.5); opacity: 0; }
.tlp-team .layout4 .single-team-area:hover .overlay, 
.tlp-team .layout4 .single-team-area:hover .detile-popup {opacity: 1; -moz-transform: scale(1); -webkit-transform: scale(1); -o-transform: scale(1); -ms-transform: scale(1); transform: scale(1); }
.tlp-team .layout4 .tlp-round-picture .overlay { -webkit-border-radius: 50%; -moz-border-radius: 50%; border-radius: 50%; padding-top: 10%; }
.tlp-team .layout4 .tlp-round-picture:hover .overlay { top: 0; -webkit-border-radius: 50%; -moz-border-radius: 50%; border-radius: 50%; }
.tlp-team .layout4 .tlp-round-picture .tlp-content{ background: none; padding-top: 15%;}
.tlp-team .layout4 .tlp-round-picture .overlay .social-icons { text-align: center; margin: 0px; padding:0px; }
/************************ End Layout 4 ********************/

/************************ Start Layout 5 ******************/
.tlp-team .layout5 .tlp-content { background: none; }
.tlp-team .layout5 .table tr td { vertical-align: middle; }
.tlp-team .layout5 .table>thead>tr>th, 
.tlp-team-layout5 .table>tbody>tr>th, 
.tlp-team-layout5 .table>thead>tr>td, 
.table>tbody>tr>td { vertical-align: middle !important; }

/************************ End Layout 5 ********************/

/*********************** Start Layout 6 ********************/
.tlp-team .layout6 .tlp-content h3 a span,
.tlp-team .layout6 .tlp-content h3 { margin: 15px 0px 8px; color: #fff; }
.tlp-team .layout6 .tlp-position { color: #fff; text-align: left; }
.tlp-team .layout6 .short-bio { padding-top: 6px; line-height: 20px; text-align: left; }
.tlp-team .layout6 .tlp-img-block { padding: 0; }
.tlp-team .layout6 .tlp-info-block { padding: 0; background: #fd662d; color: #fff; position: relative; }
.tlp-team .layout6 .tlp-right-arrow:after { border-color: transparent #fd642d; border-style: solid; border-width: 0 34px 34px 0; content: " "; display: block; height: 0; left: -34px; position: absolute; top: 50%; width: 0; }
.tlp-team .layout6 .tlp-left-arrow:after {  border-color: #fd642d transparent transparent; border-style: solid; border-width: 34px 34px 0 0; content: " "; display: block; height: 0; position: absolute; right: -34px;top: 50%; width: 0; z-index: 2;}
.tlp-team .layout6 .tlp-info-block article { padding-left: 15px; padding-right: 15px; }
.tlp-team .layout6 .tlp-img.tlp-single-team { height: 100%; width: 100%; }
.tlp-team .layout6 .tlp-img-responsive { width: 100%; height: 100%; }
.tlp-team .layout6 .contact-info { margin: 0px; padding: 0px 0px 10px 0px; }
.tlp-team .layout6 .contact-info ul { margin: 0px; padding: 0px; list-style: none; }
.tlp-team .layout6 .contact-info ul li { margin: 0px; padding: 0px; list-style: none; }
.tlp-team .layout6 .contact-info i { padding-right: 8px; }
.tlp-team .layout6 .margin-bottom { margin-bottom:0px !important; }
.tlp-team .layout6 .equal-height { margin-bottom:0px !important; }
/*********************** End Layout 6 ********************/

/*********************** Start Layout 7 ********************/
.tlp-team .layout7 .tlp-team-item h3,.tlp-team .layout7 .tlp-team-item .tlp-position { padding-left: 17px; padding-right: 17px; }
.tlp-team .layout7 .social-icons { bottom: 10px;left: 3px;position: absolute;right: 0; text-align: center; }
.tlp-team .layout7 .tlp-team-item { position: relative; overflow: hidden; text-align: center; cursor: pointer; }
.tlp-team .layout7 .tlp-team-item img { position: relative; display: block; }
.tlp-team .layout7 .tlp-team-item figcaption { color: #fff; -webkit-backface-visibility: hidden; backface-visibility: hidden; }
.tlp-team .layout7 .tlp-team-item figcaption::before,
.tlp-team .layout7 .tlp-team-item figcaption::after { pointer-events: none; }
.tlp-team .layout7 .tlp-team-item figcaption { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }
.tlp-team .layout7 .tlp-team-item img { -webkit-transition: opacity 0.35s; transition: opacity 0.35s; }
.tlp-team .layout7 figcaption:hover { background-color: rgba(46, 44, 44, .4); }
.tlp-team .layout7 .tlp-team-item:hover .tpl-social { -webkit-transition: -webkit-transform 0.35s; transition: transform 0.35s; -webkit-transform: translate3d(0, -10px, 0); transform: translate3d(0, -10px, 0); left: 0; margin: auto; position: absolute; right: 0; text-align: center; top: -30px; }
.tlp-team .layout7 .tlp-team-item figcaption::before,
.tlp-team .layout7 .tlp-team-item figcaption::after { position: absolute;top: 15px; right: 15px; bottom: 15px; left: 15px; content: ''; opacity: 0; -webkit-transition: opacity 0.35s, -webkit-transform 0.35s; transition: opacity 0.35s, transform 0.35s; }
.tlp-team .layout7 .tlp-team-item figcaption::before { border-top: 1px solid #fff; border-bottom: 1px solid #fff; -webkit-transform: scale(0, 1); transform: scale(0, 1); }
.tlp-team .layout7 .tlp-team-item figcaption::after { border-right: 1px solid #fff; border-left: 1px solid #fff; -webkit-transform: scale(1, 0); transform: scale(1, 0); }
.tlp-team .layout7 .tlp-team-item h3 { padding-top: 10%; -webkit-transition: -webkit-transform 0.35s; transition: transform 0.35s; -webkit-transform: translate3d(0, -20px, 0); transform: translate3d(0, -20px, 0); opacity: 0; }
.tlp-team .layout7 .tlp-team-item .tlp-position,.tlp-team .layout7 .tlp-team-item:hover .short-bio { opacity: 0; -webkit-transition: opacity 0.35s, -webkit-transform 0.35s; transition: opacity 0.35s, transform 0.35s; -webkit-transform: translate3d(0, 20px, 0); transform: translate3d(0, 20px, 0); }
.tlp-team .layout7 .tlp-team-item:hover figcaption::before, .tlp-team .layout7 .tlp-team-item:hover figcaption::after { opacity: 1; -webkit-transform: scale(1); transform: scale(1); }
.tlp-team .layout7 .tlp-team-item:hover h3,.tlp-team .layout7 .tlp-team-item:hover .short-bio, .tlp-team .layout7 .tlp-team-item:hover .tlp-position { opacity: 1; -webkit-transform: translate3d(0, 0, 0); transform: translate3d(0, 0, 0); }
.tlp-team .layout7 .tlp-team-item .short-bio { opacity: 0; padding: 5px 17px; }
.tlp-team .layout7 .tlp-team-item .short-bio p { line-height: 22px; }
.tlp-team .layout7 .tlp-round-picture .tlp-team-item figcaption { -webkit-border-radius: 50%; -moz-border-radius: 50%; border-radius: 50%; }
.tlp-team .layout7 .tlp-round-picture figcaption::before,.tlp-team .layout7 .tlp-round-picture figcaption::after { border: none; }
.tlp-team .layout7 .tlp-round-picture .social-icons { bottom: 20px; }/*********************** End Layout 7 ********************/

/*********************** Start Layout 8 ********************/
.tlp-team .layout8 .social-icons { text-align: center !important; display: inline;}
.tlp-team .layout8 .single-team-area { position: relative; overflow: hidden; }
.tlp-team .layout8 .single-team-area img { position: relative; display: block; }
.tlp-team .layout8 .tlp-overlay { overflow: hidden; padding: 15px; margin: 0px; color: #fff; font-size:14px; -webkit-backface-visibility: hidden; backface-visibility: hidden; position: absolute; left: 0; width: 100%; height: 100%;top: auto; bottom: 0;  color: #fff; -webkit-transition: -webkit-transform 0.55s; transition: transform 0.55s; -webkit-transform: translate3d(0,100%,0); transform: translate3d(0,100%,0); }
.tlp-team .layout8 .tlp-overlay .tlp-title { background-color: rgba(245, 46, 46, .9); color: #fff; opacity: 0; padding: 5px 10px; margin: 0px; color: #fff; -webkit-backface-visibility: hidden; backface-visibility: hidden; position: absolute; left: 0; width: 100%; height: 100%; bottom: 60px; height: 60px; -webkit-transition: -webkit-transform 0.35s; transition: transform 0.35s; -webkit-transform: translate3d(0,100%,0); transform: translate3d(0,100%,0); }
.tlp-team .layout8 .tlp-overlay h3,
.tlp-team .layout8 .tlp-overlay h3 a { color: #fff; font-size: 20px; }
.tlp-team .layout8 .tlp-overlay .tlp-content { position: absolute; width: 91%; bottom: 70px; text-align: center; }
.tlp-team .layout8 .tlp-overlay .tlp-content p { line-height: 22px; margin: 0px; padding: 0px 0px 5px; }
.tlp-team .layout8 .tlp-overlay h3 { -webkit-transition: -webkit-transform 0.35s; transition: transform 0.35s; -webkit-transform: translate3d(0,200%,0); transform: translate3d(0,200%,0); }
.tlp-team .layout8 .tlp-overlay h3 { margin: 0px; padding: 0px 0px 4px; }
.tlp-team .layout8 .tlp-overlay .tlp-position { color: #fff; }
.tlp-team .layout8 .single-team-area:hover img { opacity: .9; }
.tlp-team .layout8 .single-team-area:hover .tlp-title,
.tlp-team .layout8 .single-team-area:hover .tlp-content { opacity: 1; }
.tlp-team .layout8 .single-team-area:hover .tlp-overlay,
.tlp-team .layout8 .single-team-area:hover h3 { -webkit-transform: translate3d(0,0,0); transform: translate3d(0,0,0); }
.tlp-team .layout8 .single-team-area:hover h3 { opacity: 1; -webkit-transition-delay: 0.05s; transition-delay: 0.05s; }
.tlp-team .layout8 .tlp-round-picture .tlp-overlay { -webkit-border-radius: 50%; -moz-border-radius: 50%; border-radius: 50%; padding-top: 10%; }
.tlp-team .layout8 .tlp-round-picture:hover .tlp-overlay { top: 0; -webkit-border-radius: 50%; -moz-border-radius: 50%; border-radius: 50%; }

/*********************** End Layout 8 ********************/

/******************************** Layout 9 ****************************/

.tlp-team .layout9 .single-team-area,
.tlp-team .isotope3 .single-team-area { position: relative; overflow: hidden; margin: 0px; width: 100%; height: auto; text-align: center; }
.tlp-team .layout9 .short-bio,
.tlp-team .isotope3 .short-bio { margin-bottom: 10px;}
.tlp-team .layout9 img,
.tlp-team .isotope3 img { position: relative; display: block; }
.tlp-team .layout9 .tlp-overlay,
.tlp-team .isotope3 .tlp-overlay { overflow: hidden; position: absolute; top: 0; left: 0; width: 100%; height: 100%; padding: 0px; color: #fff; -webkit-backface-visibility: hidden; backface-visibility: hidden; }
.tlp-team .layout9 .single-team-area:hover img,
.tlp-team .isotope3 .single-team-area:hover img { -webkit-transform: scale(1); transform: scale(1); }
.tlp-team .layout9 .single-team-area h3,
.tlp-team .isotope3 .single-team-area h3 { font-size: 24px; margin-top: 80%; padding: 0px 15px; margin-bottom: 8px; -webkit-transition: -webkit-transform 0.35s; transition: transform 0.35s; -webkit-transform: translate3d(0,20px,0); transform: translate3d(0,20px,0); }
.tlp-team .layout9 .single-team-area h3 a,
.tlp-team .isotope3 .single-team-area h3 a { color: #fff;}
.tlp-team .layout9 .single-team-area p,
.tlp-team .isotope3 .single-team-area p { margin: 0; padding: 0px 15px 5px 15px; line-height: 20px; opacity: 0; -webkit-transition: opacity 0.35s, -webkit-transform 0.35s; transition: opacity 0.35s, transform 0.35s; -webkit-transform: translate3d(0,20px,0) scale(1.1); transform: translate3d(0,20px,0) scale(1.1); }
.tlp-team .layout9 .single-team-area:hover .tlp-overlay,
.tlp-team .isotope3 .single-team-area:hover .tlp-overlay { -webkit-transition: all 0.35s ease-out 0.15s; -moz-transition: all 0.35s ease-out 0.15s; -ms-transition: all 0.35s ease-out 0.15s; -o-transition: all 0.35s ease-out 0.15s; transition: all 0.35s ease-out 0.15s; }
.tlp-team .layout9 .single-team-area .social-icons,
.tlp-team .isotope3 .single-team-area .social-icons { margin: 10px 0px; text-align: center; padding: 0px 0px 10px; opacity: 0; -webkit-transition: opacity 0.35s, -webkit-transform 0.35s; transition: opacity 0.35s, transform 0.35s; -webkit-transform: translate3d(0,20px,0) scale(1.1); transform: translate3d(0,20px,0) scale(1.1); }
.tlp-team .layout9 .single-team-area:hover .social-icons,
.tlp-team .isotope3 .single-team-area:hover .social-icons { opacity: 1; }
.tlp-team .layout9 .single-team-area:hover h3,
.tlp-team .isotope3 .single-team-area:hover h3 { margin-top: 20%; -webkit-transform: translate3d(0,0,0); transform: translate3d(0,0,0); }
.tlp-team .layout9 .single-team-area:hover .tlp-position,
.tlp-team .isotope3 .single-team-area:hover .tlp-position { opacity: 1; -webkit-transform: translate3d(0,0,0); transform: translate3d(0,0,0); }
.tlp-team .layout9 .single-team-area:hover p,
.tlp-team .isotope3 .single-team-area:hover p { opacity: 1; -webkit-transform: translate3d(0,0,0) scale(1); transform: translate3d(0,0,0) scale(1); }
.tlp-team .layout9 .tlp-round-picture .tlp-overlay,
.tlp-team .isotope3 .tlp-round-picture .tlp-overlay { -webkit-border-radius: 50%; -moz-border-radius: 50%; border-radius: 50%; padding-top: 10%; }
.tlp-team .layout9 .tlp-round-picture:hover .tlp-overlay,
.tlp-team .isotope3 .tlp-round-picture:hover .tlp-overlay { top: 0; -webkit-border-radius: 50%; -moz-border-radius: 50%; border-radius: 50%; }

/************************* Layout 10 **************************/
.tlp-team .layout10 .image-container { overflow: hidden; position: relative; width: 100%; padding: 0; margin: 0; line-height: 11px; }
.tlp-team .layout10 .image-container img { -webkit-transition: all 1.1s ease; -moz-transition: all 1.1s ease; -o-transition: all 1.1s ease; -ms-transition: all 1.1s ease; transition: all 1.1s ease; max-width: 100%; }
.tlp-team .layout10 .image-container:hover img { -webkit-transform: scale(1.1); -moz-transform: scale(1.1); -ms-transform: scale(1.1); -o-transform: scale(1.1); transform: scale(1.1); }
.tlp-team .layout10 .tlp-overlay { position: absolute; bottom: 0; left: 0; height: 100%; width: 100%; color: #fff; background-color: rgba(217, 35, 45, 0.85); -webkit-transition: all 0.5s ease-out 0.15s; -moz-transition: all 0.5s ease-out 0.15s; -ms-transition: all 0.5s ease-out 0.15s; -o-transition: all 0.5s ease-out 0.15s; transition: all 0.5s ease-out 0.15s; text-align: center; }
.tlp-team .layout10 .tlp-overlay .tlp-title { opacity: 0; -webkit-transform: translateY(-100px); -moz-transform: translateY(-100px); -ms-transform: translateY(-100px); -o-transform: translateY(-100px); transform: translateY(-100px); -webkit-transition: all 0.5s ease-out 0.15s; -moz-transition: all 0.5s ease-out 0.15s; -ms-transition: all 0.5s ease-out 0.15s; -o-transition: all 0.5s ease-out 0.15s; transition: all 0.5s ease-out 0.15s; display: block; background-color: rgba(255, 255, 255, 0.85); text-align: center; padding: 1px 0; margin: 20px 0px 5px; color: #000; font-size: 20px; }
.tlp-team .layout10 .tlp-position { padding: 8px 10px; color: #fff;}
.tlp-team .layout10 .tlp-overlay:hover .tlp-title { opacity: 1; -webkit-transform: translateY(0px); -moz-transform: translateY(0px); -ms-transform: translateY(0px); -o-transform: translateY(0px); transform: translateY(0px); }
.tlp-team .layout10 .tlp-overlay .tlp-title h3,
.tlp-team .layout10 .tlp-overlay .tlp-title h3 a { color: #000; padding: 10px; margin: 0px; }
.tlp-team .layout10 .tlp-overlay p { padding:0px 10px 5px; margin: 0px; line-height: 20px; }
.tlp-team .layout10 .tlp-overlay { -webkit-opacity: 0; -moz-opacity: 0; opacity: 0; -webkit-transition: all 0.5s ease-out 0.15s; -moz-transition: all 0.5s ease-out 0.15s; -ms-transition: all 0.5s ease-out 0.15s; -o-transition: all 0.5s ease-out 0.15s; transition: all 0.5s ease-out 0.15s; }
.tlp-team .layout10 .image-container:hover .tlp-overlay { -webkit-opacity: 1; -moz-opacity: 1; opacity: 1; -webkit-transform: translateY(0px); -moz-transform: translateY(0px); -ms-transform: translateY(0px); -o-transform: translateY(0px); transform: translateY(0px); }
.tlp-team .layout10 .tlp-team-item { border: 6px solid #fff; box-shadow: 0 0 5px rgba(0, 0, 0, 0.3); }
.tlp-team .layout10 .tlp-team-item .tlp-info h3,
.tlp-team .layout10 .tlp-team-item .tlp-info h3 a { margin: 15px 5px; padding: 0; }

/*********************** Start Layout 11 & Isotope 5 ********************/
.tlp-team .layout11 .tlp-position,
.tlp-team .isotope5 .tlp-position { color: #fff; margin: 0px; padding: 0px; line-height: 22px; }
.tlp-team .layout11 .single-team-area, 
.tlp-team .isotope5 .single-team-area { position: relative; overflow: hidden; }
.tlp-team .layout11 .single-team-area img,
.tlp-team .isotope5 .single-team-area img { position: relative; display: block;}
.tlp-team .layout11 .single-team-area .tlp-overlay,
.tlp-team .isotope5 .single-team-area .tlp-overlay { background: none!important;  padding: 15px; margin: 0px; color: #fff; font-size:14px; -webkit-backface-visibility: hidden; backface-visibility: hidden;position: absolute; left: 0; width: 100%; height: 100px;top: 0;   color: #fff; -webkit-transition: -webkit-transform 0.55s; transition: transform 0.55s; -webkit-transform: translate3d(0,100%,0); transform: translate3d(0,100%,0);  }
.tlp-team .layout11 .single-team-area .tlp-title,
.tlp-team .isotope5 .single-team-area .tlp-title { overflow: hidden; background-color: rgba(245, 46, 46, .9); color: #fff;  opacity: 1; padding: 5px 10px; margin: 0px; color: #fff; position: absolute; left: 0; width: 100%; height: 100%; bottom: 0px; height: 60px;  }
.tlp-team .layout11 .single-team-area .tlp-title h3,
.tlp-team .isotope5 .single-team-area .tlp-title h3 { margin: 3px 0px 1px; padding: 0px; color: #fff; }
.tlp-team .layout11 .single-team-area .tlp-title h3 a,
.tlp-team .isotope5 .single-team-area .tlp-title h3 a { color: #fff; font-size: 20px;  } 
.tlp-team .layout11 .single-team-area:hover img,
.tlp-team .isotope5 .single-team-area:hover img { opacity: .9; }
.tlp-team .layout11 .single-team-area:hover .tlp-title,
.tlp-team .isotope5 .single-team-area:hover .tlp-title { opacity: 1; }
.tlp-team .layout11 .tlp-round-picture h3,
.tlp-team .isotope5 .tlp-round-picture h3 { margin-bottom: 0px !important; }
.tlp-team .layout11 .tlp-round-picture ,
.tlp-team .isotope5 .tlp-round-picture { -webkit-border-radius: 50%; -ms-border-radius: 50%; -o-border-radius: 50%; -moz-border-radius: 50%; border-radius: 50%; text-align: center; }
.tlp-team .layout11 .tlp-round-picture:hover ,
.tlp-team .isotope5 .tlp-round-picture:hover { display: inline-block; }
.tlp-team .layout11 .single-team-area .social-icons,
.tlp-team .isotope5 .single-team-area .social-icons { opacity: 0; padding-top: 30px; text-align: center; }
.tlp-team .layout11 .single-team-area:hover .social-icons,
.tlp-team .isotope5 .single-team-area:hover .social-icons { -webkit-transform: translate3d(0,0,0); transform: translate3d(0,0,0); opacity: 1; -webkit-transition-delay: 0.05s; transition-delay: 0.05s; }


/*********************** Layout 12 & Isotope 6 ************************/
.tlp-team .layout12 .single-team-area,
.tlp-team .isotope6 .single-team-area { position: relative; overflow: hidden; margin: 0px; width: 100%; height: auto; text-align: center; } 
.tlp-team .layout12 img,
.tlp-team .isotope6 img { position: relative; display: block; } 
.tlp-team .layout12 .tlp-overlay,
.tlp-team .isotope6 .tlp-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%;padding: 0px; color: #fff; -webkit-backface-visibility: hidden; backface-visibility: hidden; } 
.tlp-team .layout12 .single-team-area img, 
.tlp-team .isotope6 .single-team-area img { -webkit-transition: all 1.1s ease; -moz-transition: all 1.1s ease; -o-transition: all 1.1s ease; -ms-transition: all 1.1s ease; transition: all 1.1s ease; max-width: 100%; } 
.tlp-team .layout12 .single-team-area h3,
.tlp-team .isotope6 .single-team-area h3 { font-size: 24px; text-align: left;  margin-top: 65%; padding: 0px !important; margin-bottom: 0px !important; -webkit-transition: -webkit-transform 0.35s; transition: transform 0.35s; -webkit-transform: translate3d(0,20px,0); transform: translate3d(0,20px,0); } 
.tlp-team .layout12 .single-team-area h3 span,
.tlp-team .isotope6 .single-team-area h3 span { background: #0850D0; padding:3px 10px; }
.tlp-team .layout12 .tlp-position,
.tlp-team .isotope6 .tlp-position { margin-top: 8px; text-align: left; opacity: 1;-webkit-transition: -webkit-transform 0.35s; transition: transform 0.35s; -webkit-transform: translate3d(0,20px,0); transform: translate3d(0,20px,0); }
.tlp-team .layout12 .tlp-position span,
.tlp-team .isotope6 .tlp-position span { background: #313131; padding:5px 10px; color: #fff; }
.tlp-team .layout12 .single-team-area h3 a,
.tlp-team .isotope6 .single-team-area h3 a { color: #fff; } 
.tlp-team .layout12 .single-team-area p,
.tlp-team .isotope6 .single-team-area p { margin: 0; padding: 5px 15px 14px 15px; line-height: 20px; opacity: 0; -webkit-transition: opacity 0.35s, -webkit-transform 0.35s; transition: opacity 0.35s, transform 0.35s; -webkit-transform: translate3d(0,20px,0) scale(1.1); transform: translate3d(0,20px,0) scale(1.1); } 
.tlp-team .layout12 .single-team-area:hover .tlp-overlay,
.tlp-team .isotope6 .single-team-area:hover .tlp-overlay { -webkit-transition: all 0.35s ease-out 0.15s; -moz-transition: all 0.35s ease-out 0.15s; -ms-transition: all 0.35s ease-out 0.15s; -o-transition: all 0.35s ease-out 0.15s; transition: all 0.35s ease-out 0.15s; } 
.tlp-team .layout12 .single-team-area .social-icons,
.tlp-team .isotope6 .single-team-area .social-icons { margin: 0px; text-align: center; padding: 0px; opacity: 0; -webkit-transition: opacity 0.35s, -webkit-transform 0.35s; transition: opacity 0.35s, transform 0.35s; -webkit-transform: translate3d(0,20px,0) scale(1.1); transform: translate3d(0,20px,0) scale(1.1); } 
.tlp-team .layout12 .single-team-area:hover .social-icons,
.tlp-team .isotope6 .single-team-area:hover .social-icons { opacity: 1; padding: 0px 15px;} 
.tlp-team .layout12 .single-team-area:hover h3,
.tlp-team .isotope6 .single-team-area:hover h3 { text-align: center !important; margin-top: 15%; padding: 0px 15px; -webkit-transform: translate3d(0,0,0); transform: translate3d(0,0,0); } 
.tlp-team .layout12 .single-team-area:hover p,
.tlp-team .isotope6 .single-team-area:hover p { opacity: 1; -webkit-transform: translate3d(0,0,0) scale(1); transform: translate3d(0,0,0) scale(1); }
.tlp-team .layout12 .single-team-area:hover .tlp-position,
.tlp-team .isotope6 .single-team-area:hover .tlp-position { text-align: center !important; margin-top:0px;padding: 0px 15px;opacity: 1;-webkit-transition: -webkit-transform 0.35s; transition: transform 0.35s; -webkit-transform: translate3d(0,2px,0); transform: translate3d(0,2px,0); }
.tlp-team .layout12 .single-team-area:hover h3 span, 
.tlp-team .layout12 .single-team-area:hover .tlp-position span,
.tlp-team .isotope6 .single-team-area:hover h3 span, 
.tlp-team .isotope6 .single-team-area:hover .tlp-position span { background: none!important; padding: 0px; }
.tlp-team .layout12 .tlp-round-picture .tlp-overlay, 
.tlp-team .layout12 .tlp-round-picture .single-team-area img,
.tlp-team .isotope6 .tlp-round-picture .tlp-overlay, 
.tlp-team .isotope6 .tlp-round-picture img { -webkit-border-radius: 50%; -moz-border-radius: 50%; border-radius: 50%; }
.tlp-team .layout12 .tlp-round-picture img,
.tlp-team .isotope6 .tlp-round-picture img { -webkit-transition: opacity 0.35s, -webkit-transform 0.35s; transition: opacity 0.35s, transform 0.35s; -webkit-transform: scale(1); transform: scale(1); } 

/*********************** Start Layout 13 & Isotope 7 ********************/
.tlp-team .layout13 .single-team-area,
.tlp-team .isotope7 .single-team-area { position: relative; overflow: hidden; margin: 0px; width: 100%; height: auto; text-align: center; } 
.tlp-team .layout13 .tlp-overlay,
.tlp-team .isotope7 .tlp-overlay {  position: absolute; opacity:0;top: 0; left: 0; width: 100%; height: 100%; padding: 0px; color: #fff; -webkit-transition: all 300ms ease-out; -moz-transition: all 300ms ease-out; -o-transition: all 300ms ease-out; transition: all 300ms ease-out; opacity:0; text-decoration: none; text-align: center; } 
.tlp-team .layout13 .tlp-overlay .item-info,
.tlp-team .isotope7 .tlp-overlay .item-info { z-index:10; color:#ffffff; padding-top: 10%; position: relative; }
.tlp-team .layout13 .single-team-area h3,
.tlp-team .isotope7 .single-team-area h3 { font-size: 22px; line-height: 1.2; margin: 0px; padding: 5px 0px; color: #fff; } 
.tlp-team .layout13 .tlp-overlay .item-info p,
.tlp-team .isotope7 .tlp-overlay .item-info p { padding: 0px 15px; text-align: center; }
.tlp-team .layout13 .single-team-area h3 a,
.tlp-team .isotope7 .single-team-area h3 a { color: #fff; } 
.tlp-team .layout13 .single-team-area:hover .tlp-overlay,
.tlp-team .isotope7 .single-team-area:hover .tlp-overlay {  opacity: 1; } 
.tlp-team .layout13 .single-team-area .social-icons,
.tlp-team .isotope7 .single-team-area .social-icons { color: #fff; margin: 0px; text-align: center; padding: 0px; } 
.tlp-team .layout13 .tlp-round-picture .tlp-overlay,
.tlp-team .isotope7 .tlp-round-picture .tlp-overlay { -webkit-border-radius: 50%; -moz-border-radius: 50%; border-radius: 50%; }
.tlp-team .layout13 .tlp-round-picture .item-info,
.tlp-team .isotope7 .tlp-round-picture .item-info { margin-top: 10%; }
.tlp-team .layout13 .tlp-overlay .line,
.tlp-team .isotope7 .tlp-overlay .line { height: 2px; width:0%; margin: 9px auto; background-color: #ffffff; -webkit-transition: all 500ms ease-out; -moz-transition: all 500ms ease-out; -o-transition: all 500ms ease-out; transition: all 500ms ease-out; }
.tlp-team .layout13 .tlp-overlay:hover .line,
.tlp-team .isotope7 .tlp-overlay:hover .line { width:40%; }

/*********************** Start Layout 14 & Isotope 8 ********************/
.tlp-team .layout14 .single-team-area,
.tlp-team .isotope8 .single-team-area { position: relative; overflow: hidden; margin: 0px; width: 100%; height: auto; text-align: center; } 
.tlp-team .layout14 .tlp-overlay,
.tlp-team .isotope8 .tlp-overlay { position: absolute; opacity: 0; top: 0; left: 0; width: 100%; height: 100%; padding: 0px; color: #fff; -webkit-transition: all 300ms ease-out; -moz-transition: all 300ms ease-out; -o-transition: all 300ms ease-out; transition: all 300ms ease-out; text-decoration: none; text-align: center; -webkit-transition: all 300ms ease-out;} 
.tlp-team .layout14 .single-team-area h3,
.tlp-team .isotope8 .single-team-area h3 { font-size: 22px; line-height: 1.2; margin: 0px; padding: 4px 0px; } 
.tlp-team .layout14 .tlp-overlay .item-info .item-info-top,
.tlp-team .isotope8 .tlp-overlay .item-info .item-info-top { width: 100%; top: 0; position: absolute; -webkit-transition: all 300ms ease-out; -moz-transition: all 300ms ease-out; -o-transition: all 300ms ease-out; transition: all 300ms ease-out; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; -o-box-sizing: border-box; padding:0 10px; } 
.tlp-team .layout14 .tlp-overlay .item-info .item-info-bottom,
.tlp-team .isotope8 .tlp-overlay .item-info .item-info-bottom { width: 100%; bottom: 0; position: absolute; -webkit-transition: all 300ms ease-out; -moz-transition: all 300ms ease-out; -o-transition: all 300ms ease-out; transition: all 300ms ease-out; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; -o-box-sizing: border-box; padding:0 10px; } 
.tlp-team .layout14 .tlp-overlay .item-info p,
.tlp-team .isotope8 .tlp-overlay .item-info p { padding: 0px 15px; text-align: center; }
.tlp-team .layout14 .single-team-area h3,
.tlp-team .layout14 .single-team-area h3 a,
.tlp-team .isotope8 .single-team-area h3,
.tlp-team .isotope8 .single-team-area h3 a { color: #fff; } 
.tlp-team .layout14 .single-team-area:hover .tlp-overlay,
.tlp-team .isotope8 .single-team-area:hover .tlp-overlay { opacity: 1; } 
.tlp-team .layout14 .single-team-area .social-icons,
.tlp-team .isotope8 .single-team-area .social-icons { color: #fff; margin: 0px; text-align: center; padding: 0px; } 
.tlp-team .layout14 .tlp-round-picture .tlp-overlay,
.tlp-team .isotope8 .tlp-round-picture .tlp-overlay { -webkit-border-radius: 50%; -moz-border-radius: 50%; border-radius: 50%; }
.tlp-team .layout14 .tlp-overlay .line,
.tlp-team .isotope8 .tlp-overlay .line { height: 2px; width: 0%; margin: 10px auto; background-color: #ffffff; -webkit-transition: all 500ms ease-out; -moz-transition: all 500ms ease-out; -o-transition: all 500ms ease-out; transition: all 500ms ease-out; }
.tlp-team .layout14 .tlp-overlay:hover .line,
.tlp-team .isotope8 .tlp-overlay:hover .line { width: 60%; }
.tlp-team .layout14 .tlp-overlay:hover .item-info .item-info-top,
.tlp-team .isotope8 .tlp-overlay:hover .item-info .item-info-top { top:35%; }
.tlp-team .layout14 .tlp-overlay:hover .item-info .item-info-bottom,
.tlp-team .isotope8 .tlp-overlay:hover .item-info .item-info-bottom { bottom:36%; }

/************************ Start Isotope 1 ******************/
.tlp-team .isotope1 .team-item figure { position: relative; }
.tlp-team .isotope1 .team-item h3 a,
.tlp-team .isotope1 .team-item h3 { color: #fff; }
.tlp-team .isotope1 .team-item .overlay .tlp-position { color: #fff; text-align: center; padding-bottom: 6px; margin-bottom: 0px; }
.tlp-team .isotope1 .tlp-content { background: none; padding-top: 24px; }
.tlp-team .isotope1 .team-item { overflow: hidden; position: relative; }
.tlp-team .isotope1 .overlay .short-bio { padding-top: 0px; line-height: 20px; }
.tlp-team .isotope1 .team-item .overlay { position: absolute; bottom: 0; left: 0; height: 100%; width: 100%; color: #fff; background-color: rgba(217, 35, 45, 0.85); -webkit-transition: all 0.3s ease-out 0s; -moz-transition: all 0.3s ease-out 0s; -ms-transition: all 0.3s ease-out 0s; -o-transition: all 0.3s ease-out 0s; transition: all 0.3s ease-out 0s; text-align: center; padding: 20px;display: inline-block; float: left; }
.tlp-team .isotope1 .team-item .overlay,
.tlp-team .isotope1 .team-item .detile-popup { -moz-transform: scale(0.5); -webkit-transform: scale(0.5); -o-transform: scale(0.5); -ms-transform: scale(0.5); transform: scale(0.5); opacity: 0; }
.tlp-team .isotope1 .team-item:hover .overlay,
.tlp-team .isotope1 .team-item:hover .detile-popup { opacity: 1; -moz-transform: scale(1); -webkit-transform: scale(1); -o-transform: scale(1); -ms-transform: scale(1); transform: scale(1); }
.tlp-team .isotope1 .social-icons { padding-top: 10px; }
.tlp-team .isotope1 .tlp-round-picture .overlay { -webkit-border-radius: 50%; -moz-border-radius: 50%; border-radius: 50%; padding-top: 10%; }
.tlp-team .isotope1 .tlp-round-picture:hover .overlay { top: 0; -webkit-border-radius: 50%; -moz-border-radius: 50%; border-radius: 50%; }

/*********************** End Isotope 1 ********************/

/*********************** Start Isotope 2 ********************/
.tlp-team .isotope2 .tlp-content h3 { padding-top: 10px; }
.tlp-team .isotope2 .tlp-content { background: none; padding-top: 0px; }
.tlp-team .isotope2 .team-item {  display: inline-block; float:left; }
.tlp-team .isotope2 .short-bio { padding-top: 5px; }
.tlp-team .isotope2 .contact-info { margin: 0px; padding: 0px 0px 10px 0px; }
.tlp-team .isotope2 .contact-info ul { margin: 0px; padding: 0px; }
.tlp-team .isotope2 .contact-info ul li { margin: 0px; padding: 0px; list-style: none; }
.tlp-team .isotope2 .contact-info i { padding-right: 8px; }
.tlp-team .isotope2 .social-icons { padding-top: 10px; }
/*********************** End Isotope 2 ********************/

/******************************** Isotope 4 ****************************/

.tlp-team .isotope4 .social-icons { bottom: 10px; left: 3px;position: absolute; right: 0; text-align: center; }
.tlp-team .isotope4 .tlp-team-item { position: relative; overflow: hidden; text-align: center; cursor: pointer; }
.tlp-team .isotope4 .tlp-team-item img { position: relative; display: block; }
.tlp-team .isotope4 .tlp-team-item figcaption { padding: 15px 25px; color: #fff; -webkit-backface-visibility: hidden; backface-visibility: hidden; }
.tlp-team .isotope4 .tlp-team-item figcaption::before,
.tlp-team .isotope4 .tlp-team-item figcaption::after { pointer-events: none; }
.tlp-team .isotope4 .tlp-team-item figcaption { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }
.tlp-team .isotope4 .tlp-team-item img { -webkit-transition: opacity 0.35s; transition: opacity 0.35s; }
.tlp-team .isotope4 figcaption:hover { background-color: rgba(46, 44, 44, .4); }
.tlp-team .isotope4 .tlp-team-item:hover .tpl-social { -webkit-transition: -webkit-transform 0.35s; transition: transform 0.35s; -webkit-transform: translate3d(0, -20px, 0); transform: translate3d(0, -20px, 0); left: 0; margin: auto; position: absolute; right: 0; text-align: center; top: -30px; }
.tlp-team .isotope4 .tlp-team-item figcaption::before,
.tlp-team .isotope4 .tlp-team-item figcaption::after { position: absolute; top: 15px; right: 15px; bottom: 15px; left: 15px; content: ''; opacity: 0; -webkit-transition: opacity 0.35s, -webkit-transform 0.35s; transition: opacity 0.35s, transform 0.35s; }
.tlp-team .isotope4 .tlp-team-item figcaption::before { border-top: 1px solid #fff; border-bottom: 1px solid #fff; -webkit-transform: scale(0, 1); transform: scale(0, 1); }
.tlp-team .isotope4 .tlp-team-item figcaption::after { border-right: 1px solid #fff; border-left: 1px solid #fff; -webkit-transform: scale(1, 0); transform: scale(1, 0); }
.tlp-team .isotope4 .tlp-team-item h3 { padding-top: 10%; -webkit-transition: -webkit-transform 0.35s; transition: transform 0.35s; -webkit-transform: translate3d(0, -20px, 0); transform: translate3d(0, -20px, 0); opacity: 0; }
.tlp-team .isotope4 .tlp-team-item .tlp-position,
.tlp-team .isotope4 .tlp-team-item:hover .short-bio { opacity: 0; -webkit-transition: opacity 0.35s, -webkit-transform 0.35s; transition: opacity 0.35s, transform 0.35s; -webkit-transform: translate3d(0, 20px, 0); transform: translate3d(0, 20px, 0); }
.tlp-team .isotope4 .tlp-team-item:hover figcaption::before, 
.tlp-team .isotope4 .tlp-team-item:hover figcaption::after { opacity: 1; -webkit-transform: scale(1); transform: scale(1); }
.tlp-team .isotope4 .tlp-team-item:hover h3,
.tlp-team .isotope4 .tlp-team-item:hover h3 a{ color: #fff; }
.tlp-team .isotope4 .tlp-team-item:hover h3,
.tlp-team .isotope4 .tlp-team-item:hover .short-bio, 
.tlp-team .isotope4 .tlp-team-item:hover .tlp-position { opacity: 1; -webkit-transform: translate3d(0, 0, 0); transform: translate3d(0, 0, 0); }
.tlp-team .isotope4 .tlp-team-item .short-bio { opacity: 0; padding: 0px 0px 10px; }
.tlp-team .isotope4 .tlp-team-item .short-bio p { line-height: 22px; }
.tlp-team .isotope4 .tlp-round-picture .tlp-team-item figcaption {-webkit-border-radius: 50%; -moz-border-radius: 50%; border-radius: 50%; }
.tlp-team .isotope4 .tlp-round-picture figcaption::before,
.tlp-team .isotope4 .tlp-round-picture figcaption::after { border: none; }
.tlp-team .isotope4 .tlp-round-picture .social-icons { bottom: 50px; }

/***************************Carousol settings*************************/

.tlp-team .owl-nav { 
	position: absolute; 
	top: -55px; 
	right: 0;
}
.rtl .tlp-team .owl-nav { 
	position: absolute; 
	top: -55px; 
	left: 0 !important;
	right: auto;
}
.tlp-team .owl-nav i { 
	font-size: 14px; 
	color: #fff; 
}
.tlp-team .owl-theme .owl-nav [class*=owl-] {
	padding: 2px 7px !important ; 
}
/****************************Detail page *****************************/
.tlp-team-detail .content-area { text-align: left !important; }

/* Popup */
#tlp-popup-wrap { width: 100%; }
.tlp-team-item-count { display: none; } 
#tlp-popup-wrap .tlp-popup-singlePage-counter { color: #fff; position: absolute; margin: auto; right: 40px; top: 0; bottom: 0;  height: 30px; }
#tlp-popup-wrap .tlp-popup-content { padding-top: 70px; } 
.admin-bar #tlp-popup-wrap .tlp-popup-content { padding-top: 46px; } 
.tlp-popup-wrap { min-height: 100%;  position: fixed; width: 100% !important; left: 0; top: 0; margin-left:100%; display: none; overflow-y: scroll; overflow-x: hidden; z-index: 999999; padding: 0px; } 
.tlp-popup-wrap:before { content: ""; display: inline-block; height: 100%; vertical-align: middle; } 
.tlp-popup-wrap .tlp-popup-navigation-wrap { background-color: #d43608; text-align: center; width: 100%; } 
.tlp-popup-wrap .tlp-popup-loading { background: url('../images/tlp-loading.gif') no-repeat center; height: 200px; } 
.tlp-popup-content { width: 100%; height: 100%; background: #fff; position: fixed; overflow-y: scroll; } 
.tlp-popup-singlePage-sticky .tlp-popup-navigation-wrap { position: fixed; top: 0; } 
.tlp-popup-singlePage .tlp-popup-next, .tlp-popup-singlePage .tlp-popup-prev { width: 44px; height: 44px; bottom: 0; } 
.tlp-popup-singlePage .tlp-popup-next { background: url("../images/tlp-sprite.png") no-repeat scroll -46px -92px transparent; right: 0; bottom: 0; left: 108px; } 
.tlp-popup-navigation .tlp-popup-prev,.tlp-popup-navigation .tlp-popup-close,.tlp-popup-navigation .tlp-popup-next { display: inline-block; margin: 5px !important; cursor: pointer; } 
.tlp-popup-navigation { padding: 5px 0px; } 
.tlp-popup-singlePage .tlp-popup-next:hover { background-position: -46px -138px; }  
.tlp-popup-singlePage .tlp-popup-prev { background: url("../images/tlp-sprite.png") no-repeat scroll 0 -92px transparent; left: 0; } 
.tlp-popup-singlePage .tlp-popup-prev:hover { background-position: 0 -138px; }  
.tlp-popup-singlePage .tlp-popup-close { background: url("../images/tlp-sprite.png") no-repeat scroll -92px -92px transparent; height: 44px; width: 44px; margin: auto; top: 0; right: 0; bottom: 0; left: 0; } 
.tlp-popup-singlePage .tlp-popup-close:hover { background-position: -92px -138px; }



/************* Table Class ********************/
.table-responsive { overflow-x: auto; min-height: 0.01%; }
@media screen and (max-width: 767px) {
  .table-responsive { width: 100%; margin-bottom: 15px; overflow-y: hidden; -ms-overflow-style: -ms-autohiding-scrollbar; border: 1px solid #dddddd; }
  .table-responsive > .table { margin-bottom: 0; }
  .table-responsive > .table > thead > tr > th, .table-responsive > .table > tbody > tr > th, .table-responsive > .table > tfoot > tr > th, .table-responsive > .table > thead > tr > td, .table-responsive > .table > tbody > tr > td, .table-responsive > .table > tfoot > tr > td { white-space: nowrap; }
  .table-responsive > .table-bordered {border: 0; }
  .table-responsive > .table-bordered > thead > tr > th:first-child, .table-responsive > .table-bordered > tbody > tr > th:first-child, .table-responsive > .table-bordered > tfoot > tr > th:first-child, .table-responsive > .table-bordered > thead > tr > td:first-child, .table-responsive > .table-bordered > tbody > tr > td:first-child, .table-responsive > .table-bordered > tfoot > tr > td:first-child { border-left: 0; }
  .table-responsive > .table-bordered > thead > tr > th:last-child, .table-responsive > .table-bordered > tbody > tr > th:last-child, .table-responsive > .table-bordered > tfoot > tr > th:last-child, .table-responsive > .table-bordered > thead > tr > td:last-child, .table-responsive > .table-bordered > tbody > tr > td:last-child, .table-responsive > .table-bordered > tfoot > tr > td:last-child { border-right: 0; }
  .table-responsive > .table-bordered > tbody > tr:last-child > th, .table-responsive > .table-bordered > tfoot > tr:last-child > th, .table-responsive > .table-bordered > tbody > tr:last-child > td, .table-responsive > .table-bordered > tfoot > tr:last-child > td { border-bottom: 0; }
}
@media (min-width: 768px) {.tlp-container { width: 750px; } }
@media (min-width: 992px) {.tlp-container { width: 970px; } }
@media (min-width: 1200px) {.tlp-container { width: 1170px; } }
@media (min-width: 768px) {
  .tlp-col-sm-1, .tlp-col-sm-2, .tlp-col-sm-3, .tlp-col-sm-4, .tlp-col-sm-5, .tlp-col-sm-6, .tlp-col-sm-7, .tlp-col-sm-8, .tlp-col-sm-9, .tlp-col-sm-10, .tlp-col-sm-11, .tlp-col-sm-12 { float: left; } 
  .tlp-col-sm-12 { width: 100%;} .tlp-col-sm-11 { width: 91.66666667%; } .tlp-col-sm-10 { width: 83.33333333%; } .tlp-col-sm-9 { width: 75%; } .tlp-col-sm-8 { width: 66.66666667%; } .tlp-col-sm-7 { width: 58.33333333%; } .tlp-col-sm-6 { width: 50%; } .tlp-col-sm-5 { width: 41.66666667%; } .tlp-col-sm-4 { width: 33.33333333%; } .tlp-col-sm-3 { width: 25%; } .tlp-col-sm-2 { width: 16.66666667%; } .tlp-col-sm-1 { width: 8.33333333%; }
}
@media (min-width: 992px) {
  .tlp-col-md-1, .tlp-col-md-2, .tlp-col-md-3, .tlp-col-md-4, .tlp-col-md-5, .tlp-col-md-6, .tlp-col-md-7, .tlp-col-md-8, .tlp-col-md-9, .tlp-col-md-10, .tlp-col-md-11, .tlp-col-md-12 { float: left; }
  .tlp-col-md-12 { width: 100%; } .tlp-col-md-11 { width: 91.66666667%; } .tlp-col-md-10 { width: 83.33333333%; } .tlp-col-md-9 { width: 75%; } .tlp-col-md-8 { width: 66.66666667%; } .tlp-col-md-7 { width: 58.33333333%; } .tlp-col-md-6 { width: 50%; } .tlp-col-md-5 { width: 41.66666667%; } .tlp-col-md-4 { width: 33.33333333%; } .tlp-col-md-3 { width: 25%; } .tlp-col-md-2 { width: 16.66666667%; } .tlp-col-md-1 { width: 8.33333333%; } }
@media (min-width: 1200px) {
  .tlp-col-lg-1, .tlp-col-lg-2, .tlp-col-lg-3, .tlp-col-lg-4, .tlp-col-lg-5, .tlp-col-lg-6, .tlp-col-lg-7, .tlp-col-lg-8, .tlp-col-lg-9, .tlp-col-lg-10, .tlp-col-lg-11, .tlp-col-lg-12 { float: left; }
  .tlp-col-lg-12 { width: 100%; } .tlp-col-lg-11 { width: 91.66666667%; } .tlp-col-lg-10 { width: 83.33333333%; } .tlp-col-lg-9 { width: 75%; } .tlp-col-lg-8 { width: 66.66666667%; } .tlp-col-lg-7 { width: 58.33333333%; } .tlp-col-lg-6 { width: 50%; } .tlp-col-lg-5 { width: 41.66666667%; } .tlp-col-lg-4 { width: 33.33333333%; } .tlp-col-lg-3 { width: 25%; } .tlp-col-lg-2 { width: 16.66666667%; } .tlp-col-lg-1 { width: 8.33333333%; } } /************************ End Grid **************************/

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       assets/css/font-awesome.min.css                                                                     0000705                 00000064127 15242037122 0012544 0                                                                                                    ustar 00                                                                                                                                                                                                                                                       /*!
 *  Font Awesome 4.4.0 by @davegandy - http://fontawesome.io - @fontawesome
 *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
 */@font-face{font-family:'FontAwesome';src:url('../fonts/fontawesome-webfont.eot?v=4.4.0');src:url('../fonts/fontawesome-webfont.eot?#iefix&v=4.4.0') format('embedded-opentype'),url('../fonts/fontawesome-webfont.woff2?v=4.4.0') format('woff2'),url('../fonts/fontawesome-webfont.woff?v=4.4.0') format('woff'),url('../fonts/fontawesome-webfont.ttf?v=4.4.0') format('truetype'),url('../fonts/fontawesome-webfont.svg?v=4.4.0#fontawesomeregular') format('svg');font-weight:normal;font-style:normal}.fa{display:inline-block;font:normal normal normal 14px/1 FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.fa-lg{font-size:1.33333333em;line-height:.75em;vertical-align:-15%}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-fw{width:1.28571429em;text-align:center}.fa-ul{padding-left:0;margin-left:2.14285714em;list-style-type:none}.fa-ul>li{position:relative}.fa-li{position:absolute;left:-2.14285714em;width:2.14285714em;top:.14285714em;text-align:center}.fa-li.fa-lg{left:-1.85714286em}.fa-border{padding:.2em .25em .15em;border:solid .08em #eee;border-radius:.1em}.fa-pull-left{float:left}.fa-pull-right{float:right}.fa.fa-pull-left{margin-right:.3em}.fa.fa-pull-right{margin-left:.3em}.pull-right{float:right}.pull-left{float:left}.fa.pull-left{margin-right:.3em}.fa.pull-right{margin-left:.3em}.fa-spin{-webkit-animation:fa-spin 2s infinite linear;animation:fa-spin 2s infinite linear}.fa-pulse{-webkit-animation:fa-spin 1s infinite steps(8);animation:fa-spin 1s infinite steps(8)}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}.fa-rotate-90{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=1);-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=2);-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=3);-webkit-transform:rotate(270deg);-ms-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1);-webkit-transform:scale(-1, 1);-ms-transform:scale(-1, 1);transform:scale(-1, 1)}.fa-flip-vertical{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1);-webkit-transform:scale(1, -1);-ms-transform:scale(1, -1);transform:scale(1, -1)}:root .fa-rotate-90,:root .fa-rotate-180,:root .fa-rotate-270,:root .fa-flip-horizontal,:root .fa-flip-vertical{filter:none}.fa-stack{position:relative;display:inline-block;width:2em;height:2em;line-height:2em;vertical-align:middle}.fa-stack-1x,.fa-stack-2x{position:absolute;left:0;width:100%;text-align:center}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-glass:before{content:"\f000"}.fa-music:before{content:"\f001"}.fa-search:before{content:"\f002"}.fa-envelope-o:before{content:"\f003"}.fa-heart:before{content:"\f004"}.fa-star:before{content:"\f005"}.fa-star-o:before{content:"\f006"}.fa-user:before{content:"\f007"}.fa-film:before{content:"\f008"}.fa-th-large:before{content:"\f009"}.fa-th:before{content:"\f00a"}.fa-th-list:before{content:"\f00b"}.fa-check:before{content:"\f00c"}.fa-remove:before,.fa-close:before,.fa-times:before{content:"\f00d"}.fa-search-plus:before{content:"\f00e"}.fa-search-minus:before{content:"\f010"}.fa-power-off:before{content:"\f011"}.fa-signal:before{content:"\f012"}.fa-gear:before,.fa-cog:before{content:"\f013"}.fa-trash-o:before{content:"\f014"}.fa-home:before{content:"\f015"}.fa-file-o:before{content:"\f016"}.fa-clock-o:before{content:"\f017"}.fa-road:before{content:"\f018"}.fa-download:before{content:"\f019"}.fa-arrow-circle-o-down:before{content:"\f01a"}.fa-arrow-circle-o-up:before{content:"\f01b"}.fa-inbox:before{content:"\f01c"}.fa-play-circle-o:before{content:"\f01d"}.fa-rotate-right:before,.fa-repeat:before{content:"\f01e"}.fa-refresh:before{content:"\f021"}.fa-list-alt:before{content:"\f022"}.fa-lock:before{content:"\f023"}.fa-flag:before{content:"\f024"}.fa-headphones:before{content:"\f025"}.fa-volume-off:before{content:"\f026"}.fa-volume-down:before{content:"\f027"}.fa-volume-up:before{content:"\f028"}.fa-qrcode:before{content:"\f029"}.fa-barcode:before{content:"\f02a"}.fa-tag:before{content:"\f02b"}.fa-tags:before{content:"\f02c"}.fa-book:before{content:"\f02d"}.fa-bookmark:before{content:"\f02e"}.fa-print:before{content:"\f02f"}.fa-camera:before{content:"\f030"}.fa-font:before{content:"\f031"}.fa-bold:before{content:"\f032"}.fa-italic:before{content:"\f033"}.fa-text-height:before{content:"\f034"}.fa-text-width:before{content:"\f035"}.fa-align-left:before{content:"\f036"}.fa-align-center:before{content:"\f037"}.fa-align-right:before{content:"\f038"}.fa-align-justify:before{content:"\f039"}.fa-list:before{content:"\f03a"}.fa-dedent:before,.fa-outdent:before{content:"\f03b"}.fa-indent:before{content:"\f03c"}.fa-video-camera:before{content:"\f03d"}.fa-photo:before,.fa-image:before,.fa-picture-o:before{content:"\f03e"}.fa-pencil:before{content:"\f040"}.fa-map-marker:before{content:"\f041"}.fa-adjust:before{content:"\f042"}.fa-tint:before{content:"\f043"}.fa-edit:before,.fa-pencil-square-o:before{content:"\f044"}.fa-share-square-o:before{content:"\f045"}.fa-check-square-o:before{content:"\f046"}.fa-arrows:before{content:"\f047"}.fa-step-backward:before{content:"\f048"}.fa-fast-backward:before{content:"\f049"}.fa-backward:before{content:"\f04a"}.fa-play:before{content:"\f04b"}.fa-pause:before{content:"\f04c"}.fa-stop:before{content:"\f04d"}.fa-forward:before{content:"\f04e"}.fa-fast-forward:before{content:"\f050"}.fa-step-forward:before{content:"\f051"}.fa-eject:before{content:"\f052"}.fa-chevron-left:before{content:"\f053"}.fa-chevron-right:before{content:"\f054"}.fa-plus-circle:before{content:"\f055"}.fa-minus-circle:before{content:"\f056"}.fa-times-circle:before{content:"\f057"}.fa-check-circle:before{content:"\f058"}.fa-question-circle:before{content:"\f059"}.fa-info-circle:before{content:"\f05a"}.fa-crosshairs:before{content:"\f05b"}.fa-times-circle-o:before{content:"\f05c"}.fa-check-circle-o:before{content:"\f05d"}.fa-ban:before{content:"\f05e"}.fa-arrow-left:before{content:"\f060"}.fa-arrow-right:before{content:"\f061"}.fa-arrow-up:before{content:"\f062"}.fa-arrow-down:before{content:"\f063"}.fa-mail-forward:before,.fa-share:before{content:"\f064"}.fa-expand:before{content:"\f065"}.fa-compress:before{content:"\f066"}.fa-plus:before{content:"\f067"}.fa-minus:before{content:"\f068"}.fa-asterisk:before{content:"\f069"}.fa-exclamation-circle:before{content:"\f06a"}.fa-gift:before{content:"\f06b"}.fa-leaf:before{content:"\f06c"}.fa-fire:before{content:"\f06d"}.fa-eye:before{content:"\f06e"}.fa-eye-slash:before{content:"\f070"}.fa-warning:before,.fa-exclamation-triangle:before{content:"\f071"}.fa-plane:before{content:"\f072"}.fa-calendar:before{content:"\f073"}.fa-random:before{content:"\f074"}.fa-comment:before{content:"\f075"}.fa-magnet:before{content:"\f076"}.fa-chevron-up:before{content:"\f077"}.fa-chevron-down:before{content:"\f078"}.fa-retweet:before{content:"\f079"}.fa-shopping-cart:before{content:"\f07a"}.fa-folder:before{content:"\f07b"}.fa-folder-open:before{content:"\f07c"}.fa-arrows-v:before{content:"\f07d"}.fa-arrows-h:before{content:"\f07e"}.fa-bar-chart-o:before,.fa-bar-chart:before{content:"\f080"}.fa-twitter-square:before{content:"\f081"}.fa-facebook-square:before{content:"\f082"}.fa-camera-retro:before{content:"\f083"}.fa-key:before{content:"\f084"}.fa-gears:before,.fa-cogs:before{content:"\f085"}.fa-comments:before{content:"\f086"}.fa-thumbs-o-up:before{content:"\f087"}.fa-thumbs-o-down:before{content:"\f088"}.fa-star-half:before{content:"\f089"}.fa-heart-o:before{content:"\f08a"}.fa-sign-out:before{content:"\f08b"}.fa-linkedin-square:before{content:"\f08c"}.fa-thumb-tack:before{content:"\f08d"}.fa-external-link:before{content:"\f08e"}.fa-sign-in:before{content:"\f090"}.fa-trophy:before{content:"\f091"}.fa-github-square:before{content:"\f092"}.fa-upload:before{content:"\f093"}.fa-lemon-o:before{content:"\f094"}.fa-phone:before{content:"\f095"}.fa-square-o:before{content:"\f096"}.fa-bookmark-o:before{content:"\f097"}.fa-phone-square:before{content:"\f098"}.fa-twitter:before{content:"\f099"}.fa-facebook-f:before,.fa-facebook:before{content:"\f09a"}.fa-github:before{content:"\f09b"}.fa-unlock:before{content:"\f09c"}.fa-credit-card:before{content:"\f09d"}.fa-feed:before,.fa-rss:before{content:"\f09e"}.fa-hdd-o:before{content:"\f0a0"}.fa-bullhorn:before{content:"\f0a1"}.fa-bell:before{content:"\f0f3"}.fa-certificate:before{content:"\f0a3"}.fa-hand-o-right:before{content:"\f0a4"}.fa-hand-o-left:before{content:"\f0a5"}.fa-hand-o-up:before{content:"\f0a6"}.fa-hand-o-down:before{content:"\f0a7"}.fa-arrow-circle-left:before{content:"\f0a8"}.fa-arrow-circle-right:before{content:"\f0a9"}.fa-arrow-circle-up:before{content:"\f0aa"}.fa-arrow-circle-down:before{content:"\f0ab"}.fa-globe:before{content:"\f0ac"}.fa-wrench:before{content:"\f0ad"}.fa-tasks:before{content:"\f0ae"}.fa-filter:before{content:"\f0b0"}.fa-briefcase:before{content:"\f0b1"}.fa-arrows-alt:before{content:"\f0b2"}.fa-group:before,.fa-users:before{content:"\f0c0"}.fa-chain:before,.fa-link:before{content:"\f0c1"}.fa-cloud:before{content:"\f0c2"}.fa-flask:before{content:"\f0c3"}.fa-cut:before,.fa-scissors:before{content:"\f0c4"}.fa-copy:before,.fa-files-o:before{content:"\f0c5"}.fa-paperclip:before{content:"\f0c6"}.fa-save:before,.fa-floppy-o:before{content:"\f0c7"}.fa-square:before{content:"\f0c8"}.fa-navicon:before,.fa-reorder:before,.fa-bars:before{content:"\f0c9"}.fa-list-ul:before{content:"\f0ca"}.fa-list-ol:before{content:"\f0cb"}.fa-strikethrough:before{content:"\f0cc"}.fa-underline:before{content:"\f0cd"}.fa-table:before{content:"\f0ce"}.fa-magic:before{content:"\f0d0"}.fa-truck:before{content:"\f0d1"}.fa-pinterest:before{content:"\f0d2"}.fa-pinterest-square:before{content:"\f0d3"}.fa-google-plus-square:before{content:"\f0d4"}.fa-google-plus:before{content:"\f0d5"}.fa-money:before{content:"\f0d6"}.fa-caret-down:before{content:"\f0d7"}.fa-caret-up:before{content:"\f0d8"}.fa-caret-left:before{content:"\f0d9"}.fa-caret-right:before{content:"\f0da"}.fa-columns:before{content:"\f0db"}.fa-unsorted:before,.fa-sort:before{content:"\f0dc"}.fa-sort-down:before,.fa-sort-desc:before{content:"\f0dd"}.fa-sort-up:before,.fa-sort-asc:before{content:"\f0de"}.fa-envelope:before{content:"\f0e0"}.fa-linkedin:before{content:"\f0e1"}.fa-rotate-left:before,.fa-undo:before{content:"\f0e2"}.fa-legal:before,.fa-gavel:before{content:"\f0e3"}.fa-dashboard:before,.fa-tachometer:before{content:"\f0e4"}.fa-comment-o:before{content:"\f0e5"}.fa-comments-o:before{content:"\f0e6"}.fa-flash:before,.fa-bolt:before{content:"\f0e7"}.fa-sitemap:before{content:"\f0e8"}.fa-umbrella:before{content:"\f0e9"}.fa-paste:before,.fa-clipboard:before{content:"\f0ea"}.fa-lightbulb-o:before{content:"\f0eb"}.fa-exchange:before{content:"\f0ec"}.fa-cloud-download:before{content:"\f0ed"}.fa-cloud-upload:before{content:"\f0ee"}.fa-user-md:before{content:"\f0f0"}.fa-stethoscope:before{content:"\f0f1"}.fa-suitcase:before{content:"\f0f2"}.fa-bell-o:before{content:"\f0a2"}.fa-coffee:before{content:"\f0f4"}.fa-cutlery:before{content:"\f0f5"}.fa-file-text-o:before{content:"\f0f6"}.fa-building-o:before{content:"\f0f7"}.fa-hospital-o:before{content:"\f0f8"}.fa-ambulance:before{content:"\f0f9"}.fa-medkit:before{content:"\f0fa"}.fa-fighter-jet:before{content:"\f0fb"}.fa-beer:before{content:"\f0fc"}.fa-h-square:before{content:"\f0fd"}.fa-plus-square:before{content:"\f0fe"}.fa-angle-double-left:before{content:"\f100"}.fa-angle-double-right:before{content:"\f101"}.fa-angle-double-up:before{content:"\f102"}.fa-angle-double-down:before{content:"\f103"}.fa-angle-left:before{content:"\f104"}.fa-angle-right:before{content:"\f105"}.fa-angle-up:before{content:"\f106"}.fa-angle-down:before{content:"\f107"}.fa-desktop:before{content:"\f108"}.fa-laptop:before{content:"\f109"}.fa-tablet:before{content:"\f10a"}.fa-mobile-phone:before,.fa-mobile:before{content:"\f10b"}.fa-circle-o:before{content:"\f10c"}.fa-quote-left:before{content:"\f10d"}.fa-quote-right:before{content:"\f10e"}.fa-spinner:before{content:"\f110"}.fa-circle:before{content:"\f111"}.fa-mail-reply:before,.fa-reply:before{content:"\f112"}.fa-github-alt:before{content:"\f113"}.fa-folder-o:before{content:"\f114"}.fa-folder-open-o:before{content:"\f115"}.fa-smile-o:before{content:"\f118"}.fa-frown-o:before{content:"\f119"}.fa-meh-o:before{content:"\f11a"}.fa-gamepad:before{content:"\f11b"}.fa-keyboard-o:before{content:"\f11c"}.fa-flag-o:before{content:"\f11d"}.fa-flag-checkered:before{content:"\f11e"}.fa-terminal:before{content:"\f120"}.fa-code:before{content:"\f121"}.fa-mail-reply-all:before,.fa-reply-all:before{content:"\f122"}.fa-star-half-empty:before,.fa-star-half-full:before,.fa-star-half-o:before{content:"\f123"}.fa-location-arrow:before{content:"\f124"}.fa-crop:before{content:"\f125"}.fa-code-fork:before{content:"\f126"}.fa-unlink:before,.fa-chain-broken:before{content:"\f127"}.fa-question:before{content:"\f128"}.fa-info:before{content:"\f129"}.fa-exclamation:before{content:"\f12a"}.fa-superscript:before{content:"\f12b"}.fa-subscript:before{content:"\f12c"}.fa-eraser:before{content:"\f12d"}.fa-puzzle-piece:before{content:"\f12e"}.fa-microphone:before{content:"\f130"}.fa-microphone-slash:before{content:"\f131"}.fa-shield:before{content:"\f132"}.fa-calendar-o:before{content:"\f133"}.fa-fire-extinguisher:before{content:"\f134"}.fa-rocket:before{content:"\f135"}.fa-maxcdn:before{content:"\f136"}.fa-chevron-circle-left:before{content:"\f137"}.fa-chevron-circle-right:before{content:"\f138"}.fa-chevron-circle-up:before{content:"\f139"}.fa-chevron-circle-down:before{content:"\f13a"}.fa-html5:before{content:"\f13b"}.fa-css3:before{content:"\f13c"}.fa-anchor:before{content:"\f13d"}.fa-unlock-alt:before{content:"\f13e"}.fa-bullseye:before{content:"\f140"}.fa-ellipsis-h:before{content:"\f141"}.fa-ellipsis-v:before{content:"\f142"}.fa-rss-square:before{content:"\f143"}.fa-play-circle:before{content:"\f144"}.fa-ticket:before{content:"\f145"}.fa-minus-square:before{content:"\f146"}.fa-minus-square-o:before{content:"\f147"}.fa-level-up:before{content:"\f148"}.fa-level-down:before{content:"\f149"}.fa-check-square:before{content:"\f14a"}.fa-pencil-square:before{content:"\f14b"}.fa-external-link-square:before{content:"\f14c"}.fa-share-square:before{content:"\f14d"}.fa-compass:before{content:"\f14e"}.fa-toggle-down:before,.fa-caret-square-o-down:before{content:"\f150"}.fa-toggle-up:before,.fa-caret-square-o-up:before{content:"\f151"}.fa-toggle-right:before,.fa-caret-square-o-right:before{content:"\f152"}.fa-euro:before,.fa-eur:before{content:"\f153"}.fa-gbp:before{content:"\f154"}.fa-dollar:before,.fa-usd:before{content:"\f155"}.fa-rupee:before,.fa-inr:before{content:"\f156"}.fa-cny:before,.fa-rmb:before,.fa-yen:before,.fa-jpy:before{content:"\f157"}.fa-ruble:before,.fa-rouble:before,.fa-rub:before{content:"\f158"}.fa-won:before,.fa-krw:before{content:"\f159"}.fa-bitcoin:before,.fa-btc:before{content:"\f15a"}.fa-file:before{content:"\f15b"}.fa-file-text:before{content:"\f15c"}.fa-sort-alpha-asc:before{content:"\f15d"}.fa-sort-alpha-desc:before{content:"\f15e"}.fa-sort-amount-asc:before{content:"\f160"}.fa-sort-amount-desc:before{content:"\f161"}.fa-sort-numeric-asc:before{content:"\f162"}.fa-sort-numeric-desc:before{content:"\f163"}.fa-thumbs-up:before{content:"\f164"}.fa-thumbs-down:before{content:"\f165"}.fa-youtube-square:before{content:"\f166"}.fa-youtube:before{content:"\f167"}.fa-xing:before{content:"\f168"}.fa-xing-square:before{content:"\f169"}.fa-youtube-play:before{content:"\f16a"}.fa-dropbox:before{content:"\f16b"}.fa-stack-overflow:before{content:"\f16c"}.fa-instagram:before{content:"\f16d"}.fa-flickr:before{content:"\f16e"}.fa-adn:before{content:"\f170"}.fa-bitbucket:before{content:"\f171"}.fa-bitbucket-square:before{content:"\f172"}.fa-tumblr:before{content:"\f173"}.fa-tumblr-square:before{content:"\f174"}.fa-long-arrow-down:before{content:"\f175"}.fa-long-arrow-up:before{content:"\f176"}.fa-long-arrow-left:before{content:"\f177"}.fa-long-arrow-right:before{content:"\f178"}.fa-apple:before{content:"\f179"}.fa-windows:before{content:"\f17a"}.fa-android:before{content:"\f17b"}.fa-linux:before{content:"\f17c"}.fa-dribbble:before{content:"\f17d"}.fa-skype:before{content:"\f17e"}.fa-foursquare:before{content:"\f180"}.fa-trello:before{content:"\f181"}.fa-female:before{content:"\f182"}.fa-male:before{content:"\f183"}.fa-gittip:before,.fa-gratipay:before{content:"\f184"}.fa-sun-o:before{content:"\f185"}.fa-moon-o:before{content:"\f186"}.fa-archive:before{content:"\f187"}.fa-bug:before{content:"\f188"}.fa-vk:before{content:"\f189"}.fa-weibo:before{content:"\f18a"}.fa-renren:before{content:"\f18b"}.fa-pagelines:before{content:"\f18c"}.fa-stack-exchange:before{content:"\f18d"}.fa-arrow-circle-o-right:before{content:"\f18e"}.fa-arrow-circle-o-left:before{content:"\f190"}.fa-toggle-left:before,.fa-caret-square-o-left:before{content:"\f191"}.fa-dot-circle-o:before{content:"\f192"}.fa-wheelchair:before{content:"\f193"}.fa-vimeo-square:before{content:"\f194"}.fa-turkish-lira:before,.fa-try:before{content:"\f195"}.fa-plus-square-o:before{content:"\f196"}.fa-space-shuttle:before{content:"\f197"}.fa-slack:before{content:"\f198"}.fa-envelope-square:before{content:"\f199"}.fa-wordpress:before{content:"\f19a"}.fa-openid:before{content:"\f19b"}.fa-institution:before,.fa-bank:before,.fa-university:before{content:"\f19c"}.fa-mortar-board:before,.fa-graduation-cap:before{content:"\f19d"}.fa-yahoo:before{content:"\f19e"}.fa-google:before{content:"\f1a0"}.fa-reddit:before{content:"\f1a1"}.fa-reddit-square:before{content:"\f1a2"}.fa-stumbleupon-circle:before{content:"\f1a3"}.fa-stumbleupon:before{content:"\f1a4"}.fa-delicious:before{content:"\f1a5"}.fa-digg:before{content:"\f1a6"}.fa-pied-piper:before{content:"\f1a7"}.fa-pied-piper-alt:before{content:"\f1a8"}.fa-drupal:before{content:"\f1a9"}.fa-joomla:before{content:"\f1aa"}.fa-language:before{content:"\f1ab"}.fa-fax:before{content:"\f1ac"}.fa-building:before{content:"\f1ad"}.fa-child:before{content:"\f1ae"}.fa-paw:before{content:"\f1b0"}.fa-spoon:before{content:"\f1b1"}.fa-cube:before{content:"\f1b2"}.fa-cubes:before{content:"\f1b3"}.fa-behance:before{content:"\f1b4"}.fa-behance-square:before{content:"\f1b5"}.fa-steam:before{content:"\f1b6"}.fa-steam-square:before{content:"\f1b7"}.fa-recycle:before{content:"\f1b8"}.fa-automobile:before,.fa-car:before{content:"\f1b9"}.fa-cab:before,.fa-taxi:before{content:"\f1ba"}.fa-tree:before{content:"\f1bb"}.fa-spotify:before{content:"\f1bc"}.fa-deviantart:before{content:"\f1bd"}.fa-soundcloud:before{content:"\f1be"}.fa-database:before{content:"\f1c0"}.fa-file-pdf-o:before{content:"\f1c1"}.fa-file-word-o:before{content:"\f1c2"}.fa-file-excel-o:before{content:"\f1c3"}.fa-file-powerpoint-o:before{content:"\f1c4"}.fa-file-photo-o:before,.fa-file-picture-o:before,.fa-file-image-o:before{content:"\f1c5"}.fa-file-zip-o:before,.fa-file-archive-o:before{content:"\f1c6"}.fa-file-sound-o:before,.fa-file-audio-o:before{content:"\f1c7"}.fa-file-movie-o:before,.fa-file-video-o:before{content:"\f1c8"}.fa-file-code-o:before{content:"\f1c9"}.fa-vine:before{content:"\f1ca"}.fa-codepen:before{content:"\f1cb"}.fa-jsfiddle:before{content:"\f1cc"}.fa-life-bouy:before,.fa-life-buoy:before,.fa-life-saver:before,.fa-support:before,.fa-life-ring:before{content:"\f1cd"}.fa-circle-o-notch:before{content:"\f1ce"}.fa-ra:before,.fa-rebel:before{content:"\f1d0"}.fa-ge:before,.fa-empire:before{content:"\f1d1"}.fa-git-square:before{content:"\f1d2"}.fa-git:before{content:"\f1d3"}.fa-y-combinator-square:before,.fa-yc-square:before,.fa-hacker-news:before{content:"\f1d4"}.fa-tencent-weibo:before{content:"\f1d5"}.fa-qq:before{content:"\f1d6"}.fa-wechat:before,.fa-weixin:before{content:"\f1d7"}.fa-send:before,.fa-paper-plane:before{content:"\f1d8"}.fa-send-o:before,.fa-paper-plane-o:before{content:"\f1d9"}.fa-history:before{content:"\f1da"}.fa-circle-thin:before{content:"\f1db"}.fa-header:before{content:"\f1dc"}.fa-paragraph:before{content:"\f1dd"}.fa-sliders:before{content:"\f1de"}.fa-share-alt:before{content:"\f1e0"}.fa-share-alt-square:before{content:"\f1e1"}.fa-bomb:before{content:"\f1e2"}.fa-soccer-ball-o:before,.fa-futbol-o:before{content:"\f1e3"}.fa-tty:before{content:"\f1e4"}.fa-binoculars:before{content:"\f1e5"}.fa-plug:before{content:"\f1e6"}.fa-slideshare:before{content:"\f1e7"}.fa-twitch:before{content:"\f1e8"}.fa-yelp:before{content:"\f1e9"}.fa-newspaper-o:before{content:"\f1ea"}.fa-wifi:before{content:"\f1eb"}.fa-calculator:before{content:"\f1ec"}.fa-paypal:before{content:"\f1ed"}.fa-google-wallet:before{content:"\f1ee"}.fa-cc-visa:before{content:"\f1f0"}.fa-cc-mastercard:before{content:"\f1f1"}.fa-cc-discover:before{content:"\f1f2"}.fa-cc-amex:before{content:"\f1f3"}.fa-cc-paypal:before{content:"\f1f4"}.fa-cc-stripe:before{content:"\f1f5"}.fa-bell-slash:before{content:"\f1f6"}.fa-bell-slash-o:before{content:"\f1f7"}.fa-trash:before{content:"\f1f8"}.fa-copyright:before{content:"\f1f9"}.fa-at:before{content:"\f1fa"}.fa-eyedropper:before{content:"\f1fb"}.fa-paint-brush:before{content:"\f1fc"}.fa-birthday-cake:before{content:"\f1fd"}.fa-area-chart:before{content:"\f1fe"}.fa-pie-chart:before{content:"\f200"}.fa-line-chart:before{content:"\f201"}.fa-lastfm:before{content:"\f202"}.fa-lastfm-square:before{content:"\f203"}.fa-toggle-off:before{content:"\f204"}.fa-toggle-on:before{content:"\f205"}.fa-bicycle:before{content:"\f206"}.fa-bus:before{content:"\f207"}.fa-ioxhost:before{content:"\f208"}.fa-angellist:before{content:"\f209"}.fa-cc:before{content:"\f20a"}.fa-shekel:before,.fa-sheqel:before,.fa-ils:before{content:"\f20b"}.fa-meanpath:before{content:"\f20c"}.fa-buysellads:before{content:"\f20d"}.fa-connectdevelop:before{content:"\f20e"}.fa-dashcube:before{content:"\f210"}.fa-forumbee:before{content:"\f211"}.fa-leanpub:before{content:"\f212"}.fa-sellsy:before{content:"\f213"}.fa-shirtsinbulk:before{content:"\f214"}.fa-simplybuilt:before{content:"\f215"}.fa-skyatlas:before{content:"\f216"}.fa-cart-plus:before{content:"\f217"}.fa-cart-arrow-down:before{content:"\f218"}.fa-diamond:before{content:"\f219"}.fa-ship:before{content:"\f21a"}.fa-user-secret:before{content:"\f21b"}.fa-motorcycle:before{content:"\f21c"}.fa-street-view:before{content:"\f21d"}.fa-heartbeat:before{content:"\f21e"}.fa-venus:before{content:"\f221"}.fa-mars:before{content:"\f222"}.fa-mercury:before{content:"\f223"}.fa-intersex:before,.fa-transgender:before{content:"\f224"}.fa-transgender-alt:before{content:"\f225"}.fa-venus-double:before{content:"\f226"}.fa-mars-double:before{content:"\f227"}.fa-venus-mars:before{content:"\f228"}.fa-mars-stroke:before{content:"\f229"}.fa-mars-stroke-v:before{content:"\f22a"}.fa-mars-stroke-h:before{content:"\f22b"}.fa-neuter:before{content:"\f22c"}.fa-genderless:before{content:"\f22d"}.fa-facebook-official:before{content:"\f230"}.fa-pinterest-p:before{content:"\f231"}.fa-whatsapp:before{content:"\f232"}.fa-server:before{content:"\f233"}.fa-user-plus:before{content:"\f234"}.fa-user-times:before{content:"\f235"}.fa-hotel:before,.fa-bed:before{content:"\f236"}.fa-viacoin:before{content:"\f237"}.fa-train:before{content:"\f238"}.fa-subway:before{content:"\f239"}.fa-medium:before{content:"\f23a"}.fa-yc:before,.fa-y-combinator:before{content:"\f23b"}.fa-optin-monster:before{content:"\f23c"}.fa-opencart:before{content:"\f23d"}.fa-expeditedssl:before{content:"\f23e"}.fa-battery-4:before,.fa-battery-full:before{content:"\f240"}.fa-battery-3:before,.fa-battery-three-quarters:before{content:"\f241"}.fa-battery-2:before,.fa-battery-half:before{content:"\f242"}.fa-battery-1:before,.fa-battery-quarter:before{content:"\f243"}.fa-battery-0:before,.fa-battery-empty:before{content:"\f244"}.fa-mouse-pointer:before{content:"\f245"}.fa-i-cursor:before{content:"\f246"}.fa-object-group:before{content:"\f247"}.fa-object-ungroup:before{content:"\f248"}.fa-sticky-note:before{content:"\f249"}.fa-sticky-note-o:before{content:"\f24a"}.fa-cc-jcb:before{content:"\f24b"}.fa-cc-diners-club:before{content:"\f24c"}.fa-clone:before{content:"\f24d"}.fa-balance-scale:before{content:"\f24e"}.fa-hourglass-o:before{content:"\f250"}.fa-hourglass-1:before,.fa-hourglass-start:before{content:"\f251"}.fa-hourglass-2:before,.fa-hourglass-half:before{content:"\f252"}.fa-hourglass-3:before,.fa-hourglass-end:before{content:"\f253"}.fa-hourglass:before{content:"\f254"}.fa-hand-grab-o:before,.fa-hand-rock-o:before{content:"\f255"}.fa-hand-stop-o:before,.fa-hand-paper-o:before{content:"\f256"}.fa-hand-scissors-o:before{content:"\f257"}.fa-hand-lizard-o:before{content:"\f258"}.fa-hand-spock-o:before{content:"\f259"}.fa-hand-pointer-o:before{content:"\f25a"}.fa-hand-peace-o:before{content:"\f25b"}.fa-trademark:before{content:"\f25c"}.fa-registered:before{content:"\f25d"}.fa-creative-commons:before{content:"\f25e"}.fa-gg:before{content:"\f260"}.fa-gg-circle:before{content:"\f261"}.fa-tripadvisor:before{content:"\f262"}.fa-odnoklassniki:before{content:"\f263"}.fa-odnoklassniki-square:before{content:"\f264"}.fa-get-pocket:before{content:"\f265"}.fa-wikipedia-w:before{content:"\f266"}.fa-safari:before{content:"\f267"}.fa-chrome:before{content:"\f268"}.fa-firefox:before{content:"\f269"}.fa-opera:before{content:"\f26a"}.fa-internet-explorer:before{content:"\f26b"}.fa-tv:before,.fa-television:before{content:"\f26c"}.fa-contao:before{content:"\f26d"}.fa-500px:before{content:"\f26e"}.fa-amazon:before{content:"\f270"}.fa-calendar-plus-o:before{content:"\f271"}.fa-calendar-minus-o:before{content:"\f272"}.fa-calendar-times-o:before{content:"\f273"}.fa-calendar-check-o:before{content:"\f274"}.fa-industry:before{content:"\f275"}.fa-map-pin:before{content:"\f276"}.fa-map-signs:before{content:"\f277"}.fa-map-o:before{content:"\f278"}.fa-map:before{content:"\f279"}.fa-commenting:before{content:"\f27a"}.fa-commenting-o:before{content:"\f27b"}.fa-houzz:before{content:"\f27c"}.fa-vimeo:before{content:"\f27d"}.fa-black-tie:before{content:"\f27e"}.fa-fonticons:before{content:"\f280"}
                                                                                                                                                                                                                                                                                                                                                                                                                                         assets/owlcarousel/owl.theme.default.min.css                                                        0000705                 00000001753 15242037122 0015230 0                                                                                                    ustar 00                                                                                                                                                                                                                                                       /**
 * Owl Carousel v2.1.6
 * Copyright 2013-2016 David Deutsch
 * Licensed under MIT (https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE)
 */
.owl-theme .owl-dots,.owl-theme .owl-nav{text-align:center;-webkit-tap-highlight-color:transparent}.owl-theme .owl-nav{margin-top:10px}.owl-theme .owl-nav [class*=owl-]{color:#FFF;font-size:14px;margin:5px;padding:4px 7px;background:#D6D6D6;display:inline-block;cursor:pointer;border-radius:3px}.owl-theme .owl-nav [class*=owl-]:hover{background:#869791;color:#FFF;text-decoration:none}.owl-theme .owl-nav .disabled{opacity:.5;cursor:default}.owl-theme .owl-nav.disabled+.owl-dots{margin-top:10px}.owl-theme .owl-dots .owl-dot{display:inline-block;zoom:1}.owl-theme .owl-dots .owl-dot span{width:10px;height:10px;margin:5px 7px;background:#D6D6D6;display:block;-webkit-backface-visibility:visible;transition:opacity .2s ease;border-radius:30px}.owl-theme .owl-dots .owl-dot.active span,.owl-theme .owl-dots .owl-dot:hover span{background:#869791}                     assets/owlcarousel/owl.theme.green.min.css                                                          0000705                 00000001753 15242037122 0014704 0                                                                                                    ustar 00                                                                                                                                                                                                                                                       /**
 * Owl Carousel v2.1.6
 * Copyright 2013-2016 David Deutsch
 * Licensed under MIT (https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE)
 */
.owl-theme .owl-dots,.owl-theme .owl-nav{text-align:center;-webkit-tap-highlight-color:transparent}.owl-theme .owl-nav{margin-top:10px}.owl-theme .owl-nav [class*=owl-]{color:#FFF;font-size:14px;margin:5px;padding:4px 7px;background:#D6D6D6;display:inline-block;cursor:pointer;border-radius:3px}.owl-theme .owl-nav [class*=owl-]:hover{background:#4DC7A0;color:#FFF;text-decoration:none}.owl-theme .owl-nav .disabled{opacity:.5;cursor:default}.owl-theme .owl-nav.disabled+.owl-dots{margin-top:10px}.owl-theme .owl-dots .owl-dot{display:inline-block;zoom:1}.owl-theme .owl-dots .owl-dot span{width:10px;height:10px;margin:5px 7px;background:#D6D6D6;display:block;-webkit-backface-visibility:visible;transition:opacity .2s ease;border-radius:30px}.owl-theme .owl-dots .owl-dot.active span,.owl-theme .owl-dots .owl-dot:hover span{background:#4DC7A0}                     assets/owlcarousel/owl.video.play.png                                                               0000705                 00000011560 15242037122 0013764 0                                                                                                    ustar 00                                                                                                                                                                                                                                                       PNG

   IHDR   P   P      tEXtSoftware Adobe ImageReadyqe<   iTXtXML:com.adobe.xmp     <?xpacket begin="﻿" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.0-c060 61.134777, 2010/02/12-17:32:00        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmp:CreatorTool="Adobe Photoshop CS5 Windows" xmpMM:InstanceID="xmp.iid:55E340E9C0B011E381DBA90C92EF1313" xmpMM:DocumentID="xmp.did:55E340EAC0B011E381DBA90C92EF1313"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:55E340E7C0B011E381DBA90C92EF1313" stRef:documentID="xmp.did:55E340E8C0B011E381DBA90C92EF1313"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>  IDATx\	TT~fA`@X#*5`Iؚ]ck'iTFcL1ъ!jh"DED@QYe0̎+[v"#H$0455)Px
PC0]{ukkk|N	i4ɓ'״1Knxi/ ޽"JBYZZZriڴlf
X}cU׏ɽVnܜSYYNBBB?"kl|[E mkw`+bO>=*8Κ Z1,˾l{ 555j_rrr򲳳KΜ9SYOzW^3BBB6l _[]]i>~ۜR@xk(
 ן9m߾}y'O Xb%*@9TŊ+###Ǐ9	~~~_N!&xREEŔO&M4^	:PBUB0ٌb9@TVoZjJXl<̜9p,`N[T[n<6	(2AcRBT;k֬1 bK"zaaR|u ^>G&C}77XkfΛ7ol~~~<X

>@xG	,*4oß FV809 }v<(Bc.--Gʕ;w x?ЃU;vXLD ǎp/I6Dw&B_D1N퓞'P|<uDSd ̄	E%T'q&Q5| x)tgׯ_?[Ԯrg^ ZC.b h80=<<-a	 k!|[.\Pj v 컬p{'IQ G,6`kBCC2@T(|H=((nnϵ &Y 7oׯǛA&`ܖEL3OQVHqc! bXXXﺺ9W8nZo\~cK,>P);h0q=ȟ;qEYY@h`ԿQyق~CS' 9(Xh%Fr|**	Yk h#>xڵk}t:U
wB(@}_ӧO'	}KwAH5"ZM l0Ժ.*
 7Nw$''?f/R̝;01p+iw9sD@K^G4HaAqAqI	\!2A ?|pP1\?S={H7XENщ-[@_c I1***>ۼy [u0?V!;E' Oki```.[
 o8p d" (ܷ$7o<VoH8:GPL}vrzzz(W&xMrԩk.{_RQ޻w/fMa_~݂,U2?|hJܨϟ{ugf8єRSS&.c`L:'555ДRRR28iTTT8Ұ M>$ݢ4g(>}rmB Ykv r Rÿ6uTbpo+t2Yrk)5kT vpС"aQ߬,%6y̘1G`޽fq[-_}`?kژX:{7nX]@e#H|PƱ'H}=:eА!CKx ##c%#qB]]]k
*}SmCP<<<fN81\@9J]R@zS@re#ϲl3`2quRrA6> cNN΁YfTsE*EdVT*bїT@رcʕ+k9=ZM///%#AϪ=111)"p$0B,2̀e}$H{xjŋN6-#T9RUUUVc{7G ٞ^7ݶdɒ7
Uok0SĿVZZZv@ |MooArz abMΝۿhѢݗ/_@v% j9t:?);mMʺiHèhtYHHH(uuhLQQ˗/u{w7bmJ}\$CL4qF駟IR@Oছ9k&&ڐt$l|PZZZ#@ [[[/^?""0PSCLcq|$"=7Hee*\e%@igݺuA㙎,	0ADG2eʔq5D-͛7/+9hk ɦ#GS&04R{ʁh{~%kD
l|'2")v -??ٳIfD(~q/ʋ& J-CEYZԦLn#=,Yԟr{16H|	mmՋP 2GSڸ->>%c߄3P^[~EP({?}J5"}J>rGnK O-[eJOl&V~1:th~E	/e۶m1H	kB011CM6]-
LPʃ<HhDڈ!Fʕ+	hkt7TP
uO'WL CmU2T5LǮ #[8fK}CSR$P 0SeK.M7`hx0$`DsH}XD dؙyB v;6:ݨL Ä ATTkΝe_"?..F`{) 
qVjjJ bIOOGMԌ2!xuR]"'\m*044[2BlLаTPP	7o>qЁ֪4撔H:`hfFSZOa:v2n QdO#iZ(wiorĠ"J0
V"؁A)))mc b@QVٞ.ƻ]ÇX@x36l0q# [rK}I<QxO22c "h@x-77rDG90h<j;eS'x+uY! kkkϞ=;q^`Te`Dr"7˦M"ϊ5Idg Y y'Ţޗ.]J񄣗q s,YgQ %~7h)Ǥ$o[)` [R?axJnv2$H]^/"9ml&X`~~YYY)tàE Z
|&TXԴƟ ŴYB333_>|KJ2ZP%&dh-PS˲zh].8PJRB~7G3AL\v(hC^|5 8!?B"⾍}5,Y.x?Z#j "UJ
ح4cǎ;&&\)֔-_baD&;\O5j\ppp`kiګKѣGU`1ٔlՋqo&n~QQQàuuuKdL&sLxbzd#XM%ϫwUhF#ZY^?~+&`mUݶi8@![;Xf%S@raZ' ୬    IENDB`                                                                                                                                                assets/owlcarousel/owl.carousel.min.css                                                             0000705                 00000005313 15242037122 0014314 0                                                                                                    ustar 00                                                                                                                                                                                                                                                       /**
 * Owl Carousel v2.1.6
 * Copyright 2013-2016 David Deutsch
 * Licensed under MIT (https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE)
 */
.owl-carousel,.owl-carousel .owl-item{-webkit-tap-highlight-color:transparent;position:relative}.owl-carousel{display:none;width:100%;z-index:1}.owl-carousel .owl-stage{position:relative;-ms-touch-action:pan-Y}.owl-carousel .owl-stage:after{content:".";display:block;clear:both;visibility:hidden;line-height:0;height:0}.owl-carousel .owl-stage-outer{position:relative;overflow:hidden;-webkit-transform:translate3d(0,0,0)}.owl-carousel .owl-item{min-height:1px;float:left;-webkit-backface-visibility:hidden;-webkit-touch-callout:none}.owl-carousel .owl-item img{display:block;width:100%;-webkit-transform-style:preserve-3d}.owl-carousel .owl-dots.disabled,.owl-carousel .owl-nav.disabled{display:none}.owl-carousel .owl-dot,.owl-carousel .owl-nav .owl-next,.owl-carousel .owl-nav .owl-prev{cursor:pointer;cursor:hand;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.owl-carousel.owl-loaded{display:block}.owl-carousel.owl-loading{opacity:0;display:block}.owl-carousel.owl-hidden{opacity:0}.owl-carousel.owl-refresh .owl-item{display:none}.owl-carousel.owl-drag .owl-item{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.owl-carousel.owl-grab{cursor:move;cursor:grab}.owl-carousel.owl-rtl{direction:rtl}.owl-carousel.owl-rtl .owl-item{float:right}.no-js .owl-carousel{display:block}.owl-carousel .animated{animation-duration:1s;animation-fill-mode:both}.owl-carousel .owl-animated-in{z-index:0}.owl-carousel .owl-animated-out{z-index:1}.owl-carousel .fadeOut{animation-name:fadeOut}@keyframes fadeOut{0%{opacity:1}100%{opacity:0}}.owl-height{transition:height .5s ease-in-out}.owl-carousel .owl-item .owl-lazy{opacity:0;transition:opacity .4s ease}.owl-carousel .owl-item img.owl-lazy{transform-style:preserve-3d}.owl-carousel .owl-video-wrapper{position:relative;height:100%;background:#000}.owl-carousel .owl-video-play-icon{position:absolute;height:80px;width:80px;left:50%;top:50%;margin-left:-40px;margin-top:-40px;background:url(owl.video.play.png) no-repeat;cursor:pointer;z-index:1;-webkit-backface-visibility:hidden;transition:transform .1s ease}.owl-carousel .owl-video-play-icon:hover{-ms-transform:scale(1.3,1.3);transform:scale(1.3,1.3)}.owl-carousel .owl-video-playing .owl-video-play-icon,.owl-carousel .owl-video-playing .owl-video-tn{display:none}.owl-carousel .owl-video-tn{opacity:0;height:100%;background-position:center center;background-repeat:no-repeat;background-size:contain;transition:opacity .4s ease}.owl-carousel .owl-video-frame{position:relative;z-index:1;height:100%;width:100%}                                                                                                                                                                                                                                                                                                                     assets/owlcarousel/owl.carousel.min.js                                                              0000705                 00000123546 15242037122 0014151 0                                                                                                    ustar 00                                                                                                                                                                                                                                                       /**
 * Owl Carousel v2.1.6
 * Copyright 2013-2016 David Deutsch
 * Licensed under MIT (https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE)
 */
!function(a,b,c,d){function e(b,c){this.settings=null,this.options=a.extend({},e.Defaults,c),this.$element=a(b),this._handlers={},this._plugins={},this._supress={},this._current=null,this._speed=null,this._coordinates=[],this._breakpoint=null,this._width=null,this._items=[],this._clones=[],this._mergers=[],this._widths=[],this._invalidated={},this._pipe=[],this._drag={time:null,target:null,pointer:null,stage:{start:null,current:null},direction:null},this._states={current:{},tags:{initializing:["busy"],animating:["busy"],dragging:["interacting"]}},a.each(["onResize","onThrottledResize"],a.proxy(function(b,c){this._handlers[c]=a.proxy(this[c],this)},this)),a.each(e.Plugins,a.proxy(function(a,b){this._plugins[a.charAt(0).toLowerCase()+a.slice(1)]=new b(this)},this)),a.each(e.Workers,a.proxy(function(b,c){this._pipe.push({filter:c.filter,run:a.proxy(c.run,this)})},this)),this.setup(),this.initialize()}e.Defaults={items:3,loop:!1,center:!1,rewind:!1,mouseDrag:!0,touchDrag:!0,pullDrag:!0,freeDrag:!1,margin:0,stagePadding:0,merge:!1,mergeFit:!0,autoWidth:!1,startPosition:0,rtl:!1,smartSpeed:250,fluidSpeed:!1,dragEndSpeed:!1,responsive:{},responsiveRefreshRate:200,responsiveBaseElement:b,fallbackEasing:"swing",info:!1,nestedItemSelector:!1,itemElement:"div",stageElement:"div",refreshClass:"owl-refresh",loadedClass:"owl-loaded",loadingClass:"owl-loading",rtlClass:"owl-rtl",responsiveClass:"owl-responsive",dragClass:"owl-drag",itemClass:"owl-item",stageClass:"owl-stage",stageOuterClass:"owl-stage-outer",grabClass:"owl-grab"},e.Width={Default:"default",Inner:"inner",Outer:"outer"},e.Type={Event:"event",State:"state"},e.Plugins={},e.Workers=[{filter:["width","settings"],run:function(){this._width=this.$element.width()}},{filter:["width","items","settings"],run:function(a){a.current=this._items&&this._items[this.relative(this._current)]}},{filter:["items","settings"],run:function(){this.$stage.children(".cloned").remove()}},{filter:["width","items","settings"],run:function(a){var b=this.settings.margin||"",c=!this.settings.autoWidth,d=this.settings.rtl,e={width:"auto","margin-left":d?b:"","margin-right":d?"":b};!c&&this.$stage.children().css(e),a.css=e}},{filter:["width","items","settings"],run:function(a){var b=(this.width()/this.settings.items).toFixed(3)-this.settings.margin,c=null,d=this._items.length,e=!this.settings.autoWidth,f=[];for(a.items={merge:!1,width:b};d--;)c=this._mergers[d],c=this.settings.mergeFit&&Math.min(c,this.settings.items)||c,a.items.merge=c>1||a.items.merge,f[d]=e?b*c:this._items[d].width();this._widths=f}},{filter:["items","settings"],run:function(){var b=[],c=this._items,d=this.settings,e=Math.max(2*d.items,4),f=2*Math.ceil(c.length/2),g=d.loop&&c.length?d.rewind?e:Math.max(e,f):0,h="",i="";for(g/=2;g--;)b.push(this.normalize(b.length/2,!0)),h+=c[b[b.length-1]][0].outerHTML,b.push(this.normalize(c.length-1-(b.length-1)/2,!0)),i=c[b[b.length-1]][0].outerHTML+i;this._clones=b,a(h).addClass("cloned").appendTo(this.$stage),a(i).addClass("cloned").prependTo(this.$stage)}},{filter:["width","items","settings"],run:function(){for(var a=this.settings.rtl?1:-1,b=this._clones.length+this._items.length,c=-1,d=0,e=0,f=[];++c<b;)d=f[c-1]||0,e=this._widths[this.relative(c)]+this.settings.margin,f.push(d+e*a);this._coordinates=f}},{filter:["width","items","settings"],run:function(){var a=this.settings.stagePadding,b=this._coordinates,c={width:Math.ceil(Math.abs(b[b.length-1]))+2*a,"padding-left":a||"","padding-right":a||""};this.$stage.css(c)}},{filter:["width","items","settings"],run:function(a){var b=this._coordinates.length,c=!this.settings.autoWidth,d=this.$stage.children();if(c&&a.items.merge)for(;b--;)a.css.width=this._widths[this.relative(b)],d.eq(b).css(a.css);else c&&(a.css.width=a.items.width,d.css(a.css))}},{filter:["items"],run:function(){this._coordinates.length<1&&this.$stage.removeAttr("style")}},{filter:["width","items","settings"],run:function(a){a.current=a.current?this.$stage.children().index(a.current):0,a.current=Math.max(this.minimum(),Math.min(this.maximum(),a.current)),this.reset(a.current)}},{filter:["position"],run:function(){this.animate(this.coordinates(this._current))}},{filter:["width","position","items","settings"],run:function(){var a,b,c,d,e=this.settings.rtl?1:-1,f=2*this.settings.stagePadding,g=this.coordinates(this.current())+f,h=g+this.width()*e,i=[];for(c=0,d=this._coordinates.length;d>c;c++)a=this._coordinates[c-1]||0,b=Math.abs(this._coordinates[c])+f*e,(this.op(a,"<=",g)&&this.op(a,">",h)||this.op(b,"<",g)&&this.op(b,">",h))&&i.push(c);this.$stage.children(".active").removeClass("active"),this.$stage.children(":eq("+i.join("), :eq(")+")").addClass("active"),this.settings.center&&(this.$stage.children(".center").removeClass("center"),this.$stage.children().eq(this.current()).addClass("center"))}}],e.prototype.initialize=function(){if(this.enter("initializing"),this.trigger("initialize"),this.$element.toggleClass(this.settings.rtlClass,this.settings.rtl),this.settings.autoWidth&&!this.is("pre-loading")){var b,c,e;b=this.$element.find("img"),c=this.settings.nestedItemSelector?"."+this.settings.nestedItemSelector:d,e=this.$element.children(c).width(),b.length&&0>=e&&this.preloadAutoWidthImages(b)}this.$element.addClass(this.options.loadingClass),this.$stage=a("<"+this.settings.stageElement+' class="'+this.settings.stageClass+'"/>').wrap('<div class="'+this.settings.stageOuterClass+'"/>'),this.$element.append(this.$stage.parent()),this.replace(this.$element.children().not(this.$stage.parent())),this.$element.is(":visible")?this.refresh():this.invalidate("width"),this.$element.removeClass(this.options.loadingClass).addClass(this.options.loadedClass),this.registerEventHandlers(),this.leave("initializing"),this.trigger("initialized")},e.prototype.setup=function(){var b=this.viewport(),c=this.options.responsive,d=-1,e=null;c?(a.each(c,function(a){b>=a&&a>d&&(d=Number(a))}),e=a.extend({},this.options,c[d]),"function"==typeof e.stagePadding&&(e.stagePadding=e.stagePadding()),delete e.responsive,e.responsiveClass&&this.$element.attr("class",this.$element.attr("class").replace(new RegExp("("+this.options.responsiveClass+"-)\\S+\\s","g"),"$1"+d))):e=a.extend({},this.options),this.trigger("change",{property:{name:"settings",value:e}}),this._breakpoint=d,this.settings=e,this.invalidate("settings"),this.trigger("changed",{property:{name:"settings",value:this.settings}})},e.prototype.optionsLogic=function(){this.settings.autoWidth&&(this.settings.stagePadding=!1,this.settings.merge=!1)},e.prototype.prepare=function(b){var c=this.trigger("prepare",{content:b});return c.data||(c.data=a("<"+this.settings.itemElement+"/>").addClass(this.options.itemClass).append(b)),this.trigger("prepared",{content:c.data}),c.data},e.prototype.update=function(){for(var b=0,c=this._pipe.length,d=a.proxy(function(a){return this[a]},this._invalidated),e={};c>b;)(this._invalidated.all||a.grep(this._pipe[b].filter,d).length>0)&&this._pipe[b].run(e),b++;this._invalidated={},!this.is("valid")&&this.enter("valid")},e.prototype.width=function(a){switch(a=a||e.Width.Default){case e.Width.Inner:case e.Width.Outer:return this._width;default:return this._width-2*this.settings.stagePadding+this.settings.margin}},e.prototype.refresh=function(){this.enter("refreshing"),this.trigger("refresh"),this.setup(),this.optionsLogic(),this.$element.addClass(this.options.refreshClass),this.update(),this.$element.removeClass(this.options.refreshClass),this.leave("refreshing"),this.trigger("refreshed")},e.prototype.onThrottledResize=function(){b.clearTimeout(this.resizeTimer),this.resizeTimer=b.setTimeout(this._handlers.onResize,this.settings.responsiveRefreshRate)},e.prototype.onResize=function(){return this._items.length?this._width===this.$element.width()?!1:this.$element.is(":visible")?(this.enter("resizing"),this.trigger("resize").isDefaultPrevented()?(this.leave("resizing"),!1):(this.invalidate("width"),this.refresh(),this.leave("resizing"),void this.trigger("resized"))):!1:!1},e.prototype.registerEventHandlers=function(){a.support.transition&&this.$stage.on(a.support.transition.end+".owl.core",a.proxy(this.onTransitionEnd,this)),this.settings.responsive!==!1&&this.on(b,"resize",this._handlers.onThrottledResize),this.settings.mouseDrag&&(this.$element.addClass(this.options.dragClass),this.$stage.on("mousedown.owl.core",a.proxy(this.onDragStart,this)),this.$stage.on("dragstart.owl.core selectstart.owl.core",function(){return!1})),this.settings.touchDrag&&(this.$stage.on("touchstart.owl.core",a.proxy(this.onDragStart,this)),this.$stage.on("touchcancel.owl.core",a.proxy(this.onDragEnd,this)))},e.prototype.onDragStart=function(b){var d=null;3!==b.which&&(a.support.transform?(d=this.$stage.css("transform").replace(/.*\(|\)| /g,"").split(","),d={x:d[16===d.length?12:4],y:d[16===d.length?13:5]}):(d=this.$stage.position(),d={x:this.settings.rtl?d.left+this.$stage.width()-this.width()+this.settings.margin:d.left,y:d.top}),this.is("animating")&&(a.support.transform?this.animate(d.x):this.$stage.stop(),this.invalidate("position")),this.$element.toggleClass(this.options.grabClass,"mousedown"===b.type),this.speed(0),this._drag.time=(new Date).getTime(),this._drag.target=a(b.target),this._drag.stage.start=d,this._drag.stage.current=d,this._drag.pointer=this.pointer(b),a(c).on("mouseup.owl.core touchend.owl.core",a.proxy(this.onDragEnd,this)),a(c).one("mousemove.owl.core touchmove.owl.core",a.proxy(function(b){var d=this.difference(this._drag.pointer,this.pointer(b));a(c).on("mousemove.owl.core touchmove.owl.core",a.proxy(this.onDragMove,this)),Math.abs(d.x)<Math.abs(d.y)&&this.is("valid")||(b.preventDefault(),this.enter("dragging"),this.trigger("drag"))},this)))},e.prototype.onDragMove=function(a){var b=null,c=null,d=null,e=this.difference(this._drag.pointer,this.pointer(a)),f=this.difference(this._drag.stage.start,e);this.is("dragging")&&(a.preventDefault(),this.settings.loop?(b=this.coordinates(this.minimum()),c=this.coordinates(this.maximum()+1)-b,f.x=((f.x-b)%c+c)%c+b):(b=this.settings.rtl?this.coordinates(this.maximum()):this.coordinates(this.minimum()),c=this.settings.rtl?this.coordinates(this.minimum()):this.coordinates(this.maximum()),d=this.settings.pullDrag?-1*e.x/5:0,f.x=Math.max(Math.min(f.x,b+d),c+d)),this._drag.stage.current=f,this.animate(f.x))},e.prototype.onDragEnd=function(b){var d=this.difference(this._drag.pointer,this.pointer(b)),e=this._drag.stage.current,f=d.x>0^this.settings.rtl?"left":"right";a(c).off(".owl.core"),this.$element.removeClass(this.options.grabClass),(0!==d.x&&this.is("dragging")||!this.is("valid"))&&(this.speed(this.settings.dragEndSpeed||this.settings.smartSpeed),this.current(this.closest(e.x,0!==d.x?f:this._drag.direction)),this.invalidate("position"),this.update(),this._drag.direction=f,(Math.abs(d.x)>3||(new Date).getTime()-this._drag.time>300)&&this._drag.target.one("click.owl.core",function(){return!1})),this.is("dragging")&&(this.leave("dragging"),this.trigger("dragged"))},e.prototype.closest=function(b,c){var d=-1,e=30,f=this.width(),g=this.coordinates();return this.settings.freeDrag||a.each(g,a.proxy(function(a,h){return"left"===c&&b>h-e&&h+e>b?d=a:"right"===c&&b>h-f-e&&h-f+e>b?d=a+1:this.op(b,"<",h)&&this.op(b,">",g[a+1]||h-f)&&(d="left"===c?a+1:a),-1===d},this)),this.settings.loop||(this.op(b,">",g[this.minimum()])?d=b=this.minimum():this.op(b,"<",g[this.maximum()])&&(d=b=this.maximum())),d},e.prototype.animate=function(b){var c=this.speed()>0;this.is("animating")&&this.onTransitionEnd(),c&&(this.enter("animating"),this.trigger("translate")),a.support.transform3d&&a.support.transition?this.$stage.css({transform:"translate3d("+b+"px,0px,0px)",transition:this.speed()/1e3+"s"}):c?this.$stage.animate({left:b+"px"},this.speed(),this.settings.fallbackEasing,a.proxy(this.onTransitionEnd,this)):this.$stage.css({left:b+"px"})},e.prototype.is=function(a){return this._states.current[a]&&this._states.current[a]>0},e.prototype.current=function(a){if(a===d)return this._current;if(0===this._items.length)return d;if(a=this.normalize(a),this._current!==a){var b=this.trigger("change",{property:{name:"position",value:a}});b.data!==d&&(a=this.normalize(b.data)),this._current=a,this.invalidate("position"),this.trigger("changed",{property:{name:"position",value:this._current}})}return this._current},e.prototype.invalidate=function(b){return"string"===a.type(b)&&(this._invalidated[b]=!0,this.is("valid")&&this.leave("valid")),a.map(this._invalidated,function(a,b){return b})},e.prototype.reset=function(a){a=this.normalize(a),a!==d&&(this._speed=0,this._current=a,this.suppress(["translate","translated"]),this.animate(this.coordinates(a)),this.release(["translate","translated"]))},e.prototype.normalize=function(a,b){var c=this._items.length,e=b?0:this._clones.length;return!this.isNumeric(a)||1>c?a=d:(0>a||a>=c+e)&&(a=((a-e/2)%c+c)%c+e/2),a},e.prototype.relative=function(a){return a-=this._clones.length/2,this.normalize(a,!0)},e.prototype.maximum=function(a){var b,c,d,e=this.settings,f=this._coordinates.length;if(e.loop)f=this._clones.length/2+this._items.length-1;else if(e.autoWidth||e.merge){for(b=this._items.length,c=this._items[--b].width(),d=this.$element.width();b--&&(c+=this._items[b].width()+this.settings.margin,!(c>d)););f=b+1}else f=e.center?this._items.length-1:this._items.length-e.items;return a&&(f-=this._clones.length/2),Math.max(f,0)},e.prototype.minimum=function(a){return a?0:this._clones.length/2},e.prototype.items=function(a){return a===d?this._items.slice():(a=this.normalize(a,!0),this._items[a])},e.prototype.mergers=function(a){return a===d?this._mergers.slice():(a=this.normalize(a,!0),this._mergers[a])},e.prototype.clones=function(b){var c=this._clones.length/2,e=c+this._items.length,f=function(a){return a%2===0?e+a/2:c-(a+1)/2};return b===d?a.map(this._clones,function(a,b){return f(b)}):a.map(this._clones,function(a,c){return a===b?f(c):null})},e.prototype.speed=function(a){return a!==d&&(this._speed=a),this._speed},e.prototype.coordinates=function(b){var c,e=1,f=b-1;return b===d?a.map(this._coordinates,a.proxy(function(a,b){return this.coordinates(b)},this)):(this.settings.center?(this.settings.rtl&&(e=-1,f=b+1),c=this._coordinates[b],c+=(this.width()-c+(this._coordinates[f]||0))/2*e):c=this._coordinates[f]||0,c=Math.ceil(c))},e.prototype.duration=function(a,b,c){return 0===c?0:Math.min(Math.max(Math.abs(b-a),1),6)*Math.abs(c||this.settings.smartSpeed)},e.prototype.to=function(a,b){var c=this.current(),d=null,e=a-this.relative(c),f=(e>0)-(0>e),g=this._items.length,h=this.minimum(),i=this.maximum();this.settings.loop?(!this.settings.rewind&&Math.abs(e)>g/2&&(e+=-1*f*g),a=c+e,d=((a-h)%g+g)%g+h,d!==a&&i>=d-e&&d-e>0&&(c=d-e,a=d,this.reset(c))):this.settings.rewind?(i+=1,a=(a%i+i)%i):a=Math.max(h,Math.min(i,a)),this.speed(this.duration(c,a,b)),this.current(a),this.$element.is(":visible")&&this.update()},e.prototype.next=function(a){a=a||!1,this.to(this.relative(this.current())+1,a)},e.prototype.prev=function(a){a=a||!1,this.to(this.relative(this.current())-1,a)},e.prototype.onTransitionEnd=function(a){return a!==d&&(a.stopPropagation(),(a.target||a.srcElement||a.originalTarget)!==this.$stage.get(0))?!1:(this.leave("animating"),void this.trigger("translated"))},e.prototype.viewport=function(){var d;if(this.options.responsiveBaseElement!==b)d=a(this.options.responsiveBaseElement).width();else if(b.innerWidth)d=b.innerWidth;else{if(!c.documentElement||!c.documentElement.clientWidth)throw"Can not detect viewport width.";d=c.documentElement.clientWidth}return d},e.prototype.replace=function(b){this.$stage.empty(),this._items=[],b&&(b=b instanceof jQuery?b:a(b)),this.settings.nestedItemSelector&&(b=b.find("."+this.settings.nestedItemSelector)),b.filter(function(){return 1===this.nodeType}).each(a.proxy(function(a,b){b=this.prepare(b),this.$stage.append(b),this._items.push(b),this._mergers.push(1*b.find("[data-merge]").addBack("[data-merge]").attr("data-merge")||1)},this)),this.reset(this.isNumeric(this.settings.startPosition)?this.settings.startPosition:0),this.invalidate("items")},e.prototype.add=function(b,c){var e=this.relative(this._current);c=c===d?this._items.length:this.normalize(c,!0),b=b instanceof jQuery?b:a(b),this.trigger("add",{content:b,position:c}),b=this.prepare(b),0===this._items.length||c===this._items.length?(0===this._items.length&&this.$stage.append(b),0!==this._items.length&&this._items[c-1].after(b),this._items.push(b),this._mergers.push(1*b.find("[data-merge]").addBack("[data-merge]").attr("data-merge")||1)):(this._items[c].before(b),this._items.splice(c,0,b),this._mergers.splice(c,0,1*b.find("[data-merge]").addBack("[data-merge]").attr("data-merge")||1)),this._items[e]&&this.reset(this._items[e].index()),this.invalidate("items"),this.trigger("added",{content:b,position:c})},e.prototype.remove=function(a){a=this.normalize(a,!0),a!==d&&(this.trigger("remove",{content:this._items[a],position:a}),this._items[a].remove(),this._items.splice(a,1),this._mergers.splice(a,1),this.invalidate("items"),this.trigger("removed",{content:null,position:a}))},e.prototype.preloadAutoWidthImages=function(b){b.each(a.proxy(function(b,c){this.enter("pre-loading"),c=a(c),a(new Image).one("load",a.proxy(function(a){c.attr("src",a.target.src),c.css("opacity",1),this.leave("pre-loading"),!this.is("pre-loading")&&!this.is("initializing")&&this.refresh()},this)).attr("src",c.attr("src")||c.attr("data-src")||c.attr("data-src-retina"))},this))},e.prototype.destroy=function(){this.$element.off(".owl.core"),this.$stage.off(".owl.core"),a(c).off(".owl.core"),this.settings.responsive!==!1&&(b.clearTimeout(this.resizeTimer),this.off(b,"resize",this._handlers.onThrottledResize));for(var d in this._plugins)this._plugins[d].destroy();this.$stage.children(".cloned").remove(),this.$stage.unwrap(),this.$stage.children().contents().unwrap(),this.$stage.children().unwrap(),this.$element.removeClass(this.options.refreshClass).removeClass(this.options.loadingClass).removeClass(this.options.loadedClass).removeClass(this.options.rtlClass).removeClass(this.options.dragClass).removeClass(this.options.grabClass).attr("class",this.$element.attr("class").replace(new RegExp(this.options.responsiveClass+"-\\S+\\s","g"),"")).removeData("owl.carousel")},e.prototype.op=function(a,b,c){var d=this.settings.rtl;switch(b){case"<":return d?a>c:c>a;case">":return d?c>a:a>c;case">=":return d?c>=a:a>=c;case"<=":return d?a>=c:c>=a}},e.prototype.on=function(a,b,c,d){a.addEventListener?a.addEventListener(b,c,d):a.attachEvent&&a.attachEvent("on"+b,c)},e.prototype.off=function(a,b,c,d){a.removeEventListener?a.removeEventListener(b,c,d):a.detachEvent&&a.detachEvent("on"+b,c)},e.prototype.trigger=function(b,c,d,f,g){var h={item:{count:this._items.length,index:this.current()}},i=a.camelCase(a.grep(["on",b,d],function(a){return a}).join("-").toLowerCase()),j=a.Event([b,"owl",d||"carousel"].join(".").toLowerCase(),a.extend({relatedTarget:this},h,c));return this._supress[b]||(a.each(this._plugins,function(a,b){b.onTrigger&&b.onTrigger(j)}),this.register({type:e.Type.Event,name:b}),this.$element.trigger(j),this.settings&&"function"==typeof this.settings[i]&&this.settings[i].call(this,j)),j},e.prototype.enter=function(b){a.each([b].concat(this._states.tags[b]||[]),a.proxy(function(a,b){this._states.current[b]===d&&(this._states.current[b]=0),this._states.current[b]++},this))},e.prototype.leave=function(b){a.each([b].concat(this._states.tags[b]||[]),a.proxy(function(a,b){this._states.current[b]--},this))},e.prototype.register=function(b){if(b.type===e.Type.Event){if(a.event.special[b.name]||(a.event.special[b.name]={}),!a.event.special[b.name].owl){var c=a.event.special[b.name]._default;a.event.special[b.name]._default=function(a){return!c||!c.apply||a.namespace&&-1!==a.namespace.indexOf("owl")?a.namespace&&a.namespace.indexOf("owl")>-1:c.apply(this,arguments)},a.event.special[b.name].owl=!0}}else b.type===e.Type.State&&(this._states.tags[b.name]?this._states.tags[b.name]=this._states.tags[b.name].concat(b.tags):this._states.tags[b.name]=b.tags,this._states.tags[b.name]=a.grep(this._states.tags[b.name],a.proxy(function(c,d){return a.inArray(c,this._states.tags[b.name])===d},this)))},e.prototype.suppress=function(b){a.each(b,a.proxy(function(a,b){this._supress[b]=!0},this))},e.prototype.release=function(b){a.each(b,a.proxy(function(a,b){delete this._supress[b]},this))},e.prototype.pointer=function(a){var c={x:null,y:null};return a=a.originalEvent||a||b.event,a=a.touches&&a.touches.length?a.touches[0]:a.changedTouches&&a.changedTouches.length?a.changedTouches[0]:a,a.pageX?(c.x=a.pageX,c.y=a.pageY):(c.x=a.clientX,c.y=a.clientY),c},e.prototype.isNumeric=function(a){return!isNaN(parseFloat(a))},e.prototype.difference=function(a,b){return{x:a.x-b.x,y:a.y-b.y}},a.fn.owlCarousel=function(b){var c=Array.prototype.slice.call(arguments,1);return this.each(function(){var d=a(this),f=d.data("owl.carousel");f||(f=new e(this,"object"==typeof b&&b),d.data("owl.carousel",f),a.each(["next","prev","to","destroy","refresh","replace","add","remove"],function(b,c){f.register({type:e.Type.Event,name:c}),f.$element.on(c+".owl.carousel.core",a.proxy(function(a){a.namespace&&a.relatedTarget!==this&&(this.suppress([c]),f[c].apply(this,[].slice.call(arguments,1)),this.release([c]))},f))})),"string"==typeof b&&"_"!==b.charAt(0)&&f[b].apply(f,c)})},a.fn.owlCarousel.Constructor=e}(window.Zepto||window.jQuery,window,document),function(a,b,c,d){var e=function(b){this._core=b,this._interval=null,this._visible=null,this._handlers={"initialized.owl.carousel":a.proxy(function(a){a.namespace&&this._core.settings.autoRefresh&&this.watch()},this)},this._core.options=a.extend({},e.Defaults,this._core.options),this._core.$element.on(this._handlers)};e.Defaults={autoRefresh:!0,autoRefreshInterval:500},e.prototype.watch=function(){this._interval||(this._visible=this._core.$element.is(":visible"),this._interval=b.setInterval(a.proxy(this.refresh,this),this._core.settings.autoRefreshInterval))},e.prototype.refresh=function(){this._core.$element.is(":visible")!==this._visible&&(this._visible=!this._visible,this._core.$element.toggleClass("owl-hidden",!this._visible),this._visible&&this._core.invalidate("width")&&this._core.refresh())},e.prototype.destroy=function(){var a,c;b.clearInterval(this._interval);for(a in this._handlers)this._core.$element.off(a,this._handlers[a]);for(c in Object.getOwnPropertyNames(this))"function"!=typeof this[c]&&(this[c]=null)},a.fn.owlCarousel.Constructor.Plugins.AutoRefresh=e}(window.Zepto||window.jQuery,window,document),function(a,b,c,d){var e=function(b){this._core=b,this._loaded=[],this._handlers={"initialized.owl.carousel change.owl.carousel resized.owl.carousel":a.proxy(function(b){if(b.namespace&&this._core.settings&&this._core.settings.lazyLoad&&(b.property&&"position"==b.property.name||"initialized"==b.type))for(var c=this._core.settings,e=c.center&&Math.ceil(c.items/2)||c.items,f=c.center&&-1*e||0,g=(b.property&&b.property.value!==d?b.property.value:this._core.current())+f,h=this._core.clones().length,i=a.proxy(function(a,b){this.load(b)},this);f++<e;)this.load(h/2+this._core.relative(g)),h&&a.each(this._core.clones(this._core.relative(g)),i),g++},this)},this._core.options=a.extend({},e.Defaults,this._core.options),this._core.$element.on(this._handlers)};e.Defaults={lazyLoad:!1},e.prototype.load=function(c){var d=this._core.$stage.children().eq(c),e=d&&d.find(".owl-lazy");!e||a.inArray(d.get(0),this._loaded)>-1||(e.each(a.proxy(function(c,d){var e,f=a(d),g=b.devicePixelRatio>1&&f.attr("data-src-retina")||f.attr("data-src");this._core.trigger("load",{element:f,url:g},"lazy"),f.is("img")?f.one("load.owl.lazy",a.proxy(function(){f.css("opacity",1),this._core.trigger("loaded",{element:f,url:g},"lazy")},this)).attr("src",g):(e=new Image,e.onload=a.proxy(function(){f.css({"background-image":"url("+g+")",opacity:"1"}),this._core.trigger("loaded",{element:f,url:g},"lazy")},this),e.src=g)},this)),this._loaded.push(d.get(0)))},e.prototype.destroy=function(){var a,b;for(a in this.handlers)this._core.$element.off(a,this.handlers[a]);for(b in Object.getOwnPropertyNames(this))"function"!=typeof this[b]&&(this[b]=null)},a.fn.owlCarousel.Constructor.Plugins.Lazy=e}(window.Zepto||window.jQuery,window,document),function(a,b,c,d){var e=function(b){this._core=b,this._handlers={"initialized.owl.carousel refreshed.owl.carousel":a.proxy(function(a){a.namespace&&this._core.settings.autoHeight&&this.update()},this),"changed.owl.carousel":a.proxy(function(a){a.namespace&&this._core.settings.autoHeight&&"position"==a.property.name&&this.update()},this),"loaded.owl.lazy":a.proxy(function(a){a.namespace&&this._core.settings.autoHeight&&a.element.closest("."+this._core.settings.itemClass).index()===this._core.current()&&this.update()},this)},this._core.options=a.extend({},e.Defaults,this._core.options),this._core.$element.on(this._handlers)};e.Defaults={autoHeight:!1,autoHeightClass:"owl-height"},e.prototype.update=function(){var b=this._core._current,c=b+this._core.settings.items,d=this._core.$stage.children().toArray().slice(b,c),e=[],f=0;a.each(d,function(b,c){e.push(a(c).height())}),f=Math.max.apply(null,e),this._core.$stage.parent().height(f).addClass(this._core.settings.autoHeightClass)},e.prototype.destroy=function(){var a,b;for(a in this._handlers)this._core.$element.off(a,this._handlers[a]);for(b in Object.getOwnPropertyNames(this))"function"!=typeof this[b]&&(this[b]=null)},a.fn.owlCarousel.Constructor.Plugins.AutoHeight=e}(window.Zepto||window.jQuery,window,document),function(a,b,c,d){var e=function(b){this._core=b,this._videos={},this._playing=null,this._handlers={"initialized.owl.carousel":a.proxy(function(a){a.namespace&&this._core.register({type:"state",name:"playing",tags:["interacting"]})},this),"resize.owl.carousel":a.proxy(function(a){a.namespace&&this._core.settings.video&&this.isInFullScreen()&&a.preventDefault()},this),"refreshed.owl.carousel":a.proxy(function(a){a.namespace&&this._core.is("resizing")&&this._core.$stage.find(".cloned .owl-video-frame").remove()},this),"changed.owl.carousel":a.proxy(function(a){a.namespace&&"position"===a.property.name&&this._playing&&this.stop()},this),"prepared.owl.carousel":a.proxy(function(b){if(b.namespace){var c=a(b.content).find(".owl-video");c.length&&(c.css("display","none"),this.fetch(c,a(b.content)))}},this)},this._core.options=a.extend({},e.Defaults,this._core.options),this._core.$element.on(this._handlers),this._core.$element.on("click.owl.video",".owl-video-play-icon",a.proxy(function(a){this.play(a)},this))};e.Defaults={video:!1,videoHeight:!1,videoWidth:!1},e.prototype.fetch=function(a,b){var c=function(){return a.attr("data-vimeo-id")?"vimeo":a.attr("data-vzaar-id")?"vzaar":"youtube"}(),d=a.attr("data-vimeo-id")||a.attr("data-youtube-id")||a.attr("data-vzaar-id"),e=a.attr("data-width")||this._core.settings.videoWidth,f=a.attr("data-height")||this._core.settings.videoHeight,g=a.attr("href");if(!g)throw new Error("Missing video URL.");if(d=g.match(/(http:|https:|)\/\/(player.|www.|app.)?(vimeo\.com|youtu(be\.com|\.be|be\.googleapis\.com)|vzaar\.com)\/(video\/|videos\/|embed\/|channels\/.+\/|groups\/.+\/|watch\?v=|v\/)?([A-Za-z0-9._%-]*)(\&\S+)?/),d[3].indexOf("youtu")>-1)c="youtube";else if(d[3].indexOf("vimeo")>-1)c="vimeo";else{if(!(d[3].indexOf("vzaar")>-1))throw new Error("Video URL not supported.");c="vzaar"}d=d[6],this._videos[g]={type:c,id:d,width:e,height:f},b.attr("data-video",g),this.thumbnail(a,this._videos[g])},e.prototype.thumbnail=function(b,c){var d,e,f,g=c.width&&c.height?'style="width:'+c.width+"px;height:"+c.height+'px;"':"",h=b.find("img"),i="src",j="",k=this._core.settings,l=function(a){e='<div class="owl-video-play-icon"></div>',d=k.lazyLoad?'<div class="owl-video-tn '+j+'" '+i+'="'+a+'"></div>':'<div class="owl-video-tn" style="opacity:1;background-image:url('+a+')"></div>',b.after(d),b.after(e)};return b.wrap('<div class="owl-video-wrapper"'+g+"></div>"),this._core.settings.lazyLoad&&(i="data-src",j="owl-lazy"),h.length?(l(h.attr(i)),h.remove(),!1):void("youtube"===c.type?(f="//img.youtube.com/vi/"+c.id+"/hqdefault.jpg",l(f)):"vimeo"===c.type?a.ajax({type:"GET",url:"//vimeo.com/api/v2/video/"+c.id+".json",jsonp:"callback",dataType:"jsonp",success:function(a){f=a[0].thumbnail_large,l(f)}}):"vzaar"===c.type&&a.ajax({type:"GET",url:"//vzaar.com/api/videos/"+c.id+".json",jsonp:"callback",dataType:"jsonp",success:function(a){f=a.framegrab_url,l(f)}}))},e.prototype.stop=function(){this._core.trigger("stop",null,"video"),this._playing.find(".owl-video-frame").remove(),this._playing.removeClass("owl-video-playing"),this._playing=null,this._core.leave("playing"),this._core.trigger("stopped",null,"video")},e.prototype.play=function(b){var c,d=a(b.target),e=d.closest("."+this._core.settings.itemClass),f=this._videos[e.attr("data-video")],g=f.width||"100%",h=f.height||this._core.$stage.height();this._playing||(this._core.enter("playing"),this._core.trigger("play",null,"video"),e=this._core.items(this._core.relative(e.index())),this._core.reset(e.index()),"youtube"===f.type?c='<iframe width="'+g+'" height="'+h+'" src="//www.youtube.com/embed/'+f.id+"?autoplay=1&v="+f.id+'" frameborder="0" allowfullscreen></iframe>':"vimeo"===f.type?c='<iframe src="//player.vimeo.com/video/'+f.id+'?autoplay=1" width="'+g+'" height="'+h+'" frameborder="0" webkitallowfullscreen mozallowfullscreen allowfullscreen></iframe>':"vzaar"===f.type&&(c='<iframe frameborder="0"height="'+h+'"width="'+g+'" allowfullscreen mozallowfullscreen webkitAllowFullScreen src="//view.vzaar.com/'+f.id+'/player?autoplay=true"></iframe>'),a('<div class="owl-video-frame">'+c+"</div>").insertAfter(e.find(".owl-video")),this._playing=e.addClass("owl-video-playing"))},e.prototype.isInFullScreen=function(){var b=c.fullscreenElement||c.mozFullScreenElement||c.webkitFullscreenElement;return b&&a(b).parent().hasClass("owl-video-frame")},e.prototype.destroy=function(){var a,b;this._core.$element.off("click.owl.video");for(a in this._handlers)this._core.$element.off(a,this._handlers[a]);for(b in Object.getOwnPropertyNames(this))"function"!=typeof this[b]&&(this[b]=null)},a.fn.owlCarousel.Constructor.Plugins.Video=e}(window.Zepto||window.jQuery,window,document),function(a,b,c,d){var e=function(b){this.core=b,this.core.options=a.extend({},e.Defaults,this.core.options),this.swapping=!0,this.previous=d,this.next=d,this.handlers={"change.owl.carousel":a.proxy(function(a){a.namespace&&"position"==a.property.name&&(this.previous=this.core.current(),this.next=a.property.value)},this),"drag.owl.carousel dragged.owl.carousel translated.owl.carousel":a.proxy(function(a){a.namespace&&(this.swapping="translated"==a.type)},this),"translate.owl.carousel":a.proxy(function(a){a.namespace&&this.swapping&&(this.core.options.animateOut||this.core.options.animateIn)&&this.swap()},this)},this.core.$element.on(this.handlers)};e.Defaults={animateOut:!1,animateIn:!1},e.prototype.swap=function(){if(1===this.core.settings.items&&a.support.animation&&a.support.transition){this.core.speed(0);var b,c=a.proxy(this.clear,this),d=this.core.$stage.children().eq(this.previous),e=this.core.$stage.children().eq(this.next),f=this.core.settings.animateIn,g=this.core.settings.animateOut;this.core.current()!==this.previous&&(g&&(b=this.core.coordinates(this.previous)-this.core.coordinates(this.next),d.one(a.support.animation.end,c).css({left:b+"px"}).addClass("animated owl-animated-out").addClass(g)),f&&e.one(a.support.animation.end,c).addClass("animated owl-animated-in").addClass(f))}},e.prototype.clear=function(b){a(b.target).css({left:""}).removeClass("animated owl-animated-out owl-animated-in").removeClass(this.core.settings.animateIn).removeClass(this.core.settings.animateOut),this.core.onTransitionEnd()},e.prototype.destroy=function(){var a,b;for(a in this.handlers)this.core.$element.off(a,this.handlers[a]);for(b in Object.getOwnPropertyNames(this))"function"!=typeof this[b]&&(this[b]=null);
},a.fn.owlCarousel.Constructor.Plugins.Animate=e}(window.Zepto||window.jQuery,window,document),function(a,b,c,d){var e=function(b){this._core=b,this._timeout=null,this._paused=!1,this._handlers={"changed.owl.carousel":a.proxy(function(a){a.namespace&&"settings"===a.property.name?this._core.settings.autoplay?this.play():this.stop():a.namespace&&"position"===a.property.name&&this._core.settings.autoplay&&this._setAutoPlayInterval()},this),"initialized.owl.carousel":a.proxy(function(a){a.namespace&&this._core.settings.autoplay&&this.play()},this),"play.owl.autoplay":a.proxy(function(a,b,c){a.namespace&&this.play(b,c)},this),"stop.owl.autoplay":a.proxy(function(a){a.namespace&&this.stop()},this),"mouseover.owl.autoplay":a.proxy(function(){this._core.settings.autoplayHoverPause&&this._core.is("rotating")&&this.pause()},this),"mouseleave.owl.autoplay":a.proxy(function(){this._core.settings.autoplayHoverPause&&this._core.is("rotating")&&this.play()},this),"touchstart.owl.core":a.proxy(function(){this._core.settings.autoplayHoverPause&&this._core.is("rotating")&&this.pause()},this),"touchend.owl.core":a.proxy(function(){this._core.settings.autoplayHoverPause&&this.play()},this)},this._core.$element.on(this._handlers),this._core.options=a.extend({},e.Defaults,this._core.options)};e.Defaults={autoplay:!1,autoplayTimeout:5e3,autoplayHoverPause:!1,autoplaySpeed:!1},e.prototype.play=function(a,b){this._paused=!1,this._core.is("rotating")||(this._core.enter("rotating"),this._setAutoPlayInterval())},e.prototype._getNextTimeout=function(d,e){return this._timeout&&b.clearTimeout(this._timeout),b.setTimeout(a.proxy(function(){this._paused||this._core.is("busy")||this._core.is("interacting")||c.hidden||this._core.next(e||this._core.settings.autoplaySpeed)},this),d||this._core.settings.autoplayTimeout)},e.prototype._setAutoPlayInterval=function(){this._timeout=this._getNextTimeout()},e.prototype.stop=function(){this._core.is("rotating")&&(b.clearTimeout(this._timeout),this._core.leave("rotating"))},e.prototype.pause=function(){this._core.is("rotating")&&(this._paused=!0)},e.prototype.destroy=function(){var a,b;this.stop();for(a in this._handlers)this._core.$element.off(a,this._handlers[a]);for(b in Object.getOwnPropertyNames(this))"function"!=typeof this[b]&&(this[b]=null)},a.fn.owlCarousel.Constructor.Plugins.autoplay=e}(window.Zepto||window.jQuery,window,document),function(a,b,c,d){"use strict";var e=function(b){this._core=b,this._initialized=!1,this._pages=[],this._controls={},this._templates=[],this.$element=this._core.$element,this._overrides={next:this._core.next,prev:this._core.prev,to:this._core.to},this._handlers={"prepared.owl.carousel":a.proxy(function(b){b.namespace&&this._core.settings.dotsData&&this._templates.push('<div class="'+this._core.settings.dotClass+'">'+a(b.content).find("[data-dot]").addBack("[data-dot]").attr("data-dot")+"</div>")},this),"added.owl.carousel":a.proxy(function(a){a.namespace&&this._core.settings.dotsData&&this._templates.splice(a.position,0,this._templates.pop())},this),"remove.owl.carousel":a.proxy(function(a){a.namespace&&this._core.settings.dotsData&&this._templates.splice(a.position,1)},this),"changed.owl.carousel":a.proxy(function(a){a.namespace&&"position"==a.property.name&&this.draw()},this),"initialized.owl.carousel":a.proxy(function(a){a.namespace&&!this._initialized&&(this._core.trigger("initialize",null,"navigation"),this.initialize(),this.update(),this.draw(),this._initialized=!0,this._core.trigger("initialized",null,"navigation"))},this),"refreshed.owl.carousel":a.proxy(function(a){a.namespace&&this._initialized&&(this._core.trigger("refresh",null,"navigation"),this.update(),this.draw(),this._core.trigger("refreshed",null,"navigation"))},this)},this._core.options=a.extend({},e.Defaults,this._core.options),this.$element.on(this._handlers)};e.Defaults={nav:!1,navText:["prev","next"],navSpeed:!1,navElement:"div",navContainer:!1,navContainerClass:"owl-nav",navClass:["owl-prev","owl-next"],slideBy:1,dotClass:"owl-dot",dotsClass:"owl-dots",dots:!0,dotsEach:!1,dotsData:!1,dotsSpeed:!1,dotsContainer:!1},e.prototype.initialize=function(){var b,c=this._core.settings;this._controls.$relative=(c.navContainer?a(c.navContainer):a("<div>").addClass(c.navContainerClass).appendTo(this.$element)).addClass("disabled"),this._controls.$previous=a("<"+c.navElement+">").addClass(c.navClass[0]).html(c.navText[0]).prependTo(this._controls.$relative).on("click",a.proxy(function(a){this.prev(c.navSpeed)},this)),this._controls.$next=a("<"+c.navElement+">").addClass(c.navClass[1]).html(c.navText[1]).appendTo(this._controls.$relative).on("click",a.proxy(function(a){this.next(c.navSpeed)},this)),c.dotsData||(this._templates=[a("<div>").addClass(c.dotClass).append(a("<span>")).prop("outerHTML")]),this._controls.$absolute=(c.dotsContainer?a(c.dotsContainer):a("<div>").addClass(c.dotsClass).appendTo(this.$element)).addClass("disabled"),this._controls.$absolute.on("click","div",a.proxy(function(b){var d=a(b.target).parent().is(this._controls.$absolute)?a(b.target).index():a(b.target).parent().index();b.preventDefault(),this.to(d,c.dotsSpeed)},this));for(b in this._overrides)this._core[b]=a.proxy(this[b],this)},e.prototype.destroy=function(){var a,b,c,d;for(a in this._handlers)this.$element.off(a,this._handlers[a]);for(b in this._controls)this._controls[b].remove();for(d in this.overides)this._core[d]=this._overrides[d];for(c in Object.getOwnPropertyNames(this))"function"!=typeof this[c]&&(this[c]=null)},e.prototype.update=function(){var a,b,c,d=this._core.clones().length/2,e=d+this._core.items().length,f=this._core.maximum(!0),g=this._core.settings,h=g.center||g.autoWidth||g.dotsData?1:g.dotsEach||g.items;if("page"!==g.slideBy&&(g.slideBy=Math.min(g.slideBy,g.items)),g.dots||"page"==g.slideBy)for(this._pages=[],a=d,b=0,c=0;e>a;a++){if(b>=h||0===b){if(this._pages.push({start:Math.min(f,a-d),end:a-d+h-1}),Math.min(f,a-d)===f)break;b=0,++c}b+=this._core.mergers(this._core.relative(a))}},e.prototype.draw=function(){var b,c=this._core.settings,d=this._core.items().length<=c.items,e=this._core.relative(this._core.current()),f=c.loop||c.rewind;this._controls.$relative.toggleClass("disabled",!c.nav||d),c.nav&&(this._controls.$previous.toggleClass("disabled",!f&&e<=this._core.minimum(!0)),this._controls.$next.toggleClass("disabled",!f&&e>=this._core.maximum(!0))),this._controls.$absolute.toggleClass("disabled",!c.dots||d),c.dots&&(b=this._pages.length-this._controls.$absolute.children().length,c.dotsData&&0!==b?this._controls.$absolute.html(this._templates.join("")):b>0?this._controls.$absolute.append(new Array(b+1).join(this._templates[0])):0>b&&this._controls.$absolute.children().slice(b).remove(),this._controls.$absolute.find(".active").removeClass("active"),this._controls.$absolute.children().eq(a.inArray(this.current(),this._pages)).addClass("active"))},e.prototype.onTrigger=function(b){var c=this._core.settings;b.page={index:a.inArray(this.current(),this._pages),count:this._pages.length,size:c&&(c.center||c.autoWidth||c.dotsData?1:c.dotsEach||c.items)}},e.prototype.current=function(){var b=this._core.relative(this._core.current());return a.grep(this._pages,a.proxy(function(a,c){return a.start<=b&&a.end>=b},this)).pop()},e.prototype.getPosition=function(b){var c,d,e=this._core.settings;return"page"==e.slideBy?(c=a.inArray(this.current(),this._pages),d=this._pages.length,b?++c:--c,c=this._pages[(c%d+d)%d].start):(c=this._core.relative(this._core.current()),d=this._core.items().length,b?c+=e.slideBy:c-=e.slideBy),c},e.prototype.next=function(b){a.proxy(this._overrides.to,this._core)(this.getPosition(!0),b)},e.prototype.prev=function(b){a.proxy(this._overrides.to,this._core)(this.getPosition(!1),b)},e.prototype.to=function(b,c,d){var e;!d&&this._pages.length?(e=this._pages.length,a.proxy(this._overrides.to,this._core)(this._pages[(b%e+e)%e].start,c)):a.proxy(this._overrides.to,this._core)(b,c)},a.fn.owlCarousel.Constructor.Plugins.Navigation=e}(window.Zepto||window.jQuery,window,document),function(a,b,c,d){"use strict";var e=function(c){this._core=c,this._hashes={},this.$element=this._core.$element,this._handlers={"initialized.owl.carousel":a.proxy(function(c){c.namespace&&"URLHash"===this._core.settings.startPosition&&a(b).trigger("hashchange.owl.navigation")},this),"prepared.owl.carousel":a.proxy(function(b){if(b.namespace){var c=a(b.content).find("[data-hash]").addBack("[data-hash]").attr("data-hash");if(!c)return;this._hashes[c]=b.content}},this),"changed.owl.carousel":a.proxy(function(c){if(c.namespace&&"position"===c.property.name){var d=this._core.items(this._core.relative(this._core.current())),e=a.map(this._hashes,function(a,b){return a===d?b:null}).join();if(!e||b.location.hash.slice(1)===e)return;b.location.hash=e}},this)},this._core.options=a.extend({},e.Defaults,this._core.options),this.$element.on(this._handlers),a(b).on("hashchange.owl.navigation",a.proxy(function(a){var c=b.location.hash.substring(1),e=this._core.$stage.children(),f=this._hashes[c]&&e.index(this._hashes[c]);f!==d&&f!==this._core.current()&&this._core.to(this._core.relative(f),!1,!0)},this))};e.Defaults={URLhashListener:!1},e.prototype.destroy=function(){var c,d;a(b).off("hashchange.owl.navigation");for(c in this._handlers)this._core.$element.off(c,this._handlers[c]);for(d in Object.getOwnPropertyNames(this))"function"!=typeof this[d]&&(this[d]=null)},a.fn.owlCarousel.Constructor.Plugins.Hash=e}(window.Zepto||window.jQuery,window,document),function(a,b,c,d){function e(b,c){var e=!1,f=b.charAt(0).toUpperCase()+b.slice(1);return a.each((b+" "+h.join(f+" ")+f).split(" "),function(a,b){return g[b]!==d?(e=c?b:!0,!1):void 0}),e}function f(a){return e(a,!0)}var g=a("<support>").get(0).style,h="Webkit Moz O ms".split(" "),i={transition:{end:{WebkitTransition:"webkitTransitionEnd",MozTransition:"transitionend",OTransition:"oTransitionEnd",transition:"transitionend"}},animation:{end:{WebkitAnimation:"webkitAnimationEnd",MozAnimation:"animationend",OAnimation:"oAnimationEnd",animation:"animationend"}}},j={csstransforms:function(){return!!e("transform")},csstransforms3d:function(){return!!e("perspective")},csstransitions:function(){return!!e("transition")},cssanimations:function(){return!!e("animation")}};j.csstransitions()&&(a.support.transition=new String(f("transition")),a.support.transition.end=i.transition.end[a.support.transition]),j.cssanimations()&&(a.support.animation=new String(f("animation")),a.support.animation.end=i.animation.end[a.support.animation]),j.csstransforms()&&(a.support.transform=new String(f("transform")),a.support.transform3d=j.csstransforms3d())}(window.Zepto||window.jQuery,window,document);                                                                                                                                                          assets/owlcarousel/ajax-loader.gif                                                                  0000705                 00000006210 15242037122 0013256 0                                                                                                    ustar 00                                                                                                                                                                                                                                                       GIF89a      լ⢢         !NETSCAPE2.0   !Created with ajaxload.info !	
   ,         IiabK$FRAT,2S*05//mp!z0;$0C.I*!HC(A@o!39T5\8)`dwxG=Y
gwHbvA=0	V\\;	;H0t%HsrY<H.ŉ	bZbOEg:GY].=AOQs \bh.9=sgce*ֆf 7D  !	
   ,         IiYͧYF5FԢRÔTbGJLd&Ymx莔 \@ 1&RH
41Q|V%zv#j0
lGg{0~<<	[[hxG
y[0GPzhɾĘkziyh|zhG݄VŢ \h[ Ǥ&+W78! !	
   ,         I)11G5d](RǲT2jL{< [5M
0)
 LImE`pU
^f%^u;zz}0X	
S0ewyk<%	O	z{|%Fi10˼Y8x	z@<ݫ   8Y<ɥ8\P$!  !	
   ,         IgEU ՠRaTB٤p>'e$"\#E1CnĎ~ J,,AaUw^4I%PuQ33{0i1TGgwy}%%'R	=3G%p0
JRo5Ȇ0IĦmykxT_}( ^yKs>i_%n=q4e-M¤D  !	
   ,         I)*')Ed]PR	A:!zrbw%6"G(d$["JFhaQP`p%/BFP\cU?TtW/pG&OtDa_sylD'Mq	tcb2DM:d%4%s)uE3 YU tږD$JiM<Y;ذd< OtX<q'+B  !	
   ,         IiRͧ"J% EQZLd-Y
hkQ|5u4YINbWu5
r	%yb>^%o/rvl9'L;99%i9 C"BBDs^Xf}$P	{L?P O4 E咛V$d J#)pV$ !	
   ,         IiRͧ"Jd] RZN*P*;$P{*N\EА!1UO2D	_r6Ib
H8	B;	"'ZtbK#C'Kw}?Kiz6:xKAC&}9tz\\D5;xQd( 	KWMBIڈM=ˤs⸽8DaJ`@LG !	
   ,         IiRͧ"Jd] RZN*P*;$P{*N\EА!1UO2D	_r6Ib
H8	B;	"'ZtbK#C'KGziz68}z~%XK9:0}%	tz\BlcLbQ 	ǉ ųKňx(țPX,ւ|/"  !	
   ,         IiRͧ"Jd] RZN*P*;$P{*N\EА!1UO2D	_r6Ib
H8	B;	"'ZtbK#C'KGziz68}z~%:A/C}u\h}bD]= 	V)
ڊ9CDK Ku	*00StD  !	
   ,         IiRͧ"Jd] RZN*P*;$P{*N\EА!1UO2D	_r6Ib
H8	B;	"'ZtbK#C'KGzz5
C:	A/C}u\Eh}b6 [= Wx&)I9Ԭ @oCT?Kd]B7 6ЫD !	
   ,         IiRͧ"Jd] RZN*P*;$P{*N\EА!1UO2D	_r6IƀH03hոaj U{CIkmbK#cK8	{a8nV:/q:M
Cu~ Ehk6 	 [_6P</UYHF9?M%
GCk v>.]6!)V  !	
   ,         IiRͧ"Jd]URZN	JjN2sK6
dI)
LHWG6	KX젱.6d~zhuur/6 X5I;_tO#E	{O9V94;VC/
6Ø~*'MonbX:~]+V*mK_OrK N@. d ~qЦDB֋5D  ;                                                                                                                                                                                                                                                                                                                                                                                                 assets/js/isotope.pkgd.min.js                                                                       0000705                 00000117617 15242037122 0012221 0                                                                                                    ustar 00                                                                                                                                                                                                                                                       /*!
 * Isotope PACKAGED v2.2.2
 *
 * Licensed GPLv3 for open source use
 * or Isotope Commercial License for commercial use
 *
 * http://isotope.metafizzy.co
 * Copyright 2015 Metafizzy
 */

!function(a){function b(){}function c(a){function c(b){b.prototype.option||(b.prototype.option=function(b){a.isPlainObject(b)&&(this.options=a.extend(!0,this.options,b))})}function e(b,c){a.fn[b]=function(e){if("string"==typeof e){for(var g=d.call(arguments,1),h=0,i=this.length;i>h;h++){var j=this[h],k=a.data(j,b);if(k)if(a.isFunction(k[e])&&"_"!==e.charAt(0)){var l=k[e].apply(k,g);if(void 0!==l)return l}else f("no such method '"+e+"' for "+b+" instance");else f("cannot call methods on "+b+" prior to initialization; attempted to call '"+e+"'")}return this}return this.each(function(){var d=a.data(this,b);d?(d.option(e),d._init()):(d=new c(this,e),a.data(this,b,d))})}}if(a){var f="undefined"==typeof console?b:function(a){console.error(a)};return a.bridget=function(a,b){c(b),e(a,b)},a.bridget}}var d=Array.prototype.slice;"function"==typeof define&&define.amd?define("jquery-bridget/jquery.bridget",["jquery"],c):c("object"==typeof exports?require("jquery"):a.jQuery)}(window),function(a){function b(b){var c=a.event;return c.target=c.target||c.srcElement||b,c}var c=document.documentElement,d=function(){};c.addEventListener?d=function(a,b,c){a.addEventListener(b,c,!1)}:c.attachEvent&&(d=function(a,c,d){a[c+d]=d.handleEvent?function(){var c=b(a);d.handleEvent.call(d,c)}:function(){var c=b(a);d.call(a,c)},a.attachEvent("on"+c,a[c+d])});var e=function(){};c.removeEventListener?e=function(a,b,c){a.removeEventListener(b,c,!1)}:c.detachEvent&&(e=function(a,b,c){a.detachEvent("on"+b,a[b+c]);try{delete a[b+c]}catch(d){a[b+c]=void 0}});var f={bind:d,unbind:e};"function"==typeof define&&define.amd?define("eventie/eventie",f):"object"==typeof exports?module.exports=f:a.eventie=f}(window),function(){"use strict";function a(){}function b(a,b){for(var c=a.length;c--;)if(a[c].listener===b)return c;return-1}function c(a){return function(){return this[a].apply(this,arguments)}}var d=a.prototype,e=this,f=e.EventEmitter;d.getListeners=function(a){var b,c,d=this._getEvents();if(a instanceof RegExp){b={};for(c in d)d.hasOwnProperty(c)&&a.test(c)&&(b[c]=d[c])}else b=d[a]||(d[a]=[]);return b},d.flattenListeners=function(a){var b,c=[];for(b=0;b<a.length;b+=1)c.push(a[b].listener);return c},d.getListenersAsObject=function(a){var b,c=this.getListeners(a);return c instanceof Array&&(b={},b[a]=c),b||c},d.addListener=function(a,c){var d,e=this.getListenersAsObject(a),f="object"==typeof c;for(d in e)e.hasOwnProperty(d)&&-1===b(e[d],c)&&e[d].push(f?c:{listener:c,once:!1});return this},d.on=c("addListener"),d.addOnceListener=function(a,b){return this.addListener(a,{listener:b,once:!0})},d.once=c("addOnceListener"),d.defineEvent=function(a){return this.getListeners(a),this},d.defineEvents=function(a){for(var b=0;b<a.length;b+=1)this.defineEvent(a[b]);return this},d.removeListener=function(a,c){var d,e,f=this.getListenersAsObject(a);for(e in f)f.hasOwnProperty(e)&&(d=b(f[e],c),-1!==d&&f[e].splice(d,1));return this},d.off=c("removeListener"),d.addListeners=function(a,b){return this.manipulateListeners(!1,a,b)},d.removeListeners=function(a,b){return this.manipulateListeners(!0,a,b)},d.manipulateListeners=function(a,b,c){var d,e,f=a?this.removeListener:this.addListener,g=a?this.removeListeners:this.addListeners;if("object"!=typeof b||b instanceof RegExp)for(d=c.length;d--;)f.call(this,b,c[d]);else for(d in b)b.hasOwnProperty(d)&&(e=b[d])&&("function"==typeof e?f.call(this,d,e):g.call(this,d,e));return this},d.removeEvent=function(a){var b,c=typeof a,d=this._getEvents();if("string"===c)delete d[a];else if(a instanceof RegExp)for(b in d)d.hasOwnProperty(b)&&a.test(b)&&delete d[b];else delete this._events;return this},d.removeAllListeners=c("removeEvent"),d.emitEvent=function(a,b){var c,d,e,f,g=this.getListenersAsObject(a);for(e in g)if(g.hasOwnProperty(e))for(d=g[e].length;d--;)c=g[e][d],c.once===!0&&this.removeListener(a,c.listener),f=c.listener.apply(this,b||[]),f===this._getOnceReturnValue()&&this.removeListener(a,c.listener);return this},d.trigger=c("emitEvent"),d.emit=function(a){var b=Array.prototype.slice.call(arguments,1);return this.emitEvent(a,b)},d.setOnceReturnValue=function(a){return this._onceReturnValue=a,this},d._getOnceReturnValue=function(){return this.hasOwnProperty("_onceReturnValue")?this._onceReturnValue:!0},d._getEvents=function(){return this._events||(this._events={})},a.noConflict=function(){return e.EventEmitter=f,a},"function"==typeof define&&define.amd?define("eventEmitter/EventEmitter",[],function(){return a}):"object"==typeof module&&module.exports?module.exports=a:e.EventEmitter=a}.call(this),function(a){function b(a){if(a){if("string"==typeof d[a])return a;a=a.charAt(0).toUpperCase()+a.slice(1);for(var b,e=0,f=c.length;f>e;e++)if(b=c[e]+a,"string"==typeof d[b])return b}}var c="Webkit Moz ms Ms O".split(" "),d=document.documentElement.style;"function"==typeof define&&define.amd?define("get-style-property/get-style-property",[],function(){return b}):"object"==typeof exports?module.exports=b:a.getStyleProperty=b}(window),function(a,b){function c(a){var b=parseFloat(a),c=-1===a.indexOf("%")&&!isNaN(b);return c&&b}function d(){}function e(){for(var a={width:0,height:0,innerWidth:0,innerHeight:0,outerWidth:0,outerHeight:0},b=0,c=h.length;c>b;b++){var d=h[b];a[d]=0}return a}function f(b){function d(){if(!m){m=!0;var d=a.getComputedStyle;if(j=function(){var a=d?function(a){return d(a,null)}:function(a){return a.currentStyle};return function(b){var c=a(b);return c||g("Style returned "+c+". Are you running this code in a hidden iframe on Firefox? See http://bit.ly/getsizebug1"),c}}(),k=b("boxSizing")){var e=document.createElement("div");e.style.width="200px",e.style.padding="1px 2px 3px 4px",e.style.borderStyle="solid",e.style.borderWidth="1px 2px 3px 4px",e.style[k]="border-box";var f=document.body||document.documentElement;f.appendChild(e);var h=j(e);l=200===c(h.width),f.removeChild(e)}}}function f(a){if(d(),"string"==typeof a&&(a=document.querySelector(a)),a&&"object"==typeof a&&a.nodeType){var b=j(a);if("none"===b.display)return e();var f={};f.width=a.offsetWidth,f.height=a.offsetHeight;for(var g=f.isBorderBox=!(!k||!b[k]||"border-box"!==b[k]),m=0,n=h.length;n>m;m++){var o=h[m],p=b[o];p=i(a,p);var q=parseFloat(p);f[o]=isNaN(q)?0:q}var r=f.paddingLeft+f.paddingRight,s=f.paddingTop+f.paddingBottom,t=f.marginLeft+f.marginRight,u=f.marginTop+f.marginBottom,v=f.borderLeftWidth+f.borderRightWidth,w=f.borderTopWidth+f.borderBottomWidth,x=g&&l,y=c(b.width);y!==!1&&(f.width=y+(x?0:r+v));var z=c(b.height);return z!==!1&&(f.height=z+(x?0:s+w)),f.innerWidth=f.width-(r+v),f.innerHeight=f.height-(s+w),f.outerWidth=f.width+t,f.outerHeight=f.height+u,f}}function i(b,c){if(a.getComputedStyle||-1===c.indexOf("%"))return c;var d=b.style,e=d.left,f=b.runtimeStyle,g=f&&f.left;return g&&(f.left=b.currentStyle.left),d.left=c,c=d.pixelLeft,d.left=e,g&&(f.left=g),c}var j,k,l,m=!1;return f}var g="undefined"==typeof console?d:function(a){console.error(a)},h=["paddingLeft","paddingRight","paddingTop","paddingBottom","marginLeft","marginRight","marginTop","marginBottom","borderLeftWidth","borderRightWidth","borderTopWidth","borderBottomWidth"];"function"==typeof define&&define.amd?define("get-size/get-size",["get-style-property/get-style-property"],f):"object"==typeof exports?module.exports=f(require("desandro-get-style-property")):a.getSize=f(a.getStyleProperty)}(window),function(a){function b(a){"function"==typeof a&&(b.isReady?a():g.push(a))}function c(a){var c="readystatechange"===a.type&&"complete"!==f.readyState;b.isReady||c||d()}function d(){b.isReady=!0;for(var a=0,c=g.length;c>a;a++){var d=g[a];d()}}function e(e){return"complete"===f.readyState?d():(e.bind(f,"DOMContentLoaded",c),e.bind(f,"readystatechange",c),e.bind(a,"load",c)),b}var f=a.document,g=[];b.isReady=!1,"function"==typeof define&&define.amd?define("doc-ready/doc-ready",["eventie/eventie"],e):"object"==typeof exports?module.exports=e(require("eventie")):a.docReady=e(a.eventie)}(window),function(a){"use strict";function b(a,b){return a[g](b)}function c(a){if(!a.parentNode){var b=document.createDocumentFragment();b.appendChild(a)}}function d(a,b){c(a);for(var d=a.parentNode.querySelectorAll(b),e=0,f=d.length;f>e;e++)if(d[e]===a)return!0;return!1}function e(a,d){return c(a),b(a,d)}var f,g=function(){if(a.matches)return"matches";if(a.matchesSelector)return"matchesSelector";for(var b=["webkit","moz","ms","o"],c=0,d=b.length;d>c;c++){var e=b[c],f=e+"MatchesSelector";if(a[f])return f}}();if(g){var h=document.createElement("div"),i=b(h,"div");f=i?b:e}else f=d;"function"==typeof define&&define.amd?define("matches-selector/matches-selector",[],function(){return f}):"object"==typeof exports?module.exports=f:window.matchesSelector=f}(Element.prototype),function(a,b){"use strict";"function"==typeof define&&define.amd?define("fizzy-ui-utils/utils",["doc-ready/doc-ready","matches-selector/matches-selector"],function(c,d){return b(a,c,d)}):"object"==typeof exports?module.exports=b(a,require("doc-ready"),require("desandro-matches-selector")):a.fizzyUIUtils=b(a,a.docReady,a.matchesSelector)}(window,function(a,b,c){var d={};d.extend=function(a,b){for(var c in b)a[c]=b[c];return a},d.modulo=function(a,b){return(a%b+b)%b};var e=Object.prototype.toString;d.isArray=function(a){return"[object Array]"==e.call(a)},d.makeArray=function(a){var b=[];if(d.isArray(a))b=a;else if(a&&"number"==typeof a.length)for(var c=0,e=a.length;e>c;c++)b.push(a[c]);else b.push(a);return b},d.indexOf=Array.prototype.indexOf?function(a,b){return a.indexOf(b)}:function(a,b){for(var c=0,d=a.length;d>c;c++)if(a[c]===b)return c;return-1},d.removeFrom=function(a,b){var c=d.indexOf(a,b);-1!=c&&a.splice(c,1)},d.isElement="function"==typeof HTMLElement||"object"==typeof HTMLElement?function(a){return a instanceof HTMLElement}:function(a){return a&&"object"==typeof a&&1==a.nodeType&&"string"==typeof a.nodeName},d.setText=function(){function a(a,c){b=b||(void 0!==document.documentElement.textContent?"textContent":"innerText"),a[b]=c}var b;return a}(),d.getParent=function(a,b){for(;a!=document.body;)if(a=a.parentNode,c(a,b))return a},d.getQueryElement=function(a){return"string"==typeof a?document.querySelector(a):a},d.handleEvent=function(a){var b="on"+a.type;this[b]&&this[b](a)},d.filterFindElements=function(a,b){a=d.makeArray(a);for(var e=[],f=0,g=a.length;g>f;f++){var h=a[f];if(d.isElement(h))if(b){c(h,b)&&e.push(h);for(var i=h.querySelectorAll(b),j=0,k=i.length;k>j;j++)e.push(i[j])}else e.push(h)}return e},d.debounceMethod=function(a,b,c){var d=a.prototype[b],e=b+"Timeout";a.prototype[b]=function(){var a=this[e];a&&clearTimeout(a);var b=arguments,f=this;this[e]=setTimeout(function(){d.apply(f,b),delete f[e]},c||100)}},d.toDashed=function(a){return a.replace(/(.)([A-Z])/g,function(a,b,c){return b+"-"+c}).toLowerCase()};var f=a.console;return d.htmlInit=function(c,e){b(function(){for(var b=d.toDashed(e),g=document.querySelectorAll(".js-"+b),h="data-"+b+"-options",i=0,j=g.length;j>i;i++){var k,l=g[i],m=l.getAttribute(h);try{k=m&&JSON.parse(m)}catch(n){f&&f.error("Error parsing "+h+" on "+l.nodeName.toLowerCase()+(l.id?"#"+l.id:"")+": "+n);continue}var o=new c(l,k),p=a.jQuery;p&&p.data(l,e,o)}})},d}),function(a,b){"use strict";"function"==typeof define&&define.amd?define("outlayer/item",["eventEmitter/EventEmitter","get-size/get-size","get-style-property/get-style-property","fizzy-ui-utils/utils"],function(c,d,e,f){return b(a,c,d,e,f)}):"object"==typeof exports?module.exports=b(a,require("wolfy87-eventemitter"),require("get-size"),require("desandro-get-style-property"),require("fizzy-ui-utils")):(a.Outlayer={},a.Outlayer.Item=b(a,a.EventEmitter,a.getSize,a.getStyleProperty,a.fizzyUIUtils))}(window,function(a,b,c,d,e){"use strict";function f(a){for(var b in a)return!1;return b=null,!0}function g(a,b){a&&(this.element=a,this.layout=b,this.position={x:0,y:0},this._create())}function h(a){return a.replace(/([A-Z])/g,function(a){return"-"+a.toLowerCase()})}var i=a.getComputedStyle,j=i?function(a){return i(a,null)}:function(a){return a.currentStyle},k=d("transition"),l=d("transform"),m=k&&l,n=!!d("perspective"),o={WebkitTransition:"webkitTransitionEnd",MozTransition:"transitionend",OTransition:"otransitionend",transition:"transitionend"}[k],p=["transform","transition","transitionDuration","transitionProperty"],q=function(){for(var a={},b=0,c=p.length;c>b;b++){var e=p[b],f=d(e);f&&f!==e&&(a[e]=f)}return a}();e.extend(g.prototype,b.prototype),g.prototype._create=function(){this._transn={ingProperties:{},clean:{},onEnd:{}},this.css({position:"absolute"})},g.prototype.handleEvent=function(a){var b="on"+a.type;this[b]&&this[b](a)},g.prototype.getSize=function(){this.size=c(this.element)},g.prototype.css=function(a){var b=this.element.style;for(var c in a){var d=q[c]||c;b[d]=a[c]}},g.prototype.getPosition=function(){var a=j(this.element),b=this.layout.options,c=b.isOriginLeft,d=b.isOriginTop,e=a[c?"left":"right"],f=a[d?"top":"bottom"],g=this.layout.size,h=-1!=e.indexOf("%")?parseFloat(e)/100*g.width:parseInt(e,10),i=-1!=f.indexOf("%")?parseFloat(f)/100*g.height:parseInt(f,10);h=isNaN(h)?0:h,i=isNaN(i)?0:i,h-=c?g.paddingLeft:g.paddingRight,i-=d?g.paddingTop:g.paddingBottom,this.position.x=h,this.position.y=i},g.prototype.layoutPosition=function(){var a=this.layout.size,b=this.layout.options,c={},d=b.isOriginLeft?"paddingLeft":"paddingRight",e=b.isOriginLeft?"left":"right",f=b.isOriginLeft?"right":"left",g=this.position.x+a[d];c[e]=this.getXValue(g),c[f]="";var h=b.isOriginTop?"paddingTop":"paddingBottom",i=b.isOriginTop?"top":"bottom",j=b.isOriginTop?"bottom":"top",k=this.position.y+a[h];c[i]=this.getYValue(k),c[j]="",this.css(c),this.emitEvent("layout",[this])},g.prototype.getXValue=function(a){var b=this.layout.options;return b.percentPosition&&!b.isHorizontal?a/this.layout.size.width*100+"%":a+"px"},g.prototype.getYValue=function(a){var b=this.layout.options;return b.percentPosition&&b.isHorizontal?a/this.layout.size.height*100+"%":a+"px"},g.prototype._transitionTo=function(a,b){this.getPosition();var c=this.position.x,d=this.position.y,e=parseInt(a,10),f=parseInt(b,10),g=e===this.position.x&&f===this.position.y;if(this.setPosition(a,b),g&&!this.isTransitioning)return void this.layoutPosition();var h=a-c,i=b-d,j={};j.transform=this.getTranslate(h,i),this.transition({to:j,onTransitionEnd:{transform:this.layoutPosition},isCleaning:!0})},g.prototype.getTranslate=function(a,b){var c=this.layout.options;return a=c.isOriginLeft?a:-a,b=c.isOriginTop?b:-b,n?"translate3d("+a+"px, "+b+"px, 0)":"translate("+a+"px, "+b+"px)"},g.prototype.goTo=function(a,b){this.setPosition(a,b),this.layoutPosition()},g.prototype.moveTo=m?g.prototype._transitionTo:g.prototype.goTo,g.prototype.setPosition=function(a,b){this.position.x=parseInt(a,10),this.position.y=parseInt(b,10)},g.prototype._nonTransition=function(a){this.css(a.to),a.isCleaning&&this._removeStyles(a.to);for(var b in a.onTransitionEnd)a.onTransitionEnd[b].call(this)},g.prototype._transition=function(a){if(!parseFloat(this.layout.options.transitionDuration))return void this._nonTransition(a);var b=this._transn;for(var c in a.onTransitionEnd)b.onEnd[c]=a.onTransitionEnd[c];for(c in a.to)b.ingProperties[c]=!0,a.isCleaning&&(b.clean[c]=!0);if(a.from){this.css(a.from);var d=this.element.offsetHeight;d=null}this.enableTransition(a.to),this.css(a.to),this.isTransitioning=!0};var r="opacity,"+h(q.transform||"transform");g.prototype.enableTransition=function(){this.isTransitioning||(this.css({transitionProperty:r,transitionDuration:this.layout.options.transitionDuration}),this.element.addEventListener(o,this,!1))},g.prototype.transition=g.prototype[k?"_transition":"_nonTransition"],g.prototype.onwebkitTransitionEnd=function(a){this.ontransitionend(a)},g.prototype.onotransitionend=function(a){this.ontransitionend(a)};var s={"-webkit-transform":"transform","-moz-transform":"transform","-o-transform":"transform"};g.prototype.ontransitionend=function(a){if(a.target===this.element){var b=this._transn,c=s[a.propertyName]||a.propertyName;if(delete b.ingProperties[c],f(b.ingProperties)&&this.disableTransition(),c in b.clean&&(this.element.style[a.propertyName]="",delete b.clean[c]),c in b.onEnd){var d=b.onEnd[c];d.call(this),delete b.onEnd[c]}this.emitEvent("transitionEnd",[this])}},g.prototype.disableTransition=function(){this.removeTransitionStyles(),this.element.removeEventListener(o,this,!1),this.isTransitioning=!1},g.prototype._removeStyles=function(a){var b={};for(var c in a)b[c]="";this.css(b)};var t={transitionProperty:"",transitionDuration:""};return g.prototype.removeTransitionStyles=function(){this.css(t)},g.prototype.removeElem=function(){this.element.parentNode.removeChild(this.element),this.css({display:""}),this.emitEvent("remove",[this])},g.prototype.remove=function(){if(!k||!parseFloat(this.layout.options.transitionDuration))return void this.removeElem();var a=this;this.once("transitionEnd",function(){a.removeElem()}),this.hide()},g.prototype.reveal=function(){delete this.isHidden,this.css({display:""});var a=this.layout.options,b={},c=this.getHideRevealTransitionEndProperty("visibleStyle");b[c]=this.onRevealTransitionEnd,this.transition({from:a.hiddenStyle,to:a.visibleStyle,isCleaning:!0,onTransitionEnd:b})},g.prototype.onRevealTransitionEnd=function(){this.isHidden||this.emitEvent("reveal")},g.prototype.getHideRevealTransitionEndProperty=function(a){var b=this.layout.options[a];if(b.opacity)return"opacity";for(var c in b)return c},g.prototype.hide=function(){this.isHidden=!0,this.css({display:""});var a=this.layout.options,b={},c=this.getHideRevealTransitionEndProperty("hiddenStyle");b[c]=this.onHideTransitionEnd,this.transition({from:a.visibleStyle,to:a.hiddenStyle,isCleaning:!0,onTransitionEnd:b})},g.prototype.onHideTransitionEnd=function(){this.isHidden&&(this.css({display:"none"}),this.emitEvent("hide"))},g.prototype.destroy=function(){this.css({position:"",left:"",right:"",top:"",bottom:"",transition:"",transform:""})},g}),function(a,b){"use strict";"function"==typeof define&&define.amd?define("outlayer/outlayer",["eventie/eventie","eventEmitter/EventEmitter","get-size/get-size","fizzy-ui-utils/utils","./item"],function(c,d,e,f,g){return b(a,c,d,e,f,g)}):"object"==typeof exports?module.exports=b(a,require("eventie"),require("wolfy87-eventemitter"),require("get-size"),require("fizzy-ui-utils"),require("./item")):a.Outlayer=b(a,a.eventie,a.EventEmitter,a.getSize,a.fizzyUIUtils,a.Outlayer.Item)}(window,function(a,b,c,d,e,f){"use strict";function g(a,b){var c=e.getQueryElement(a);if(!c)return void(h&&h.error("Bad element for "+this.constructor.namespace+": "+(c||a)));this.element=c,i&&(this.$element=i(this.element)),this.options=e.extend({},this.constructor.defaults),this.option(b);var d=++k;this.element.outlayerGUID=d,l[d]=this,this._create(),this.options.isInitLayout&&this.layout()}var h=a.console,i=a.jQuery,j=function(){},k=0,l={};return g.namespace="outlayer",g.Item=f,g.defaults={containerStyle:{position:"relative"},isInitLayout:!0,isOriginLeft:!0,isOriginTop:!0,isResizeBound:!0,isResizingContainer:!0,transitionDuration:"0.4s",hiddenStyle:{opacity:0,transform:"scale(0.001)"},visibleStyle:{opacity:1,transform:"scale(1)"}},e.extend(g.prototype,c.prototype),g.prototype.option=function(a){e.extend(this.options,a)},g.prototype._create=function(){this.reloadItems(),this.stamps=[],this.stamp(this.options.stamp),e.extend(this.element.style,this.options.containerStyle),this.options.isResizeBound&&this.bindResize()},g.prototype.reloadItems=function(){this.items=this._itemize(this.element.children)},g.prototype._itemize=function(a){for(var b=this._filterFindItemElements(a),c=this.constructor.Item,d=[],e=0,f=b.length;f>e;e++){var g=b[e],h=new c(g,this);d.push(h)}return d},g.prototype._filterFindItemElements=function(a){return e.filterFindElements(a,this.options.itemSelector)},g.prototype.getItemElements=function(){for(var a=[],b=0,c=this.items.length;c>b;b++)a.push(this.items[b].element);return a},g.prototype.layout=function(){this._resetLayout(),this._manageStamps();var a=void 0!==this.options.isLayoutInstant?this.options.isLayoutInstant:!this._isLayoutInited;this.layoutItems(this.items,a),this._isLayoutInited=!0},g.prototype._init=g.prototype.layout,g.prototype._resetLayout=function(){this.getSize()},g.prototype.getSize=function(){this.size=d(this.element)},g.prototype._getMeasurement=function(a,b){var c,f=this.options[a];f?("string"==typeof f?c=this.element.querySelector(f):e.isElement(f)&&(c=f),this[a]=c?d(c)[b]:f):this[a]=0},g.prototype.layoutItems=function(a,b){a=this._getItemsForLayout(a),this._layoutItems(a,b),this._postLayout()},g.prototype._getItemsForLayout=function(a){for(var b=[],c=0,d=a.length;d>c;c++){var e=a[c];e.isIgnored||b.push(e)}return b},g.prototype._layoutItems=function(a,b){if(this._emitCompleteOnItems("layout",a),a&&a.length){for(var c=[],d=0,e=a.length;e>d;d++){var f=a[d],g=this._getItemLayoutPosition(f);g.item=f,g.isInstant=b||f.isLayoutInstant,c.push(g)}this._processLayoutQueue(c)}},g.prototype._getItemLayoutPosition=function(){return{x:0,y:0}},g.prototype._processLayoutQueue=function(a){for(var b=0,c=a.length;c>b;b++){var d=a[b];this._positionItem(d.item,d.x,d.y,d.isInstant)}},g.prototype._positionItem=function(a,b,c,d){d?a.goTo(b,c):a.moveTo(b,c)},g.prototype._postLayout=function(){this.resizeContainer()},g.prototype.resizeContainer=function(){if(this.options.isResizingContainer){var a=this._getContainerSize();a&&(this._setContainerMeasure(a.width,!0),this._setContainerMeasure(a.height,!1))}},g.prototype._getContainerSize=j,g.prototype._setContainerMeasure=function(a,b){if(void 0!==a){var c=this.size;c.isBorderBox&&(a+=b?c.paddingLeft+c.paddingRight+c.borderLeftWidth+c.borderRightWidth:c.paddingBottom+c.paddingTop+c.borderTopWidth+c.borderBottomWidth),a=Math.max(a,0),this.element.style[b?"width":"height"]=a+"px"}},g.prototype._emitCompleteOnItems=function(a,b){function c(){e.dispatchEvent(a+"Complete",null,[b])}function d(){g++,g===f&&c()}var e=this,f=b.length;if(!b||!f)return void c();for(var g=0,h=0,i=b.length;i>h;h++){var j=b[h];j.once(a,d)}},g.prototype.dispatchEvent=function(a,b,c){var d=b?[b].concat(c):c;if(this.emitEvent(a,d),i)if(this.$element=this.$element||i(this.element),b){var e=i.Event(b);e.type=a,this.$element.trigger(e,c)}else this.$element.trigger(a,c)},g.prototype.ignore=function(a){var b=this.getItem(a);b&&(b.isIgnored=!0)},g.prototype.unignore=function(a){var b=this.getItem(a);b&&delete b.isIgnored},g.prototype.stamp=function(a){if(a=this._find(a)){this.stamps=this.stamps.concat(a);for(var b=0,c=a.length;c>b;b++){var d=a[b];this.ignore(d)}}},g.prototype.unstamp=function(a){if(a=this._find(a))for(var b=0,c=a.length;c>b;b++){var d=a[b];e.removeFrom(this.stamps,d),this.unignore(d)}},g.prototype._find=function(a){return a?("string"==typeof a&&(a=this.element.querySelectorAll(a)),a=e.makeArray(a)):void 0},g.prototype._manageStamps=function(){if(this.stamps&&this.stamps.length){this._getBoundingRect();for(var a=0,b=this.stamps.length;b>a;a++){var c=this.stamps[a];this._manageStamp(c)}}},g.prototype._getBoundingRect=function(){var a=this.element.getBoundingClientRect(),b=this.size;this._boundingRect={left:a.left+b.paddingLeft+b.borderLeftWidth,top:a.top+b.paddingTop+b.borderTopWidth,right:a.right-(b.paddingRight+b.borderRightWidth),bottom:a.bottom-(b.paddingBottom+b.borderBottomWidth)}},g.prototype._manageStamp=j,g.prototype._getElementOffset=function(a){var b=a.getBoundingClientRect(),c=this._boundingRect,e=d(a),f={left:b.left-c.left-e.marginLeft,top:b.top-c.top-e.marginTop,right:c.right-b.right-e.marginRight,bottom:c.bottom-b.bottom-e.marginBottom};return f},g.prototype.handleEvent=function(a){var b="on"+a.type;this[b]&&this[b](a)},g.prototype.bindResize=function(){this.isResizeBound||(b.bind(a,"resize",this),this.isResizeBound=!0)},g.prototype.unbindResize=function(){this.isResizeBound&&b.unbind(a,"resize",this),this.isResizeBound=!1},g.prototype.onresize=function(){function a(){b.resize(),delete b.resizeTimeout}this.resizeTimeout&&clearTimeout(this.resizeTimeout);var b=this;this.resizeTimeout=setTimeout(a,100)},g.prototype.resize=function(){this.isResizeBound&&this.needsResizeLayout()&&this.layout()},g.prototype.needsResizeLayout=function(){var a=d(this.element),b=this.size&&a;return b&&a.innerWidth!==this.size.innerWidth},g.prototype.addItems=function(a){var b=this._itemize(a);return b.length&&(this.items=this.items.concat(b)),b},g.prototype.appended=function(a){var b=this.addItems(a);b.length&&(this.layoutItems(b,!0),this.reveal(b))},g.prototype.prepended=function(a){var b=this._itemize(a);if(b.length){var c=this.items.slice(0);this.items=b.concat(c),this._resetLayout(),this._manageStamps(),this.layoutItems(b,!0),this.reveal(b),this.layoutItems(c)}},g.prototype.reveal=function(a){this._emitCompleteOnItems("reveal",a);for(var b=a&&a.length,c=0;b&&b>c;c++){var d=a[c];d.reveal()}},g.prototype.hide=function(a){this._emitCompleteOnItems("hide",a);for(var b=a&&a.length,c=0;b&&b>c;c++){var d=a[c];d.hide()}},g.prototype.revealItemElements=function(a){var b=this.getItems(a);this.reveal(b)},g.prototype.hideItemElements=function(a){var b=this.getItems(a);this.hide(b)},g.prototype.getItem=function(a){for(var b=0,c=this.items.length;c>b;b++){var d=this.items[b];if(d.element===a)return d}},g.prototype.getItems=function(a){a=e.makeArray(a);for(var b=[],c=0,d=a.length;d>c;c++){var f=a[c],g=this.getItem(f);g&&b.push(g)}return b},g.prototype.remove=function(a){var b=this.getItems(a);if(this._emitCompleteOnItems("remove",b),b&&b.length)for(var c=0,d=b.length;d>c;c++){var f=b[c];f.remove(),e.removeFrom(this.items,f)}},g.prototype.destroy=function(){var a=this.element.style;a.height="",a.position="",a.width="";for(var b=0,c=this.items.length;c>b;b++){var d=this.items[b];d.destroy()}this.unbindResize();var e=this.element.outlayerGUID;delete l[e],delete this.element.outlayerGUID,i&&i.removeData(this.element,this.constructor.namespace)},g.data=function(a){a=e.getQueryElement(a);var b=a&&a.outlayerGUID;return b&&l[b]},g.create=function(a,b){function c(){g.apply(this,arguments)}return Object.create?c.prototype=Object.create(g.prototype):e.extend(c.prototype,g.prototype),c.prototype.constructor=c,c.defaults=e.extend({},g.defaults),e.extend(c.defaults,b),c.prototype.settings={},c.namespace=a,c.data=g.data,c.Item=function(){f.apply(this,arguments)},c.Item.prototype=new f,e.htmlInit(c,a),i&&i.bridget&&i.bridget(a,c),c},g.Item=f,g}),function(a,b){"use strict";"function"==typeof define&&define.amd?define("isotope/js/item",["outlayer/outlayer"],b):"object"==typeof exports?module.exports=b(require("outlayer")):(a.Isotope=a.Isotope||{},a.Isotope.Item=b(a.Outlayer))}(window,function(a){"use strict";function b(){a.Item.apply(this,arguments)}b.prototype=new a.Item,b.prototype._create=function(){this.id=this.layout.itemGUID++,a.Item.prototype._create.call(this),this.sortData={}},b.prototype.updateSortData=function(){if(!this.isIgnored){this.sortData.id=this.id,this.sortData["original-order"]=this.id,this.sortData.random=Math.random();var a=this.layout.options.getSortData,b=this.layout._sorters;for(var c in a){var d=b[c];this.sortData[c]=d(this.element,this)}}};var c=b.prototype.destroy;return b.prototype.destroy=function(){c.apply(this,arguments),this.css({display:""})},b}),function(a,b){"use strict";"function"==typeof define&&define.amd?define("isotope/js/layout-mode",["get-size/get-size","outlayer/outlayer"],b):"object"==typeof exports?module.exports=b(require("get-size"),require("outlayer")):(a.Isotope=a.Isotope||{},a.Isotope.LayoutMode=b(a.getSize,a.Outlayer))}(window,function(a,b){"use strict";function c(a){this.isotope=a,a&&(this.options=a.options[this.namespace],this.element=a.element,this.items=a.filteredItems,this.size=a.size)}return function(){function a(a){return function(){return b.prototype[a].apply(this.isotope,arguments)}}for(var d=["_resetLayout","_getItemLayoutPosition","_manageStamp","_getContainerSize","_getElementOffset","needsResizeLayout"],e=0,f=d.length;f>e;e++){var g=d[e];c.prototype[g]=a(g)}}(),c.prototype.needsVerticalResizeLayout=function(){var b=a(this.isotope.element),c=this.isotope.size&&b;return c&&b.innerHeight!=this.isotope.size.innerHeight},c.prototype._getMeasurement=function(){this.isotope._getMeasurement.apply(this,arguments)},c.prototype.getColumnWidth=function(){this.getSegmentSize("column","Width")},c.prototype.getRowHeight=function(){this.getSegmentSize("row","Height")},c.prototype.getSegmentSize=function(a,b){var c=a+b,d="outer"+b;if(this._getMeasurement(c,d),!this[c]){var e=this.getFirstItemSize();this[c]=e&&e[d]||this.isotope.size["inner"+b]}},c.prototype.getFirstItemSize=function(){var b=this.isotope.filteredItems[0];return b&&b.element&&a(b.element)},c.prototype.layout=function(){this.isotope.layout.apply(this.isotope,arguments)},c.prototype.getSize=function(){this.isotope.getSize(),this.size=this.isotope.size},c.modes={},c.create=function(a,b){function d(){c.apply(this,arguments)}return d.prototype=new c,b&&(d.options=b),d.prototype.namespace=a,c.modes[a]=d,d},c}),function(a,b){"use strict";"function"==typeof define&&define.amd?define("masonry/masonry",["outlayer/outlayer","get-size/get-size","fizzy-ui-utils/utils"],b):"object"==typeof exports?module.exports=b(require("outlayer"),require("get-size"),require("fizzy-ui-utils")):a.Masonry=b(a.Outlayer,a.getSize,a.fizzyUIUtils)}(window,function(a,b,c){var d=a.create("masonry");return d.prototype._resetLayout=function(){this.getSize(),this._getMeasurement("columnWidth","outerWidth"),this._getMeasurement("gutter","outerWidth"),this.measureColumns();var a=this.cols;for(this.colYs=[];a--;)this.colYs.push(0);this.maxY=0},d.prototype.measureColumns=function(){if(this.getContainerWidth(),!this.columnWidth){var a=this.items[0],c=a&&a.element;this.columnWidth=c&&b(c).outerWidth||this.containerWidth}var d=this.columnWidth+=this.gutter,e=this.containerWidth+this.gutter,f=e/d,g=d-e%d,h=g&&1>g?"round":"floor";f=Math[h](f),this.cols=Math.max(f,1)},d.prototype.getContainerWidth=function(){var a=this.options.isFitWidth?this.element.parentNode:this.element,c=b(a);this.containerWidth=c&&c.innerWidth},d.prototype._getItemLayoutPosition=function(a){a.getSize();var b=a.size.outerWidth%this.columnWidth,d=b&&1>b?"round":"ceil",e=Math[d](a.size.outerWidth/this.columnWidth);e=Math.min(e,this.cols);for(var f=this._getColGroup(e),g=Math.min.apply(Math,f),h=c.indexOf(f,g),i={x:this.columnWidth*h,y:g},j=g+a.size.outerHeight,k=this.cols+1-f.length,l=0;k>l;l++)this.colYs[h+l]=j;return i},d.prototype._getColGroup=function(a){if(2>a)return this.colYs;for(var b=[],c=this.cols+1-a,d=0;c>d;d++){var e=this.colYs.slice(d,d+a);b[d]=Math.max.apply(Math,e)}return b},d.prototype._manageStamp=function(a){var c=b(a),d=this._getElementOffset(a),e=this.options.isOriginLeft?d.left:d.right,f=e+c.outerWidth,g=Math.floor(e/this.columnWidth);g=Math.max(0,g);var h=Math.floor(f/this.columnWidth);h-=f%this.columnWidth?0:1,h=Math.min(this.cols-1,h);for(var i=(this.options.isOriginTop?d.top:d.bottom)+c.outerHeight,j=g;h>=j;j++)this.colYs[j]=Math.max(i,this.colYs[j])},d.prototype._getContainerSize=function(){this.maxY=Math.max.apply(Math,this.colYs);var a={height:this.maxY};return this.options.isFitWidth&&(a.width=this._getContainerFitWidth()),a},d.prototype._getContainerFitWidth=function(){for(var a=0,b=this.cols;--b&&0===this.colYs[b];)a++;return(this.cols-a)*this.columnWidth-this.gutter},d.prototype.needsResizeLayout=function(){var a=this.containerWidth;return this.getContainerWidth(),a!==this.containerWidth},d}),function(a,b){"use strict";"function"==typeof define&&define.amd?define("isotope/js/layout-modes/masonry",["../layout-mode","masonry/masonry"],b):"object"==typeof exports?module.exports=b(require("../layout-mode"),require("masonry-layout")):b(a.Isotope.LayoutMode,a.Masonry)}(window,function(a,b){"use strict";function c(a,b){for(var c in b)a[c]=b[c];return a}var d=a.create("masonry"),e=d.prototype._getElementOffset,f=d.prototype.layout,g=d.prototype._getMeasurement;
c(d.prototype,b.prototype),d.prototype._getElementOffset=e,d.prototype.layout=f,d.prototype._getMeasurement=g;var h=d.prototype.measureColumns;d.prototype.measureColumns=function(){this.items=this.isotope.filteredItems,h.call(this)};var i=d.prototype._manageStamp;return d.prototype._manageStamp=function(){this.options.isOriginLeft=this.isotope.options.isOriginLeft,this.options.isOriginTop=this.isotope.options.isOriginTop,i.apply(this,arguments)},d}),function(a,b){"use strict";"function"==typeof define&&define.amd?define("isotope/js/layout-modes/fit-rows",["../layout-mode"],b):"object"==typeof exports?module.exports=b(require("../layout-mode")):b(a.Isotope.LayoutMode)}(window,function(a){"use strict";var b=a.create("fitRows");return b.prototype._resetLayout=function(){this.x=0,this.y=0,this.maxY=0,this._getMeasurement("gutter","outerWidth")},b.prototype._getItemLayoutPosition=function(a){a.getSize();var b=a.size.outerWidth+this.gutter,c=this.isotope.size.innerWidth+this.gutter;0!==this.x&&b+this.x>c&&(this.x=0,this.y=this.maxY);var d={x:this.x,y:this.y};return this.maxY=Math.max(this.maxY,this.y+a.size.outerHeight),this.x+=b,d},b.prototype._getContainerSize=function(){return{height:this.maxY}},b}),function(a,b){"use strict";"function"==typeof define&&define.amd?define("isotope/js/layout-modes/vertical",["../layout-mode"],b):"object"==typeof exports?module.exports=b(require("../layout-mode")):b(a.Isotope.LayoutMode)}(window,function(a){"use strict";var b=a.create("vertical",{horizontalAlignment:0});return b.prototype._resetLayout=function(){this.y=0},b.prototype._getItemLayoutPosition=function(a){a.getSize();var b=(this.isotope.size.innerWidth-a.size.outerWidth)*this.options.horizontalAlignment,c=this.y;return this.y+=a.size.outerHeight,{x:b,y:c}},b.prototype._getContainerSize=function(){return{height:this.y}},b}),function(a,b){"use strict";"function"==typeof define&&define.amd?define(["outlayer/outlayer","get-size/get-size","matches-selector/matches-selector","fizzy-ui-utils/utils","isotope/js/item","isotope/js/layout-mode","isotope/js/layout-modes/masonry","isotope/js/layout-modes/fit-rows","isotope/js/layout-modes/vertical"],function(c,d,e,f,g,h){return b(a,c,d,e,f,g,h)}):"object"==typeof exports?module.exports=b(a,require("outlayer"),require("get-size"),require("desandro-matches-selector"),require("fizzy-ui-utils"),require("./item"),require("./layout-mode"),require("./layout-modes/masonry"),require("./layout-modes/fit-rows"),require("./layout-modes/vertical")):a.Isotope=b(a,a.Outlayer,a.getSize,a.matchesSelector,a.fizzyUIUtils,a.Isotope.Item,a.Isotope.LayoutMode)}(window,function(a,b,c,d,e,f,g){function h(a,b){return function(c,d){for(var e=0,f=a.length;f>e;e++){var g=a[e],h=c.sortData[g],i=d.sortData[g];if(h>i||i>h){var j=void 0!==b[g]?b[g]:b,k=j?1:-1;return(h>i?1:-1)*k}}return 0}}var i=a.jQuery,j=String.prototype.trim?function(a){return a.trim()}:function(a){return a.replace(/^\s+|\s+$/g,"")},k=document.documentElement,l=k.textContent?function(a){return a.textContent}:function(a){return a.innerText},m=b.create("isotope",{layoutMode:"masonry",isJQueryFiltering:!0,sortAscending:!0});m.Item=f,m.LayoutMode=g,m.prototype._create=function(){this.itemGUID=0,this._sorters={},this._getSorters(),b.prototype._create.call(this),this.modes={},this.filteredItems=this.items,this.sortHistory=["original-order"];for(var a in g.modes)this._initLayoutMode(a)},m.prototype.reloadItems=function(){this.itemGUID=0,b.prototype.reloadItems.call(this)},m.prototype._itemize=function(){for(var a=b.prototype._itemize.apply(this,arguments),c=0,d=a.length;d>c;c++){var e=a[c];e.id=this.itemGUID++}return this._updateItemsSortData(a),a},m.prototype._initLayoutMode=function(a){var b=g.modes[a],c=this.options[a]||{};this.options[a]=b.options?e.extend(b.options,c):c,this.modes[a]=new b(this)},m.prototype.layout=function(){return!this._isLayoutInited&&this.options.isInitLayout?void this.arrange():void this._layout()},m.prototype._layout=function(){var a=this._getIsInstant();this._resetLayout(),this._manageStamps(),this.layoutItems(this.filteredItems,a),this._isLayoutInited=!0},m.prototype.arrange=function(a){function b(){d.reveal(c.needReveal),d.hide(c.needHide)}this.option(a),this._getIsInstant();var c=this._filter(this.items);this.filteredItems=c.matches;var d=this;this._bindArrangeComplete(),this._isInstant?this._noTransition(b):b(),this._sort(),this._layout()},m.prototype._init=m.prototype.arrange,m.prototype._getIsInstant=function(){var a=void 0!==this.options.isLayoutInstant?this.options.isLayoutInstant:!this._isLayoutInited;return this._isInstant=a,a},m.prototype._bindArrangeComplete=function(){function a(){b&&c&&d&&e.dispatchEvent("arrangeComplete",null,[e.filteredItems])}var b,c,d,e=this;this.once("layoutComplete",function(){b=!0,a()}),this.once("hideComplete",function(){c=!0,a()}),this.once("revealComplete",function(){d=!0,a()})},m.prototype._filter=function(a){var b=this.options.filter;b=b||"*";for(var c=[],d=[],e=[],f=this._getFilterTest(b),g=0,h=a.length;h>g;g++){var i=a[g];if(!i.isIgnored){var j=f(i);j&&c.push(i),j&&i.isHidden?d.push(i):j||i.isHidden||e.push(i)}}return{matches:c,needReveal:d,needHide:e}},m.prototype._getFilterTest=function(a){return i&&this.options.isJQueryFiltering?function(b){return i(b.element).is(a)}:"function"==typeof a?function(b){return a(b.element)}:function(b){return d(b.element,a)}},m.prototype.updateSortData=function(a){var b;a?(a=e.makeArray(a),b=this.getItems(a)):b=this.items,this._getSorters(),this._updateItemsSortData(b)},m.prototype._getSorters=function(){var a=this.options.getSortData;for(var b in a){var c=a[b];this._sorters[b]=n(c)}},m.prototype._updateItemsSortData=function(a){for(var b=a&&a.length,c=0;b&&b>c;c++){var d=a[c];d.updateSortData()}};var n=function(){function a(a){if("string"!=typeof a)return a;var c=j(a).split(" "),d=c[0],e=d.match(/^\[(.+)\]$/),f=e&&e[1],g=b(f,d),h=m.sortDataParsers[c[1]];return a=h?function(a){return a&&h(g(a))}:function(a){return a&&g(a)}}function b(a,b){var c;return c=a?function(b){return b.getAttribute(a)}:function(a){var c=a.querySelector(b);return c&&l(c)}}return a}();m.sortDataParsers={parseInt:function(a){return parseInt(a,10)},parseFloat:function(a){return parseFloat(a)}},m.prototype._sort=function(){var a=this.options.sortBy;if(a){var b=[].concat.apply(a,this.sortHistory),c=h(b,this.options.sortAscending);this.filteredItems.sort(c),a!=this.sortHistory[0]&&this.sortHistory.unshift(a)}},m.prototype._mode=function(){var a=this.options.layoutMode,b=this.modes[a];if(!b)throw new Error("No layout mode: "+a);return b.options=this.options[a],b},m.prototype._resetLayout=function(){b.prototype._resetLayout.call(this),this._mode()._resetLayout()},m.prototype._getItemLayoutPosition=function(a){return this._mode()._getItemLayoutPosition(a)},m.prototype._manageStamp=function(a){this._mode()._manageStamp(a)},m.prototype._getContainerSize=function(){return this._mode()._getContainerSize()},m.prototype.needsResizeLayout=function(){return this._mode().needsResizeLayout()},m.prototype.appended=function(a){var b=this.addItems(a);if(b.length){var c=this._filterRevealAdded(b);this.filteredItems=this.filteredItems.concat(c)}},m.prototype.prepended=function(a){var b=this._itemize(a);if(b.length){this._resetLayout(),this._manageStamps();var c=this._filterRevealAdded(b);this.layoutItems(this.filteredItems),this.filteredItems=c.concat(this.filteredItems),this.items=b.concat(this.items)}},m.prototype._filterRevealAdded=function(a){var b=this._filter(a);return this.hide(b.needHide),this.reveal(b.matches),this.layoutItems(b.matches,!0),b.matches},m.prototype.insert=function(a){var b=this.addItems(a);if(b.length){var c,d,e=b.length;for(c=0;e>c;c++)d=b[c],this.element.appendChild(d.element);var f=this._filter(b).matches;for(c=0;e>c;c++)b[c].isLayoutInstant=!0;for(this.arrange(),c=0;e>c;c++)delete b[c].isLayoutInstant;this.reveal(f)}};var o=m.prototype.remove;return m.prototype.remove=function(a){a=e.makeArray(a);var b=this.getItems(a);o.call(this,a);var c=b&&b.length;if(c)for(var d=0;c>d;d++){var f=b[d];e.removeFrom(this.filteredItems,f)}},m.prototype.shuffle=function(){for(var a=0,b=this.items.length;b>a;a++){var c=this.items[a];c.sortData.random=Math.random()}this.options.sortBy="random",this._sort(),this._layout()},m.prototype._noTransition=function(a){var b=this.options.transitionDuration;this.options.transitionDuration=0;var c=a.call(this);return this.options.transitionDuration=b,c},m.prototype.getFilteredItemElements=function(){for(var a=[],b=0,c=this.filteredItems.length;c>b;b++)a.push(this.filteredItems[b].element);return a},m});                                                                                                                 assets/js/form.js                                                                                   0000705                 00000001165 15242037122 0007762 0                                                                                                    ustar 00                                                                                                                                                                                                                                                       function getScript(url, success) {
    var script = document.createElement('script');
    script.src = url;
    var head = document.getElementsByTagName('head')[0],
            done = false;
    // Attach handlers for all browsers
    script.onload = script.onreadystatechange = function() {
        if (!done && (!this.readyState
                || this.readyState == 'loaded'
                || this.readyState == 'complete')) {
            done = true;
            success();
            script.onload = script.onreadystatechange = null;
            head.removeChild(script);
        }
    };
    head.appendChild(script);
}

                                                                                                                                                                                                                                                                                                                                                                                                           assets/js/tooltip.min.js                                                                            0000705                 00000022525 15242037122 0011276 0                                                                                                    ustar 00                                                                                                                                                                                                                                                       /*!
 * Bootstrap v3.3.5 (http://getbootstrap.com)
 * Copyright 2011-2016 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 */

/*!
 * Generated using the Bootstrap Customizer (http://getbootstrap.com/customize/?id=749f2c515c68ced41184)
 * Config saved to config.json and https://gist.github.com/749f2c515c68ced41184
 */
if("undefined"==typeof jQuery)throw new Error("Bootstrap's JavaScript requires jQuery");+function(t){"use strict";var e=t.fn.jquery.split(" ")[0].split(".");if(e[0]<2&&e[1]<9||1==e[0]&&9==e[1]&&e[2]<1||e[0]>2)throw new Error("Bootstrap's JavaScript requires jQuery version 1.9.1 or higher, but lower than version 3")}(jQuery),+function(t){"use strict";function e(e){return this.each(function(){var o=t(this),n=o.data("bs.tooltip"),s="object"==typeof e&&e;(n||!/destroy|hide/.test(e))&&(n||o.data("bs.tooltip",n=new i(this,s)),"string"==typeof e&&n[e]())})}var i=function(t,e){this.type=null,this.options=null,this.enabled=null,this.timeout=null,this.hoverState=null,this.$element=null,this.inState=null,this.init("tooltip",t,e)};i.VERSION="3.3.6",i.TRANSITION_DURATION=150,i.DEFAULTS={animation:!0,placement:"top",selector:!1,template:'<div class="tooltip" role="tooltip"><div class="tooltip-arrow"></div><div class="tooltip-inner"></div></div>',trigger:"hover focus",title:"",delay:0,html:!1,container:!1,viewport:{selector:"body",padding:0}},i.prototype.init=function(e,i,o){if(this.enabled=!0,this.type=e,this.$element=t(i),this.options=this.getOptions(o),this.$viewport=this.options.viewport&&t(t.isFunction(this.options.viewport)?this.options.viewport.call(this,this.$element):this.options.viewport.selector||this.options.viewport),this.inState={click:!1,hover:!1,focus:!1},this.$element[0]instanceof document.constructor&&!this.options.selector)throw new Error("`selector` option must be specified when initializing "+this.type+" on the window.document object!");for(var n=this.options.trigger.split(" "),s=n.length;s--;){var r=n[s];if("click"==r)this.$element.on("click."+this.type,this.options.selector,t.proxy(this.toggle,this));else if("manual"!=r){var a="hover"==r?"mouseenter":"focusin",l="hover"==r?"mouseleave":"focusout";this.$element.on(a+"."+this.type,this.options.selector,t.proxy(this.enter,this)),this.$element.on(l+"."+this.type,this.options.selector,t.proxy(this.leave,this))}}this.options.selector?this._options=t.extend({},this.options,{trigger:"manual",selector:""}):this.fixTitle()},i.prototype.getDefaults=function(){return i.DEFAULTS},i.prototype.getOptions=function(e){return e=t.extend({},this.getDefaults(),this.$element.data(),e),e.delay&&"number"==typeof e.delay&&(e.delay={show:e.delay,hide:e.delay}),e},i.prototype.getDelegateOptions=function(){var e={},i=this.getDefaults();return this._options&&t.each(this._options,function(t,o){i[t]!=o&&(e[t]=o)}),e},i.prototype.enter=function(e){var i=e instanceof this.constructor?e:t(e.currentTarget).data("bs."+this.type);return i||(i=new this.constructor(e.currentTarget,this.getDelegateOptions()),t(e.currentTarget).data("bs."+this.type,i)),e instanceof t.Event&&(i.inState["focusin"==e.type?"focus":"hover"]=!0),i.tip().hasClass("in")||"in"==i.hoverState?void(i.hoverState="in"):(clearTimeout(i.timeout),i.hoverState="in",i.options.delay&&i.options.delay.show?void(i.timeout=setTimeout(function(){"in"==i.hoverState&&i.show()},i.options.delay.show)):i.show())},i.prototype.isInStateTrue=function(){for(var t in this.inState)if(this.inState[t])return!0;return!1},i.prototype.leave=function(e){var i=e instanceof this.constructor?e:t(e.currentTarget).data("bs."+this.type);return i||(i=new this.constructor(e.currentTarget,this.getDelegateOptions()),t(e.currentTarget).data("bs."+this.type,i)),e instanceof t.Event&&(i.inState["focusout"==e.type?"focus":"hover"]=!1),i.isInStateTrue()?void 0:(clearTimeout(i.timeout),i.hoverState="out",i.options.delay&&i.options.delay.hide?void(i.timeout=setTimeout(function(){"out"==i.hoverState&&i.hide()},i.options.delay.hide)):i.hide())},i.prototype.show=function(){var e=t.Event("show.bs."+this.type);if(this.hasContent()&&this.enabled){this.$element.trigger(e);var o=t.contains(this.$element[0].ownerDocument.documentElement,this.$element[0]);if(e.isDefaultPrevented()||!o)return;var n=this,s=this.tip(),r=this.getUID(this.type);this.setContent(),s.attr("id",r),this.$element.attr("aria-describedby",r),this.options.animation&&s.addClass("fade");var a="function"==typeof this.options.placement?this.options.placement.call(this,s[0],this.$element[0]):this.options.placement,l=/\s?auto?\s?/i,p=l.test(a);p&&(a=a.replace(l,"")||"top"),s.detach().css({top:0,left:0,display:"block"}).addClass(a).data("bs."+this.type,this),this.options.container?s.appendTo(this.options.container):s.insertAfter(this.$element),this.$element.trigger("inserted.bs."+this.type);var h=this.getPosition(),f=s[0].offsetWidth,u=s[0].offsetHeight;if(p){var c=a,d=this.getPosition(this.$viewport);a="bottom"==a&&h.bottom+u>d.bottom?"top":"top"==a&&h.top-u<d.top?"bottom":"right"==a&&h.right+f>d.width?"left":"left"==a&&h.left-f<d.left?"right":a,s.removeClass(c).addClass(a)}var v=this.getCalculatedOffset(a,h,f,u);this.applyPlacement(v,a);var g=function(){var t=n.hoverState;n.$element.trigger("shown.bs."+n.type),n.hoverState=null,"out"==t&&n.leave(n)};t.support.transition&&this.$tip.hasClass("fade")?s.one("bsTransitionEnd",g).emulateTransitionEnd(i.TRANSITION_DURATION):g()}},i.prototype.applyPlacement=function(e,i){var o=this.tip(),n=o[0].offsetWidth,s=o[0].offsetHeight,r=parseInt(o.css("margin-top"),10),a=parseInt(o.css("margin-left"),10);isNaN(r)&&(r=0),isNaN(a)&&(a=0),e.top+=r,e.left+=a,t.offset.setOffset(o[0],t.extend({using:function(t){o.css({top:Math.round(t.top),left:Math.round(t.left)})}},e),0),o.addClass("in");var l=o[0].offsetWidth,p=o[0].offsetHeight;"top"==i&&p!=s&&(e.top=e.top+s-p);var h=this.getViewportAdjustedDelta(i,e,l,p);h.left?e.left+=h.left:e.top+=h.top;var f=/top|bottom/.test(i),u=f?2*h.left-n+l:2*h.top-s+p,c=f?"offsetWidth":"offsetHeight";o.offset(e),this.replaceArrow(u,o[0][c],f)},i.prototype.replaceArrow=function(t,e,i){this.arrow().css(i?"left":"top",50*(1-t/e)+"%").css(i?"top":"left","")},i.prototype.setContent=function(){var t=this.tip(),e=this.getTitle();t.find(".tooltip-inner")[this.options.html?"html":"text"](e),t.removeClass("fade in top bottom left right")},i.prototype.hide=function(e){function o(){"in"!=n.hoverState&&s.detach(),n.$element.removeAttr("aria-describedby").trigger("hidden.bs."+n.type),e&&e()}var n=this,s=t(this.$tip),r=t.Event("hide.bs."+this.type);return this.$element.trigger(r),r.isDefaultPrevented()?void 0:(s.removeClass("in"),t.support.transition&&s.hasClass("fade")?s.one("bsTransitionEnd",o).emulateTransitionEnd(i.TRANSITION_DURATION):o(),this.hoverState=null,this)},i.prototype.fixTitle=function(){var t=this.$element;(t.attr("title")||"string"!=typeof t.attr("data-original-title"))&&t.attr("data-original-title",t.attr("title")||"").attr("title","")},i.prototype.hasContent=function(){return this.getTitle()},i.prototype.getPosition=function(e){e=e||this.$element;var i=e[0],o="BODY"==i.tagName,n=i.getBoundingClientRect();null==n.width&&(n=t.extend({},n,{width:n.right-n.left,height:n.bottom-n.top}));var s=o?{top:0,left:0}:e.offset(),r={scroll:o?document.documentElement.scrollTop||document.body.scrollTop:e.scrollTop()},a=o?{width:t(window).width(),height:t(window).height()}:null;return t.extend({},n,r,a,s)},i.prototype.getCalculatedOffset=function(t,e,i,o){return"bottom"==t?{top:e.top+e.height,left:e.left+e.width/2-i/2}:"top"==t?{top:e.top-o,left:e.left+e.width/2-i/2}:"left"==t?{top:e.top+e.height/2-o/2,left:e.left-i}:{top:e.top+e.height/2-o/2,left:e.left+e.width}},i.prototype.getViewportAdjustedDelta=function(t,e,i,o){var n={top:0,left:0};if(!this.$viewport)return n;var s=this.options.viewport&&this.options.viewport.padding||0,r=this.getPosition(this.$viewport);if(/right|left/.test(t)){var a=e.top-s-r.scroll,l=e.top+s-r.scroll+o;a<r.top?n.top=r.top-a:l>r.top+r.height&&(n.top=r.top+r.height-l)}else{var p=e.left-s,h=e.left+s+i;p<r.left?n.left=r.left-p:h>r.right&&(n.left=r.left+r.width-h)}return n},i.prototype.getTitle=function(){var t,e=this.$element,i=this.options;return t=e.attr("data-original-title")||("function"==typeof i.title?i.title.call(e[0]):i.title)},i.prototype.getUID=function(t){do t+=~~(1e6*Math.random());while(document.getElementById(t));return t},i.prototype.tip=function(){if(!this.$tip&&(this.$tip=t(this.options.template),1!=this.$tip.length))throw new Error(this.type+" `template` option must consist of exactly 1 top-level element!");return this.$tip},i.prototype.arrow=function(){return this.$arrow=this.$arrow||this.tip().find(".tooltip-arrow")},i.prototype.enable=function(){this.enabled=!0},i.prototype.disable=function(){this.enabled=!1},i.prototype.toggleEnabled=function(){this.enabled=!this.enabled},i.prototype.toggle=function(e){var i=this;e&&(i=t(e.currentTarget).data("bs."+this.type),i||(i=new this.constructor(e.currentTarget,this.getDelegateOptions()),t(e.currentTarget).data("bs."+this.type,i))),e?(i.inState.click=!i.inState.click,i.isInStateTrue()?i.enter(i):i.leave(i)):i.tip().hasClass("in")?i.leave(i):i.enter(i)},i.prototype.destroy=function(){var t=this;clearTimeout(this.timeout),this.hide(function(){t.$element.off("."+t.type).removeData("bs."+t.type),t.$tip&&t.$tip.detach(),t.$tip=null,t.$arrow=null,t.$viewport=null})};var o=t.fn.tooltip;t.fn.tooltip=e,t.fn.tooltip.Constructor=i,t.fn.tooltip.noConflict=function(){return t.fn.tooltip=o,this}}(jQuery);                                                                                                                                                                           assets/js/imagesloaded.pkgd.min.js                                                                  0000705                 00000017661 15242037122 0013153 0                                                                                                    ustar 00                                                                                                                                                                                                                                                       /*!
 * imagesLoaded PACKAGED v3.2.0
 * JavaScript is all like "You images are done yet or what?"
 * MIT License
 */

(function(){"use strict";function e(){}function t(e,t){for(var n=e.length;n--;)if(e[n].listener===t)return n;return-1}function n(e){return function(){return this[e].apply(this,arguments)}}var i=e.prototype,r=this,s=r.EventEmitter;i.getListeners=function(e){var t,n,i=this._getEvents();if("object"==typeof e){t={};for(n in i)i.hasOwnProperty(n)&&e.test(n)&&(t[n]=i[n])}else t=i[e]||(i[e]=[]);return t},i.flattenListeners=function(e){var t,n=[];for(t=0;t<e.length;t+=1)n.push(e[t].listener);return n},i.getListenersAsObject=function(e){var t,n=this.getListeners(e);return n instanceof Array&&(t={},t[e]=n),t||n},i.addListener=function(e,n){var i,r=this.getListenersAsObject(e),s="object"==typeof n;for(i in r)r.hasOwnProperty(i)&&-1===t(r[i],n)&&r[i].push(s?n:{listener:n,once:!1});return this},i.on=n("addListener"),i.addOnceListener=function(e,t){return this.addListener(e,{listener:t,once:!0})},i.once=n("addOnceListener"),i.defineEvent=function(e){return this.getListeners(e),this},i.defineEvents=function(e){for(var t=0;t<e.length;t+=1)this.defineEvent(e[t]);return this},i.removeListener=function(e,n){var i,r,s=this.getListenersAsObject(e);for(r in s)s.hasOwnProperty(r)&&(i=t(s[r],n),-1!==i&&s[r].splice(i,1));return this},i.off=n("removeListener"),i.addListeners=function(e,t){return this.manipulateListeners(!1,e,t)},i.removeListeners=function(e,t){return this.manipulateListeners(!0,e,t)},i.manipulateListeners=function(e,t,n){var i,r,s=e?this.removeListener:this.addListener,o=e?this.removeListeners:this.addListeners;if("object"!=typeof t||t instanceof RegExp)for(i=n.length;i--;)s.call(this,t,n[i]);else for(i in t)t.hasOwnProperty(i)&&(r=t[i])&&("function"==typeof r?s.call(this,i,r):o.call(this,i,r));return this},i.removeEvent=function(e){var t,n=typeof e,i=this._getEvents();if("string"===n)delete i[e];else if("object"===n)for(t in i)i.hasOwnProperty(t)&&e.test(t)&&delete i[t];else delete this._events;return this},i.removeAllListeners=n("removeEvent"),i.emitEvent=function(e,t){var n,i,r,s,o=this.getListenersAsObject(e);for(r in o)if(o.hasOwnProperty(r))for(i=o[r].length;i--;)n=o[r][i],n.once===!0&&this.removeListener(e,n.listener),s=n.listener.apply(this,t||[]),s===this._getOnceReturnValue()&&this.removeListener(e,n.listener);return this},i.trigger=n("emitEvent"),i.emit=function(e){var t=Array.prototype.slice.call(arguments,1);return this.emitEvent(e,t)},i.setOnceReturnValue=function(e){return this._onceReturnValue=e,this},i._getOnceReturnValue=function(){return this.hasOwnProperty("_onceReturnValue")?this._onceReturnValue:!0},i._getEvents=function(){return this._events||(this._events={})},e.noConflict=function(){return r.EventEmitter=s,e},"function"==typeof define&&define.amd?define("eventEmitter/EventEmitter",[],function(){return e}):"object"==typeof module&&module.exports?module.exports=e:this.EventEmitter=e}).call(this),function(e){function t(t){var n=e.event;return n.target=n.target||n.srcElement||t,n}var n=document.documentElement,i=function(){};n.addEventListener?i=function(e,t,n){e.addEventListener(t,n,!1)}:n.attachEvent&&(i=function(e,n,i){e[n+i]=i.handleEvent?function(){var n=t(e);i.handleEvent.call(i,n)}:function(){var n=t(e);i.call(e,n)},e.attachEvent("on"+n,e[n+i])});var r=function(){};n.removeEventListener?r=function(e,t,n){e.removeEventListener(t,n,!1)}:n.detachEvent&&(r=function(e,t,n){e.detachEvent("on"+t,e[t+n]);try{delete e[t+n]}catch(i){e[t+n]=void 0}});var s={bind:i,unbind:r};"function"==typeof define&&define.amd?define("eventie/eventie",s):e.eventie=s}(this),function(e,t){"use strict";"function"==typeof define&&define.amd?define(["eventEmitter/EventEmitter","eventie/eventie"],function(n,i){return t(e,n,i)}):"object"==typeof module&&module.exports?module.exports=t(e,require("wolfy87-eventemitter"),require("eventie")):e.imagesLoaded=t(e,e.EventEmitter,e.eventie)}(window,function(e,t,n){function i(e,t){for(var n in t)e[n]=t[n];return e}function r(e){return"[object Array]"==f.call(e)}function s(e){var t=[];if(r(e))t=e;else if("number"==typeof e.length)for(var n=0;n<e.length;n++)t.push(e[n]);else t.push(e);return t}function o(e,t,n){if(!(this instanceof o))return new o(e,t,n);"string"==typeof e&&(e=document.querySelectorAll(e)),this.elements=s(e),this.options=i({},this.options),"function"==typeof t?n=t:i(this.options,t),n&&this.on("always",n),this.getImages(),u&&(this.jqDeferred=new u.Deferred);var r=this;setTimeout(function(){r.check()})}function h(e){this.img=e}function a(e,t){this.url=e,this.element=t,this.img=new Image}var u=e.jQuery,c=e.console,f=Object.prototype.toString;o.prototype=new t,o.prototype.options={},o.prototype.getImages=function(){this.images=[];for(var e=0;e<this.elements.length;e++){var t=this.elements[e];this.addElementImages(t)}},o.prototype.addElementImages=function(e){"IMG"==e.nodeName&&this.addImage(e),this.options.background===!0&&this.addElementBackgroundImages(e);var t=e.nodeType;if(t&&d[t]){for(var n=e.querySelectorAll("img"),i=0;i<n.length;i++){var r=n[i];this.addImage(r)}if("string"==typeof this.options.background){var s=e.querySelectorAll(this.options.background);for(i=0;i<s.length;i++){var o=s[i];this.addElementBackgroundImages(o)}}}};var d={1:!0,9:!0,11:!0};o.prototype.addElementBackgroundImages=function(e){for(var t=m(e),n=/url\(['"]*([^'"\)]+)['"]*\)/gi,i=n.exec(t.backgroundImage);null!==i;){var r=i&&i[1];r&&this.addBackground(r,e),i=n.exec(t.backgroundImage)}};var m=e.getComputedStyle||function(e){return e.currentStyle};return o.prototype.addImage=function(e){var t=new h(e);this.images.push(t)},o.prototype.addBackground=function(e,t){var n=new a(e,t);this.images.push(n)},o.prototype.check=function(){function e(e,n,i){setTimeout(function(){t.progress(e,n,i)})}var t=this;if(this.progressedCount=0,this.hasAnyBroken=!1,!this.images.length)return void this.complete();for(var n=0;n<this.images.length;n++){var i=this.images[n];i.once("progress",e),i.check()}},o.prototype.progress=function(e,t,n){this.progressedCount++,this.hasAnyBroken=this.hasAnyBroken||!e.isLoaded,this.emit("progress",this,e,t),this.jqDeferred&&this.jqDeferred.notify&&this.jqDeferred.notify(this,e),this.progressedCount==this.images.length&&this.complete(),this.options.debug&&c&&c.log("progress: "+n,e,t)},o.prototype.complete=function(){var e=this.hasAnyBroken?"fail":"done";if(this.isComplete=!0,this.emit(e,this),this.emit("always",this),this.jqDeferred){var t=this.hasAnyBroken?"reject":"resolve";this.jqDeferred[t](this)}},h.prototype=new t,h.prototype.check=function(){var e=this.getIsImageComplete();return e?void this.confirm(0!==this.img.naturalWidth,"naturalWidth"):(this.proxyImage=new Image,n.bind(this.proxyImage,"load",this),n.bind(this.proxyImage,"error",this),n.bind(this.img,"load",this),n.bind(this.img,"error",this),void(this.proxyImage.src=this.img.src))},h.prototype.getIsImageComplete=function(){return this.img.complete&&void 0!==this.img.naturalWidth},h.prototype.confirm=function(e,t){this.isLoaded=e,this.emit("progress",this,this.img,t)},h.prototype.handleEvent=function(e){var t="on"+e.type;this[t]&&this[t](e)},h.prototype.onload=function(){this.confirm(!0,"onload"),this.unbindEvents()},h.prototype.onerror=function(){this.confirm(!1,"onerror"),this.unbindEvents()},h.prototype.unbindEvents=function(){n.unbind(this.proxyImage,"load",this),n.unbind(this.proxyImage,"error",this),n.unbind(this.img,"load",this),n.unbind(this.img,"error",this)},a.prototype=new h,a.prototype.check=function(){n.bind(this.img,"load",this),n.bind(this.img,"error",this),this.img.src=this.url;var e=this.getIsImageComplete();e&&(this.confirm(0!==this.img.naturalWidth,"naturalWidth"),this.unbindEvents())},a.prototype.unbindEvents=function(){n.unbind(this.img,"load",this),n.unbind(this.img,"error",this)},a.prototype.confirm=function(e,t){this.isLoaded=e,this.emit("progress",this,this.element,t)},o.makeJQueryPlugin=function(t){t=t||e.jQuery,t&&(u=t,u.fn.imagesLoaded=function(e,t){var n=new o(this,e,t);return n.jqDeferred.promise(u(this))})},o.makeJQueryPlugin(),o});                                                                               assets/js/tlp-team.js                                                                               0000705                 00000017331 15242037122 0010544 0                                                                                                    ustar 00                                                                                                                                                                                                                                                       (function($){

  'use restrict';

  $(window).resize(navResize);
  $('.tlp-single-item-popup').on('click', function(){

        var current,
            $this = $(this),
            $ids = $this.parents('.tlp-team-wrap').find(".tlp-team-item-count");
        var baseURL= "index.php?option=com_tlpteam&task=singleItem&format=raw";
        current = $(this).attr("data-id");
        var itemArray;
        if($ids.length){
            itemArray = $ids.find("span").map(function() {
                return $(this).text();
            }).get();
        }
        $.ajax({
            type: "post",
            url: baseURL,
            data: "id="+current,
            beforeSend: function() {
                initPopup();
                setLevel(current, itemArray);
            },
            success: function( data ){
                $("#tlp-popup-wrap .tlp-popup-content").html(data);
            },
            error: function(){
                $("#tlp-popup-wrap .tlp-popup-content").html("<p>Loading error!!!</p>");
            }
        });

        $('.tlp-popup-next').on('click', function(){
            var nextId = nextItem(current,itemArray);
            current = nextId;
            $.ajax({
                type: "post",
                url: baseURL,
                data: "id="+current,
                beforeSend: function() {
                    setLevel(current, itemArray);
                    $('#tlp-popup-wrap .tlp-popup-content').html('<div class="tlp-popup-loading"></div>');
                },
                success: function( data ){
                    $('#tlp-popup-wrap .tlp-popup-content').html(data);
                }
            });
        });
        $('.tlp-popup-prev').on('click', function(){
            var prevId = prevItem(current,itemArray);
            current = prevId;
            $.ajax({
                type: "post",
                url: baseURL,
                data: "id="+current,
                beforeSend: function() {
                    setLevel(current, itemArray);
                    $('#tlp-popup-wrap .tlp-popup-content').html('<div class="tlp-popup-loading"></div>');
                },
                success: function( data ){
                    $('#tlp-popup-wrap .tlp-popup-content').html(data);
                }
            });
        });
        $('.tlp-popup-close').on('click', function(){
            animation();
        });

        return false;
    });
/* Fixing for hover effect at IOS */
$('*').on('touchstart', function () {
       $(this).trigger('hover');
   }).on('touchend', function () {
       $(this).trigger('hover');
   });
    /* progress bar */
    progressBarList();

 /* isotope */
 $('.tlp-team-wrap').each(function () {
    var container = $(this),
        $isotop = $('.tlp-team-grid', container),
        $button_group = $('.filter-button-group', container),
        temp_filterValue = $button_group.find('button.selected').attr('data-filter'),
        filterValue = typeof(temp_filterValue) != 'undefined' && temp_filterValue != '' ? temp_filterValue : '*';
     console.log(temp_filterValue);
     $isotop = $('.tlp-team-grid').imagesLoaded( function() {

         $isotop.isotope({
             // options
             itemSelector: '.team-item',
             layoutMode: 'fitRows',
             filter: filterValue,
         });
     });
     $button_group.on( 'click', 'button', function() {
         filterValue = $(this).attr('data-filter');
         $isotop.isotope({ filter: filterValue });
         $(this).parent().find('.selected').removeClass('selected');
         $(this).addClass('selected');
     });
 });


   $(window).resize(heightResize);

   $(window).load(function(){
        heightResize();
   })

  /*Start from here */

})(jQuery);



function initPopup(){
    var html = '<div id="tlp-popup-wrap" class="tlp-popup-wrap tlp-popup-singlePage-sticky tlp-popup-singlePage">' +
        '<div class="tlp-popup-content">' +
        '<div class="tlp-popup-loading"></div>' +
        '</div>' +
        '<div class="tlp-popup-navigation-wrap">' +
        '<div class="tlp-popup-navigation">' +
        '<div class="tlp-popup-prev" title="Previous (Left arrow key)" data-action="prev"></div>' +
        '<div class="tlp-popup-close" title="Close (Esc arrow key)" data-action="close"></div>' +
        '<div class="tlp-popup-next" title="Next (Right arrow key)" data-action="next"></div>' +
        '<div class="tlp-popup-singlePage-counter"><span class="ccurrent"></span> of <span class="ctotal"></span></div>' +
        '</div>' +
        '</div>' +
        '</div>';
    jQuery("body").append(html);
    var wWidth = jQuery(window).width();
    var $pHolder = jQuery('#tlp-popup-wrap');
    $pHolder.css('display','block');
    var navHeight = $pHolder.find('.tlp-popup-navigation-wrap').height();
    $pHolder.find('.tlp-popup-content').css('padding-top', navHeight+"px");
    animation();
}

function animation(){
    var $pHolder = jQuery('#tlp-popup-wrap');
    jQuery('body').addClass('rt-body');
    $pHolder.animate({
        marginLeft: parseInt($pHolder.css('marginLeft'),10) == 0 ?
            $pHolder.outerWidth() : 0,
    }).promise().done(function(){
        if(parseInt($pHolder.css('marginLeft')) > 0){
            jQuery('body').removeClass('rt-body');
            jQuery('#tlp-popup-wrap').remove();
        }
    });
}

function nextItem(current, list)
{
    var index = list.indexOf(current);
    index++;
    if(index >= list.length)
        index = 0;
    return list[index];
}
function prevItem(current, list)
{
    var index = list.indexOf(current);
    index--;
    if(index < 0)
        index = list.length - 1;
    return list[index];
}

function setLevel(current, list){
    var index = list.indexOf(current) + 1;
    var count = list.length;
    jQuery(".ccurrent").text(index);
    jQuery(".ctotal").text(count);
}

function loadFotorama(){
    if(jQuery('.fotorama').length) {
       var $fotorama = jQuery('.fotorama').fotorama({
            width: "700",
            nav: 'thumbs'
        });
    }
}
function navResize(){
    var wWidth = jQuery(window).width();
    var $pHolder = jQuery('#tlp-popup-wrap');
    $pHolder.css('display','block');
    $pHolder.find('.tlp-popup-navigation-wrap').css('width', wWidth+"px");
    $pHolder.find('.tlp-popup-navigation').css('width',  wWidth+"px");
}

function progressBarList(){
    jQuery('.tlp-team-skill').find('.fill').css('width','0%');
    jQuery(window).bind('load', function(){
        jQuery('.tlp-team-skill').each(function() {
            jQuery(this).find('.fill').each(function() {
                var k = 0, f = jQuery(this), p = f.attr('data-progress-animation'), w = f.width();
                if (w == 0) {
                    var go = function() {
                        return k >= p || k>= 100 ?( false ) : ( k += 1, f.css('width', k + '%'), setTimeout(go, 20) )
                    };
                    go();
                }
            });
        });
    });
}
function progressBarSingle(){
    jQuery('.tlp-team-skill').find('.fill').css('width','0%');
    jQuery('.tlp-team-skill').each(function() {
        jQuery(this).find('.fill').each(function() {
            var k = 0, f = jQuery(this), p = f.attr('data-progress-animation'), w = f.width();
            if (w == 0) {
                var go = function() {
                    return k >= p || k>= 100 ?( false ) : ( k += 1, f.css('width', k + '%'), setTimeout(go, 20) )
                };
                go();
            }
        });
    });
}


function heightResize(){
    var maxH=0;
    jQuery(".tlp-team .tlp-equal-height" ).height("auto");
    jQuery( ".tlp-team .tlp-equal-height" ).each(function( ) {
        var cH = jQuery(this).height();
        if(cH > maxH){
              maxH = cH;
         }

    });

    jQuery(".tlp-team .tlp-equal-height" ).css('height',maxH+"px");
}                                                                                                                                                                                                                                                                                                       tlpteam.php                                                                                         0000705                 00000001621 15242037122 0006717 0                                                                                                    ustar 00                                                                                                                                                                                                                                                       <?php
/**
 * @version     2.0
 * @package     com_tlpteam
 * @copyright   Copyright (C) 2013. All rights reserved.
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 * @author      TechLabPro <techlabpro@gmail.com> - http://www.techlabpro.com
 */

defined('_JEXEC') or die;

// Include dependancies
jimport('joomla.application.component.controller');
$tlpteam_params = JComponentHelper::getParams('com_tlpteam');
$enable_font_awesome=$tlpteam_params->get('enable_font_awesome','1');
$document = JFactory::getDocument();

$document->addStyleSheet('components/com_tlpteam/assets/css/tlpteam.css');
if($enable_font_awesome==1){
$document->addStyleSheet('components/com_tlpteam/assets/css/font-awesome.min.css');
}
// Execute the task.
$controller	= JControllerLegacy::getInstance('Tlpteam');
$controller->execute(JFactory::getApplication()->input->get('task'));
$controller->redirect();
                                                                                                               helpers/index.html                                                                                  0000705                 00000000032 15242037122 0010172 0                                                                                                    ustar 00                                                                                                                                                                                                                                                       <html><body></body></html>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      helpers/tlpteam.php                                                                                 0000705                 00000007371 15242037122 0010371 0                                                                                                    ustar 00                                                                                                                                                                                                                                                       <?php
/**
 * @version     2.0
 * @package     com_tlpteam
 * @copyright   Copyright (C) 2013. All rights reserved.
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 * @author      TechLabPro <techlabpro@gmail.com> - http://www.techlabpro.com
 */
defined('_JEXEC') or die;

class TlpteamFrontendHelper
{
	
	/**
	* Get category name using category ID
	* @param integer $category_id Category ID
	* @return mixed category name if the category was found, null otherwise
	*/
	public static function getCategoryNameByCategoryId($category_id) {
		$db = JFactory::getDbo();
		$query = $db->getQuery(true);

		$query
			->select('title')
			->from('#__categories')
			->where('id = ' . intval($category_id));

		$db->setQuery($query);
		return $db->loadResult();
	}


	public static function getCategoryName($category_id) {
		$db = JFactory::getDbo();
		$query = $db->getQuery(true);
		JFactory::getLanguage()->getTag();
	 	$multilang=JLanguageMultilang::isEnabled();
	 
		@$department = implode(",", $category_id);

		$query->select('a.id,a.title,a.lft');
		$query->from('#__categories a');
		$query->where('extension = "com_tlpteam"');
		$query->where('a.published = 1');
		// Filter by language
		if ($multilang)
		{
			$query->where('a.language in (' . $db->quote(JFactory::getLanguage()->getTag()) . ',' . $db->quote('*') . ')');
		}
		if($department>0){
			$query->where("a.id IN ($department)");
		}
		$query->order('a.lft');
		//echo $query;
		$db->setQuery($query);
		return $db->loadobjectlist();
	}

	public static function getAllMembers($category_id) {
		$db = JFactory::getDbo();
		$query = $db->getQuery(true);
	
		@$department = implode(",", $category_id);
		$multilang=JLanguageMultilang::isEnabled();
		$query
                ->select('a.*,s1.title as skill1,s2.title as skill2,s3.title as skill3,s4.title as skill4,s5.title as skill5')
                ->from('#__tlpteam_team a');
        
            $query->where('a.state = 1');

         if($department>0){
			$query->where("a.department IN ($department)");
		}
        // Filter by language
		if ($multilang)
		{
			$query->where('a.language in (' . $db->quote(JFactory::getLanguage()->getTag()) . ',' . $db->quote('*') . ')');
		}
        $query->order('a.ordering ASC');

        $query->join('LEFT', '#__tlpteam_skills AS s1 ON s1.id = a.skill1');
        $query->join('LEFT', '#__tlpteam_skills AS s2 ON s2.id = a.skill2');
        $query->join('LEFT', '#__tlpteam_skills AS s3 ON s3.id = a.skill3');
        $query->join('LEFT', '#__tlpteam_skills AS s4 ON s4.id = a.skill4');
        $query->join('LEFT', '#__tlpteam_skills AS s5 ON s5.id = a.skill5');
		
		$db->setQuery($query);
		$rows=$db->loadobjectlist();

	

		return $rows;
	}

	public static function getAllMembersCount($category_id) {
		$db = JFactory::getDbo();
		$query = $db->getQuery(true);
	
		@$department = implode(",", $category_id);
		$query
             	->select('a.*')
                ->from('#__tlpteam_team a');
        
        if($department>0){
            $query->where('a.state = 1 AND a.department IN ('.$department.')');
        }else{
            $query->where('a.state = 1');
        }
        $query->order('a.ordering ASC');
        //$query->where('a.state = 1 AND ');

		$db->setQuery($query);
		$rows=$db->loadobjectlist();
		//echo count($rows);
		return $rows;
	}

	/**
	 * Get an instance of the named model
	 *
	 * @param string $name
	 *
	 * @return null|object
	 */
	public static function getModel($name)
	{
		$model = null;

		// If the file exists, let's
		if (file_exists(JPATH_SITE . '/components/com_tlpteam/models/' . strtolower($name) . '.php'))
		{
			require_once JPATH_SITE . '/components/com_tlpteam/models/' . strtolower($name) . '.php';
			$model = JModelLegacy::getInstance($name, 'TlpteamModel');
		}

		return $model;
	}
}
                                                                                                                                                                                                                                                                       views/index.html                                                                                    0000705                 00000000032 15242037122 0007665 0                                                                                                    ustar 00                                                                                                                                                                                                                                                       <html><body></body></html>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      views/teams/index.html                                                                              0000705                 00000000032 15242037122 0010776 0                                                                                                    ustar 00                                                                                                                                                                                                                                                       <html><body></body></html>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      views/teams/tmpl/default_layout10.php                                                               0000705                 00000012552 15242037122 0013662 0                                                                                                    ustar 00                                                                                                                                                                                                                                                       <?php
/**
 * @version     1.1
 * @package     com_tlpteam
 * @copyright   Copyright (C) 2013. All rights reserved.
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 * @author      TechLabPro <techlabpro@gmail.com> - http://www.techlabpro.com
 */
// no direct access
defined('_JEXEC') or die;
$detail_link=JRoute::_('index.php?option=com_tlpteam&view=team&id='.(int) $this->item->id);
extract($this->tlpconfig); 
if($link_type==2){ 
        $popup=' data-id="'.$this->item->id.'" class="tlp-single-item-popup"';
    }else{
        $popup= null;
    }
$html ='';

if (!empty($this->item->profile_image)):
$html .='<div class="single-team-area">';
  $html .='<div class="tlp-team-item">';                     
    $html .='<div class="image-container">';
         $html .='<figure>';
            $html .='<a href="'.$detail_link.'"'.$popup.'><img class="img-responsive '.$gray_scale.'" src="'. JURI::root().$image_storiage_path.'/m_'.$this->item->profile_image.'" alt="'.$this->item->name.'"/></a>';             
          $html .='</figure>';
          $html .='<div class="tlp-overlay">';
              $html .='<div class="tlp-title">';
              if($name_field==1){
                    if($link_detail==1){
                        $html .='<h3><a href="'. $detail_link.'"'.$popup.'><span class="tlp-name">'. $this->item->name.'</span></a></h3>';
                    }else{
                        $html .='<h3><span class="tlp-name">'.$this->item->name.'</span></h3>';
                    }
                }
              $html .='</div>';
              if($position_field==1){
                    if($link_detail==1){
                        $html .='<p class="tlp-position"><a href="'.$detail_link.'" '.$popup.'>'. $this->item->position .'</a></p>';
                    }else{
                        $html .='<p class="tlp-position">'. $this->item->position.'</p>';
                    }
                 }
                if($shortbio_field==1){
                    if($link_detail==1){
                       $html .='<div class="short-bio">
                           <p><a href="'.$detail_link.'" '.$popup.'>'.substr($this->item->short_bio, 0,$short_description_limit).'</a></p>
                       </div>';
                    }else{
                        $html .='<div class="short-bio">
                           <p>'.substr($this->item->short_bio, 0,$short_description_limit).'</p>
                       </div>';
                    }
                }
                if($socialicon_field==1){ 
            $html .='<div class="social-icons">';  
              if($this->item->facebook!=''){ 
                $html .='<a href="'.$this->item->facebook.'" target="_blank"><i class="fa fa-facebook"></i></a>';
              }
                    if($this->item->twitter!=''){
                      $html .='<a href="'.$this->item->twitter.'" target="_blank"><i class="fa fa-twitter"></i></a>';
                    }
                    if($this->item->google_plus!=''){
                      $html .='<a href="'.$this->item->google_plus.'" target="_blank"><i class="fa fa-google-plus"></i></a>';
                    }
                    if($this->item->linkedin!=''){
                      $html .='<a href="'.$this->item->linkedin.'" target="_blank"><i class="fa fa-linkedin"></i></a>';
                    }
                    if($this->item->youtube!=''){
                      $html .='<a href="'.$this->item->youtube.'" target="_blank"><i class="fa fa-youtube"></i></a>';
                    }
                    if($this->item->vimeo!=''){
                      $html .='<a href="'.$this->item->vimeo.'" target="_blank"><i class="fa fa-vimeo"></i></a>';
                    }
                    if($this->item->instagram!=''){
                      $html .='<a href="'.$this->item->instagram.'" target="_blank"><i class="fa fa-instagram"></i></a>';
                    }
                    if($this->item->xing!=''){
                      $html .='<a href="'.$this->item->xing.'" target="_blank"><i class="fa fa-xing"></i></a>';
                    }
                    if($this->item->joomla!=''){
                      $html .='<a href="'.$this->item->joomla.'" target="_blank"><i class="fa fa-joomla"></i></a>';
                    }
                    if($this->item->wordpress!=''){
                      $html .='<a href="'.$this->item->wordpress.'" target="_blank"><i class="fa fa-wordpress"></i></a>';
                    }
                    if($this->item->behance!=''){
                      $html .='<a href="'.$this->item->behance.'" target="_blank"><i class="fa fa-behance"></i></a>';
                    }
                    if($this->item->dribbble!=''){
                      $html .='<a href="'.$this->item->dribbble.'" target="_blank"><i class="fa fa-dribbble"></i></a>';
                    }
            $html .='</div>';
        }
        $html .='</div>';
    $html .='</div>';

    if($name_field==1){ 
      $html .='<div class="tlp-info">';        
          if($name_field==1){
              if($link_detail==1){
                  $html .='<h3><a href="'. $detail_link.'"'.$popup.'><span class="tlp-name">'. $this->item->name.'</span></a></h3>';
              }else{
                  $html .='<h3><span class="tlp-name">'.$this->item->name.'</span></h3>';
              }
          }            
      $html .='</div>';
    }     
  $html .='</div>';
$html .='</div>';
endif;
echo $html;                                                                                                                                                      views/teams/tmpl/default_layout3.php                                                                0000705                 00000017027 15242037122 0013606 0                                                                                                    ustar 00                                                                                                                                                                                                                                                       <?php
/**
 * @version     1.1
 * @package     com_tlpteam
 * @copyright   Copyright (C) 2013. All rights reserved.
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 * @author      TechLabPro <techlabpro@gmail.com> - http://www.techlabpro.com
 */
// no direct access
defined('_JEXEC') or die;
$detail_link=JRoute::_('index.php?option=com_tlpteam&view=team&id='.(int) $this->item->id);
extract($this->tlpconfig);  
if($link_type==2){ 
        $popup=' data-id="'.$this->item->id.'" class="tlp-single-item-popup"';
    }else{
        $popup= null;
    }

$html ='';

$html .='<div class="single-team-area'. $image_style_class.'">';
    if (!empty($this->item->profile_image)):
     	$html .='<figure>';
            if($link_detail==1){
                $html .='<a href="'.$detail_link.'"'.$popup.'><img class="img-responsive '.$gray_scale.'" src="'. JURI::root().$image_storiage_path.'/m_'.$this->item->profile_image.'" alt="'.$this->item->name.'"/></a>';
            }else{
                $html .='<img class="img-responsive '.$gray_scale.'" src="'.JURI::root().$image_storiage_path.'/m_'.$this->item->profile_image.'" alt="'.$this->item->name.'"/>';
            } 
        $html .='</figure>';
    endif; 
   if(($name_field==1)||($position_field==1)||($shortbio_field==1)){
   $html .='<article>';
	   $html .='<div class="tlp-content" >';
	       if($name_field==1){
            if($link_detail==1){
                $html .='<h3><a href="'. $detail_link.'"'.$popup.'><span class="tlp-name">'. $this->item->name.'</span></a></h3>';
            }else{
                $html .='<h3><span class="tlp-name">'.$this->item->name.'</span></h3>';
            }
          }
    		if($position_field==1){
                $html .='<div class="tlp-position">'.$this->item->position.'</div>';
            }
    	   $html .='</div>';
    	   if($shortbio_field==1){
           $html .='<div class="short-bio">
               <p>'.substr($this->item->short_bio, 0,$short_description_limit).'</p>
           </div>';
           }
	}
	if(($email_field==1)||($phoneno_field==1)||($mobileno_field==1)||($website_field==1)||($location_field==1)){
		$html .='<div class="contact-info">
            <ul>';
            if(($email_field==1)&&($this->item->email!='')){
                $html .='<li><i class="fa fa-envelope-o"></i><span><a href="mailto:'.$this->item->email.'">'.$this->item->email.'</a></span> </li>';
            }
            if(($website_field==1)&&($this->item->personal_website!='')){
                $html .='<li><i class="fa fa-globe"></i><span><a href="'.$this->item->personal_website.'" target="_blank">'.$this->item->personal_website.'</a></span> </li>';
            }
            if(($phoneno_field==1)&&($this->item->phoneno!='')){
                $html .='<li><i class="fa fa-phone"></i><span>'.$this->item->phoneno.'</span></li>';
            }
            if(($mobileno_field==1)&&($this->item->mobileno!='')){
                $html .='<li><i class="fa fa-mobile"></i><span>'.$this->item->mobileno.'</span></li>';
            }
            if(($location_field==1)&&($this->item->location!='')){
                $html .='<li><i class="fa fa-map-marker"></i><span>'.$this->item->location.'</span></li>';
            }
            $html .='</ul>';
        $html .='</div>';
	}
    if($skill_field==1){ 
        $html .='<div class="tlp-team-skill">';
            if(($skill_field==1)&&(($this->item->skill1_no)>0)){
                $html .='<div class="skill_name">'.$this->item->skill1.'</div>';
                $html .='<div class="skill-prog"><a class="tlp-tooltip" data-toggle="tooltip" data-placement="top" title="" data-original-title="'.$this->item->skill1_no.'%'.'"><div class="fill" data-progress-animation='.$this->item->skill1_no.'></div></a></div>';
            }
            if(($skill_field==1)&&(($this->item->skill2_no)>0)){
                $html .='<div class="skill_name">'.$this->item->skill2.'</div>';
                $html .='<div class="skill-prog"><a class="tlp-tooltip" data-toggle="tooltip" data-placement="top" title="" data-original-title="'.$this->item->skill2_no.'%'.'"><div class="fill" data-progress-animation='.$this->item->skill2_no.'></div></a></div>';
            }
            if(($skill_field==1)&&(($this->item->skill3_no)>0)){
                $html .='<div class="skill_name">'.$this->item->skill3.'</div>';
                $html .='<div class="skill-prog"><a class="tlp-tooltip" data-toggle="tooltip" data-placement="top" title="" data-original-title="'.$this->item->skill3_no.'%'.'"><div class="fill" data-progress-animation='.$this->item->skill3_no.'></div></a></div>';
            }
            if(($skill_field==1)&&(($this->item->skill4_no)>0)){
                $html .='<div class="skill_name">'.$this->item->skill4.'</div>';
                $html .='<div class="skill-prog"><a class="tlp-tooltip" data-toggle="tooltip" data-placement="top" title="" data-original-title="'.$this->item->skill4_no.'%'.'"><div class="fill" data-progress-animation='.$this->item->skill4_no.'></div></a></div>';
            }
            if(($skill_field==1)&&(($this->item->skill5_no)>0)){
                $html .='<div class="skill_name">'.$this->item->skill5.'</div>';
                $html .='<div class="skill-prog"><a class="tlp-tooltip" data-toggle="tooltip" data-placement="top" title="" data-original-title="'.$this->item->skill5_no.'%'.'"><div class="fill" data-progress-animation='.$this->item->skill5_no.'></div></a></div>';
            }
        $html .='</div>';
    }
    if($socialicon_field==1){ 
       $html .='<div class="social-icons">';  
           if($this->item->facebook!=''){ 
               $html .='<a href="'.$this->item->facebook.'" target="_blank"><i class="fa fa-facebook"></i></a>';
           }
           if($this->item->twitter!=''){
               $html .='<a href="'.$this->item->twitter.'" target="_blank"><i class="fa fa-twitter"></i></a>';
           }
           if($this->item->google_plus!=''){
               $html .='<a href="'.$this->item->google_plus.'" target="_blank"><i class="fa fa-google-plus"></i></a>';
           }
           if($this->item->linkedin!=''){
               $html .='<a href="'.$this->item->linkedin.'" target="_blank"><i class="fa fa-linkedin"></i></a>';
           }
           if($this->item->youtube!=''){
               $html .='<a href="'.$this->item->youtube.'" target="_blank"><i class="fa fa-youtube"></i></a>';
           }
           if($this->item->vimeo!=''){
               $html .='<a href="'.$this->item->vimeo.'" target="_blank"><i class="fa fa-vimeo"></i></a>';
           }
           if($this->item->instagram!=''){
               $html .='<a href="'.$this->item->instagram.'" target="_blank"><i class="fa fa-instagram"></i></a>';
           }
           if($this->item->xing!=''){
               $html .='<a href="'.$this->item->xing.'" target="_blank"><i class="fa fa-xing"></i></a>';
           }
           if($this->item->joomla!=''){
               $html .='<a href="'.$this->item->joomla.'" target="_blank"><i class="fa fa-joomla"></i></a>';
           }
           if($this->item->wordpress!=''){
               $html .='<a href="'.$this->item->wordpress.'" target="_blank"><i class="fa fa-wordpress"></i></a>';
           }
           if($this->item->behance!=''){
               $html .='<a href="'.$this->item->behance.'" target="_blank"><i class="fa fa-behance"></i></a>';
           }
           if($this->item->dribbble!=''){
               $html .='<a href="'.$this->item->dribbble.'" target="_blank"><i class="fa fa-dribbble"></i></a>';
           }
       $html .='</div>';
    }
   $html .='</article>';
$html .='</div>';

echo $html;                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         views/teams/tmpl/default_layout4.php                                                                0000705                 00000011544 15242037122 0013605 0                                                                                                    ustar 00                                                                                                                                                                                                                                                       <?php
/**
 * @version     1.1
 * @package     com_tlpteam
 * @copyright   Copyright (C) 2015. All rights reserved.
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 * @author      TechLabPro <techlabpro@gmail.com> - http://www.techlabpro.com
 */
// no direct access
defined('_JEXEC') or die;
$detail_link=JRoute::_('index.php?option=com_tlpteam&view=team&id='.(int) $this->item->id);
extract($this->tlpconfig);  
if($link_type==2){ 
        $popup=' data-id="'.$this->item->id.'" class="tlp-single-item-popup"';
    }else{
        $popup= null;
    }


$html ='';

$html .='<div class="single-team-area'. $image_style_class.'">';
    $html .='<div class="single-team">'; 
      if (!empty($this->item->profile_image)):
     	$html .='<figure>';
     		if($link_detail==1){
  	     		$html .='<a href="'.$detail_link.'"'.$popup.'><img class="img-responsive '.$gray_scale.'" src="'. JURI::root().$image_storiage_path.'/m_'.$this->item->profile_image.'" alt="'.$this->item->name.'"/></a>';
            }else{
                $html .='<img class="img-responsive '.$gray_scale.'" src="'.JURI::root().$image_storiage_path.'/m_'.$this->item->profile_image.'" alt="'.$this->item->name.'"/>';
            }
            $html .='<div class="overlay"> 
			    <div class="overlay-element">'; 
			    if(($name_field==1)||($position_field==1)||($shortbio_field==1)){
				$html .='<div class="tlp-content" >';
		  	   	if($name_field==1){
		            if($link_detail==1){
		                $html .='<h3><a href="'. $detail_link.'"'.$popup.'><span class="tlp-name">'. $this->item->name.'</span></a></h3>';
		            }else{
		      			$html .='<h3><span class="tlp-name">'.$this->item->name.'</span></h3>';
		            }
		  		}
				if($position_field==1){
					if($link_detail==1){
	         			$html .='<div class="tlp-position"><a href="'.$detail_link.'" '.$popup.'>'. $this->item->position .'</a></div>';
	         		}else{
	         			$html .='<div class="tlp-position">'. $this->item->position.'</div>';
	         		}
		         }
		        if($shortbio_field==1){
		        	if($link_detail==1){
					   $html .='<div class="short-bio">
						   <p><a href="'.$detail_link.'" '.$popup.'>'.substr($this->item->short_bio, 0,$short_description_limit).'</a></p>
					   </div>';
					}else{
						$html .='<div class="short-bio">
						   <p>'.substr($this->item->short_bio, 0,$short_description_limit).'</p>
					   </div>';
					}
			   	}
	   			$html .='</div>';  
				 }
			 	if($socialicon_field==1){ 
				    $html .='<div class="social-icons">';  
				    	if($this->item->facebook!=''){ 
				    		$html .='<a href="'.$this->item->facebook.'" target="_blank"><i class="fa fa-facebook"></i></a>';
				    	}
		                if($this->item->twitter!=''){
		                	$html .='<a href="'.$this->item->twitter.'" target="_blank"><i class="fa fa-twitter"></i></a>';
		                }
		                if($this->item->google_plus!=''){
		                	$html .='<a href="'.$this->item->google_plus.'" target="_blank"><i class="fa fa-google-plus"></i></a>';
		                }
		                if($this->item->linkedin!=''){
		                	$html .='<a href="'.$this->item->linkedin.'" target="_blank"><i class="fa fa-linkedin"></i></a>';
		                }
		                if($this->item->youtube!=''){
		                	$html .='<a href="'.$this->item->youtube.'" target="_blank"><i class="fa fa-youtube"></i></a>';
		                }
		                if($this->item->vimeo!=''){
		                	$html .='<a href="'.$this->item->vimeo.'" target="_blank"><i class="fa fa-vimeo"></i></a>';
		                }
		                if($this->item->instagram!=''){
		                	$html .='<a href="'.$this->item->instagram.'" target="_blank"><i class="fa fa-instagram"></i></a>';
		                }
		                if($this->item->xing!=''){
		                	$html .='<a href="'.$this->item->xing.'" target="_blank"><i class="fa fa-xing"></i></a>';
		                }
		                if($this->item->joomla!=''){
		                	$html .='<a href="'.$this->item->joomla.'" target="_blank"><i class="fa fa-joomla"></i></a>';
		                }
		                if($this->item->wordpress!=''){
		                	$html .='<a href="'.$this->item->wordpress.'" target="_blank"><i class="fa fa-wordpress"></i></a>';
		                }
		                if($this->item->behance!=''){
		                	$html .='<a href="'.$this->item->behance.'" target="_blank"><i class="fa fa-behance"></i></a>';
		                }
		                if($this->item->dribbble!=''){
		                	$html .='<a href="'.$this->item->dribbble.'" target="_blank"><i class="fa fa-dribbble"></i></a>';
		                }
				    $html .='</div>';
				}
				$html .='</div>';
	 		$html .='</div>';		     		
        $html .='</figure>';	
     endif; 	         
    $html .='</div>';			   
$html .='</div>';

echo $html;                                                                                                                                                            views/teams/tmpl/index.html                                                                         0000705                 00000000032 15242037122 0011752 0                                                                                                    ustar 00                                                                                                                                                                                                                                                       <html><body></body></html>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      views/teams/tmpl/default_isotope6.php                                                               0000705                 00000013132 15242037122 0013747 0                                                                                                    ustar 00                                                                                                                                                                                                                                                       <?php
/**
 * @version     1.1
 * @package     com_tlpteam
 * @copyright   Copyright (C) 2013. All rights reserved.
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 * @author      TechLabPro <techlabpro@gmail.com> - http://www.techlabpro.com
 */
// no direct access
defined('_JEXEC') or die;
extract($this->tlpconfig); 
if($image_style==2){ 
	$image_style_class = 'tlp-round-picture';
}else {
	$image_style_class = '';
}

$html ='';

$html .='<div class="isotop-container">';
  $html .='<div class="button-group filter-button-group">';
  if(!$hide_showall){
		$selected = $mod_selected_category ? null : " class='selected'" ;
		$html .='<button data-filter="*" '.$selected.'>'.JText::_('COM_TLPTEAM_FORM_LBL_BTN_SHOW_ALL').'</button>';
	}
	$category=TlpteamFrontendHelper::getCategoryName($category_id);
	foreach ($category as $key => $value) {
		$selected = null;
		if($value->id == $mod_selected_category){
			$selected = " class='selected'";
		}
		$html .='<button '.$selected.' data-filter=".cat'.strtolower($value->id).'">'.$value->title.'</button>';
	}
  
$html .='</div>';
$html .='<div class="tlp-team-grid">';

$allmembers=TlpteamFrontendHelper::getAllMembers($category_id);

foreach ($allmembers as $key => $item):

if($link_type==2){ 
      $popup=' data-id="'.$item->id.'" class="tlp-single-item-popup"';
  }else{
      $popup= null;
  }
  $detail_link=JRoute::_('index.php?option=com_tlpteam&view=team&id='.(int) $item->id);
		

  	$html .='<div class="team-item cat'.strtolower($item->department).' '. $bss.' '.$item_margin.' tlp-equal-height '.$image_style_class.'">';
	      if (!empty($item->profile_image)):
	      	$html .='<div class="single-team-area">';
			    $html .='<figure>';
			      if($link_detail==1){
	                $html .='<a href="'.$detail_link.'"'.$popup.'><img class="img-responsive '.$gray_scale.'" src="'. JURI::root().$image_storiage_path.'/m_'.$item->profile_image.'" alt="'.$item->name.'"/></a>';
	              }else{
	                $html .='<img class="img-responsive '.$gray_scale.'" src="'.JURI::root().$image_storiage_path.'/m_'.$item->profile_image.'" alt="'.$item->name.'"/>';
	              }                
			    $html .='</figure>';
			    $html .='<div class="tlp-overlay">';
			       if($name_field==1){
	                    if($link_detail==1){
	                        $html .='<h3><a href="'. $detail_link.'"'.$popup.'><span class="tlp-name">'. $item->name.'</span></a></h3>';
	                    }else{
	                        $html .='<h3><span class="tlp-name">'.$item->name.'</span></h3>';
	                    }
                	}
                	if($position_field==1){
	                    if($link_detail==1){
	                        $html .='<div class="tlp-position"><span><a href="'.$detail_link.'" '.$popup.'>'. $item->position .'</a></span></div>';
	                    }else{
	                        $html .='<div class="tlp-position"><span>'. $item->position.'</span></div>';
	                    }
                 	}
                 	if($shortbio_field==1){
			        	if($link_detail==1){
						   $html .='<div class="short-bio">
							   <p><a href="'.$detail_link.'" '.$popup.'>'.substr($item->short_bio, 0,$short_description_limit).'</a></p>
						   </div>';
						}else{
							$html .='<div class="short-bio">
							   <p>'.substr($item->short_bio, 0,$short_description_limit).'</p>
						   </div>';
						}
			   		}
			       if($socialicon_field==1){ 
			      		$html .='<p class="social-icons">';  
			        	    if($item->facebook!=''){ 
					              $html .='<a href="'.$item->facebook.'" target="_blank"><i class="fa fa-facebook"></i></a>';
					            }
				            if($item->twitter!=''){
				              $html .='<a href="'.$item->twitter.'" target="_blank"><i class="fa fa-twitter"></i></a>';
				            }
				            if($item->google_plus!=''){
				              $html .='<a href="'.$item->google_plus.'" target="_blank"><i class="fa fa-google-plus"></i></a>';
				            }
				            if($item->linkedin!=''){
				              $html .='<a href="'.$item->linkedin.'" target="_blank"><i class="fa fa-linkedin"></i></a>';
				            }
				            if($item->youtube!=''){
				              $html .='<a href="'.$item->youtube.'" target="_blank"><i class="fa fa-youtube"></i></a>';
				            }
				            if($item->vimeo!=''){
				              $html .='<a href="'.$item->vimeo.'" target="_blank"><i class="fa fa-vimeo"></i></a>';
				            }
				            if($item->instagram!=''){
				              $html .='<a href="'.$item->instagram.'" target="_blank"><i class="fa fa-instagram"></i></a>';
				            }
				            if($item->xing!=''){
				              $html .='<a href="'.$item->xing.'" target="_blank"><i class="fa fa-xing"></i></a>';
				            }
				            if($item->joomla!=''){
				              $html .='<a href="'.$item->joomla.'" target="_blank"><i class="fa fa-joomla"></i></a>';
				            }
				            if($item->wordpress!=''){
				              $html .='<a href="'.$item->wordpress.'" target="_blank"><i class="fa fa-wordpress"></i></a>';
				            }
				            if($item->behance!=''){
				              $html .='<a href="'.$item->behance.'" target="_blank"><i class="fa fa-behance"></i></a>';
				            }
				            if($item->dribbble!=''){
				              $html .='<a href="'.$item->dribbble.'" target="_blank"><i class="fa fa-dribbble"></i></a>';
				            }
			      		$html .='</p>';
			      	}
			    $html .='</div>';
			$html .='</div>';
			endif;
		$html .='</div>';
	endforeach;
 	$html .='</div>';
$html .='</div>';

echo $html;                                                                                                                                                                                                                                                                                                                                                                                                                                      views/teams/tmpl/default_isotope1.php                                                               0000705                 00000013204 15242037122 0013742 0                                                                                                    ustar 00                                                                                                                                                                                                                                                       <?php
/**
 * @version     1.1
 * @package     com_tlpteam
 * @copyright   Copyright (C) 2013. All rights reserved.
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 * @author      TechLabPro <techlabpro@gmail.com> - http://www.techlabpro.com
 */
// no direct access
defined('_JEXEC') or die;
extract($this->tlpconfig); 
$html ='';

$html .='<div class="isotop-container">';
	$html .='<div class="button-group filter-button-group">';
	if(!$hide_showall){
		$selected = $mod_selected_category ? null : " class='selected'" ;
		$html .='<button data-filter="*" '.$selected.'>'.JText::_('COM_TLPTEAM_FORM_LBL_BTN_SHOW_ALL').'</button>';
	}
	$category=TlpteamFrontendHelper::getCategoryName($category_id);
	foreach ($category as $key => $value) {
		$selected = null;
		if($value->id == $mod_selected_category){
			$selected = " class='selected'";
		}
		$html .='<button '.$selected.' data-filter=".cat'.strtolower($value->id).'">'.$value->title.'</button>';
	}
	
	$html .='</div>';
	$html .='<div class="tlp-team-grid">';
	$allmembers=TlpteamFrontendHelper::getAllMembers($category_id);
	foreach ($allmembers as $key => $item) : 
		if($link_type==2){ 
        		$popup=' data-id="'.$item->id.'" class="tlp-single-item-popup"';
		    }else{
		        $popup= null;
		    }
		$detail_link=JRoute::_('index.php?option=com_tlpteam&view=team&id='.(int) $item->id);
		$catids = explode(",", $item->department);
		$textValue = array();
        foreach ($catids as $catid){
        	$textValue[] = 'cat'.$catid;
        }
        $cat= implode(' ', $textValue);
		
		//$html .='<br><br>';
	$html .='<div class="team-item '.$cat.' '.$bss. ' '.$item_margin. ' tlp-equal-height '. $image_style_class.' ">';
	    if (!empty($item->profile_image)):
	    $html .='<figure>';
	     	if($link_detail==1){
	            $html .='<a href="'.$detail_link.'"'.$popup.'><img class="img-responsive '.$gray_scale.'" src="'. JURI::root().$image_storiage_path.'/m_'.$item->profile_image.'" alt="'.$item->name.'"/></a>';
	        }else{
	            $html .='<img class="img-responsive '.$gray_scale.'" src="'.JURI::root().$image_storiage_path.'/m_'.$item->profile_image.'" alt="'.$item->name.'"/>';
	        }  
			 $html .='<div class="overlay">'; 
			    $html .='<div class="overlay-element">'; 
		       	   	if($name_field==1){
	                    if($link_detail==1){
	                        $html .='<h3><a href="'. $detail_link.'"'.$popup.'><span class="tlp-name">'. $item->name.'</span></a></h3>';
	                    }else{
	                        $html .='<h3><span class="tlp-name">'.$item->name.'</span></h3>';
	                    }
                	}
                	if($position_field==1){
	                    if($link_detail==1){
	                        $html .='<p class="tlp-position"><a href="'.$detail_link.'" '.$popup.'>'. $item->position .'</a></p>';
	                    }else{
	                        $html .='<p class="tlp-position">'. $item->position.'</p>';
	                    }
                 	}
					if($shortbio_field==1){
			        	if($link_detail==1){
						   $html .='<div class="short-bio">
							   <p><a href="'.$detail_link.'" '.$popup.'>'.substr($item->short_bio, 0,$short_description_limit).'</a></p>
						   </div>';
						}else{
							$html .='<div class="short-bio">
							   <p>'.substr($item->short_bio, 0,$short_description_limit).'</p>
						   </div>';
						}
			   		}

				   if($socialicon_field==1){ 
				    $html .='<div class="social-icons">';  
				    	if($item->facebook!=''){ 
				    		$html .='<a href="'.$item->facebook.'" target="_blank"><i class="fa fa-facebook"></i></a>';
				    	}
		                if($item->twitter!=''){
		                	$html .='<a href="'.$item->twitter.'" target="_blank"><i class="fa fa-twitter"></i></a>';
		                }
		                if($item->google_plus!=''){
		                	$html .='<a href="'.$item->google_plus.'" target="_blank"><i class="fa fa-google-plus"></i></a>';
		                }
		                if($item->linkedin!=''){
		                	$html .='<a href="'.$item->linkedin.'" target="_blank"><i class="fa fa-linkedin"></i></a>';
		                }
		                if($item->youtube!=''){
		                	$html .='<a href="'.$item->youtube.'" target="_blank"><i class="fa fa-youtube"></i></a>';
		                }
		                if($item->vimeo!=''){
		                	$html .='<a href="'.$item->vimeo.'" target="_blank"><i class="fa fa-vimeo"></i></a>';
		                }
		                if($item->instagram!=''){
		                	$html .='<a href="'.$item->instagram.'" target="_blank"><i class="fa fa-instagram"></i></a>';
		                }
		                if($item->xing!=''){
		                	$html .='<a href="'.$item->xing.'" target="_blank"><i class="fa fa-xing"></i></a>';
		                }
		                if($item->joomla!=''){
		                	$html .='<a href="'.$item->joomla.'" target="_blank"><i class="fa fa-joomla"></i></a>';
		                }
		                if($item->wordpress!=''){
		                	$html .='<a href="'.$item->wordpress.'" target="_blank"><i class="fa fa-wordpress"></i></a>';
		                }
		                if($item->behance!=''){
		                	$html .='<a href="'.$item->behance.'" target="_blank"><i class="fa fa-behance"></i></a>';
		                }
		                if($item->dribbble!=''){
		                	$html .='<a href="'.$item->dribbble.'" target="_blank"><i class="fa fa-dribbble"></i></a>';
		                }
				    $html .='</div>';
				}
				$html .='</div>';
			 $html .='</div>';  		
	    $html .='</figure>';
        endif; 	
	$html .='</div>';
	endforeach;
 $html .='</div>';
$html .='</div>';

echo $html;                                                                                                                                                                                                                                                                                                                                                                                            views/teams/tmpl/default_backup.php                                                                 0000705                 00000056576 15242037122 0013467 0                                                                                                    ustar 00                                                                                                                                                                                                                                                       <?php
/**
 * @version     1.0
 * @package     com_tlpteam
 * @copyright   Copyright (C) 2013. All rights reserved.
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 * @author      TechLabPro <techlabpro@gmail.com> - http://www.techlabpro.com
 */
// no direct access
defined('_JEXEC') or die;

JHtml::addIncludePath(JPATH_COMPONENT . '/helpers/html');
JHtml::_('bootstrap.tooltip');
JHtml::_('behavior.multiselect');
JHtml::_('formbehavior.chosen', 'select');

$user       = JFactory::getUser();
$userId     = $user->get('id');
$listOrder  = $this->state->get('list.ordering');
$listDirn   = $this->state->get('list.direction');
$canCreate  = $user->authorise('core.create', 'com_tlpteam');
$canEdit    = $user->authorise('core.edit', 'com_tlpteam');
$canCheckin = $user->authorise('core.manage', 'com_tlpteam');
$canChange  = $user->authorise('core.edit.state', 'com_tlpteam');
$canDelete  = $user->authorise('core.delete', 'com_tlpteam');

$app = JFactory::getApplication();
$tlpteam_params = JComponentHelper::getParams('com_tlpteam');
$image_storiage_path = $tlpteam_params->get('image_path');
$primary_color=$tlpteam_params->get('primary_color');
$name_font_size=$tlpteam_params->get('name_font_size');
$name_font_color=$tlpteam_params->get('name_font_color');
$name_text_align=$tlpteam_params->get('name_text_align');
$position_font_size=$tlpteam_params->get('position_font_size');
$position_font_color=$tlpteam_params->get('position_font_color');
$position_text_align=$tlpteam_params->get('position_text_align');
$short_bio_text_align=$tlpteam_params->get('short_bio_text_align');
$social_icon_background=$tlpteam_params->get('social_icon_background');
$social_icon_size=$tlpteam_params->get('social_icon_size');
$link_detail=$tlpteam_params->get('link_detail');
$link_type=$tlpteam_params->get('link_type');
$layout=$tlpteam_params->get('layout');


$display_no=$tlpteam_params->get('display_no');
$grid=(12/$display_no);
$bootstrap_version=$tlpteam_params->get('bootstrap_version');
if($bootstrap_version==3){
	$bss="col-md-".$grid." col-sm-6";
}else{
	$bss="span-".$grid;
}

?>



<style type="text/css">
.single-team-area .tlp-content h3{text-align:<?php echo $name_text_align;?>; }
.tlp-team1.tlp-content{background-color:<?php echo $primary_color;?>};
.tlp-name,a{font-size:<?php echo $name_font_size;?>px; color:<?php echo $name_font_color;?>!important;}
.tlp-team1 a span,.tlp-team2 a span,.tlp-team3 a span,.tlp-team4 a span,.tlp-team5 a span{color:<?php echo $name_font_color;?>!important;}		
.tlp-team1 a, .tlp-team2 a, .tlp-team3 a, .tlp-team4 a, .tlp-team5 a{color:<?php echo $primary_color;?>!important;}
.tlp-team3 .social-icons ul li{  border: 1px solid <?php echo $primary_color;?>; }
.tlp-position{font-size:<?php echo $position_font_size;?>px; color:<?php echo $position_font_color;?>; text-align:<?php echo $position_text_align;?>}
.social-icons a{font-size:<?php echo $social_icon_size;?>px; color:<?php echo $social_icon_background;?>!important;}
.short-bio{text-align:<?php echo $short_bio_text_align;?> !important;}

</style>
<form action="<?php echo JRoute::_('index.php?option=com_tlpteam&view=teams'); ?>" method="post" name="adminForm" id="adminForm">
	<div class="tlp-team<?php echo $layout;?>">
	<table class="table table-striped">

	<?php
		switch ($layout){

			case "1": ?>
			<!-- Layout 1   -->
			<?php
		    $j=0;$k=1;
		    $count = count($this->items);
			foreach ($this->items as $i => $item) : 
				$j++;
			if($k== 1){
			echo '<div class="row-fluid margin-bottom">'; } ?>
			<div class="<?php echo $bss;?>">
			<div class="single-team-area"> 
			   <div class="single-team"> 
			     <?php if (!empty($item->profile_image)):?>
			     	<figure>
			     		<img class="tlp-img-responsive" src="<?php echo JURI::root().$image_storiage_path.'/m_'.$item->profile_image; ?> " alt="<?php echo $item->name; ?>"/>		     		
			     	</figure>	
		         <?php  endif; ?>
		         
		        <figcaption>
				 <div class="overlay"> 
				    <div class="overlay-element"> 
					<a href="#"><i class="fa fa-plus"></i></a>
					  <div class="social-icons">  
					    <ul>
					    	<?php if($item->facebook!=''){?><li ><a href="<?php echo $item->facebook;?>" target="_new"><i class="fa fa-facebook"></i> </a></li><?php }?>
			                <?php if($item->twitter!=''){?><li ><a href="<?php echo $item->twitter;?>" target="_new"><i class="fa fa-twitter"></i></a></li><?php }?>
			                <?php if($item->google_plus!=''){?><li ><a href="<?php echo $item->googleplus;?>" target="_new"><i class="fa fa-google-plus"></i> </a></li><?php }?>
			                <?php if($item->linkedin!=''){?><li ><a href="<?php echo $item->linkedin;?>" target="_new"><i class="fa fa-linkedin"></i></a></li><?php }?>
			                <?php if($item->youtube!=''){?><li ><a href="<?php echo $item->youtube;?>" target="_new"><i class="fa fa-youtube"></i> </a></li><?php }?>
			                <?php if($item->vimeo!=''){?><li ><a href="<?php echo $item->vimeo;?>" target="_new"><i class="fa fa-vimeo"></i></a></li><?php }?>
			                <?php if($item->instagram!=''){?><li ><a href="<?php echo $item->instagram;?>" target="_new"><i class="fa fa-instagram"></i> </a></li><?php }?>
					    </ul>
					  </div>
					</div>
				 </div>
				</figcaption>
			   </div>
			   <?php if(($tlpteam_params->get('name_field')==1)||($tlpteam_params->get('position_field')==1)||($tlpteam_params->get('shortbio_field')==1)){?>
			   <article>
				   <div class="tlp-content" >
				   	<?php if($tlpteam_params->get('name_field')==1){?>
			        	<h3><a href="<?php echo JRoute::_('index.php?option=com_tlpteam&view=team&id='.(int) $item->id); ?>">
						<span class="tlp-name"><?php echo $this->escape($item->name); ?></span></a></h3>
					<?php }?>
					<?php if($tlpteam_params->get('position_field')==1){?>
			         	<span class="tlp-position"><?php echo $item->position; ?></span>
			        <?php }?>
				   </div>
				   <?php if($tlpteam_params->get('shortbio_field')==1){?>
				   <div class="short-bio">
					   <p><?php echo $item->short_bio; ?></p>
				   </div>
				   <?php }?>
			   </article>
			   <?php }?>
			</div>
			</div>
			<?php 		
		     if($k == $display_no || $count == $j){ 
		     	echo '</div>';
		     $k=0;
			 } 
			 $k++; endforeach; $j;?>
			<!-- End Layout 1 -->	
		
			<?php break; 
			case "2": ?>
			<!-- Layout 2   -->
			<?php
		    $j=0;$k=1;
		    $count = count($this->items);
			foreach ($this->items as $i => $item) : 
				$j++;
			if($k== 1){
			echo '<div class="row-fluid margin-bottom">'; } ?>
			<div class="<?php echo $bss;?>">
				<div class="col-md-5 ">
					<div class="tlp-img tlp-single-team">
                        <?php if (!empty($item->profile_image)):?>
					     	<figure <?php if($tlpteam_params->get('image_style')==2){?>class="tlp-round-picture" <?php }?>>
					     		<img class="tlp-img-responsive " src="<?php echo JURI::root().$image_storiage_path.'/m_'.$item->profile_image; ?> " alt="<?php echo $item->name; ?>"/>		     		
					     	</figure>	
				         <?php  endif; ?>
					</div> 
				</div>

				<div class="col-md-7 ">
					<?php if(($tlpteam_params->get('name_field')==1)||($tlpteam_params->get('position_field')==1)||($tlpteam_params->get('shortbio_field')==1)){?>
					   <article>
						   <div class="tlp-content" >
						   	<?php if($tlpteam_params->get('name_field')==1){?>
					        	<h3><a href="<?php echo JRoute::_('index.php?option=com_tlpteam&view=team&id='.(int) $item->id); ?>">
								<span class="tlp-name"><?php echo $this->escape($item->name); ?></span></a></h3>
							<?php }?>
							<?php if($tlpteam_params->get('position_field')==1){?>
					         	<span class="tlp-position"><?php echo $item->position; ?></span>
					        <?php }?>
						   </div>
						   <?php if($tlpteam_params->get('shortbio_field')==1){?>
						   <div class="short-bio">
							   <p><?php echo $item->short_bio; ?></p>
						   </div>
						   <?php }?>
					   <?php }?>
					   	<div class="social-icons">  
						    <ul>
					    	<?php if($item->facebook!=''){?><li ><a href="<?php echo $item->facebook;?>" target="_new"><i class="fa fa-facebook"></i> </a></li><?php }?>
			                <?php if($item->twitter!=''){?><li ><a href="<?php echo $item->twitter;?>" target="_new"><i class="fa fa-twitter"></i></a></li><?php }?>
			                <?php if($item->google_plus!=''){?><li ><a href="<?php echo $item->googleplus;?>" target="_new"><i class="fa fa-google-plus"></i> </a></li><?php }?>
			                <?php if($item->linkedin!=''){?><li ><a href="<?php echo $item->linkedin;?>" target="_new"><i class="fa fa-linkedin"></i></a></li><?php }?>
			                <?php if($item->youtube!=''){?><li ><a href="<?php echo $item->youtube;?>" target="_new"><i class="fa fa-youtube"></i> </a></li><?php }?>
			                <?php if($item->vimeo!=''){?><li ><a href="<?php echo $item->vimeo;?>" target="_new"><i class="fa fa-vimeo"></i></a></li><?php }?>
			                <?php if($item->instagram!=''){?><li ><a href="<?php echo $item->instagram;?>" target="_new"><i class="fa fa-instagram"></i> </a></li><?php }?>
					    </ul>                             
                        </div>
				   </article>
				</div>
				</div>
				<?php 		
			     if($k == $display_no || $count == $j){ 
			     	echo '</div>';
			     $k=0;
				 } 
				 $k++; endforeach; $j;?>
			<!-- End Layout 2   -->
			<?php break; 

				case "3": ?>
					<!-- Layout 3  -->
					<?php
				    $j=0;$k=1;
				    $count = count($this->items);
					foreach ($this->items as $i => $item) : 
						$j++;
					if($k== 1){
					echo '<div class="row-fluid margin-bottom">'; } ?>
					<div class="<?php echo $bss;?>">
					<div class="single-team-area"> 
					     <?php if (!empty($item->profile_image)):?>
					     	<figure <?php if($tlpteam_params->get('image_style')==2){?>class="tlp-round-picture" <?php }?>>
					     		<img class="tlp-img-responsive " src="<?php echo JURI::root().$image_storiage_path.'/m_'.$item->profile_image; ?> " alt="<?php echo $item->name; ?>"/>		     		
					     	</figure>	
				         <?php  endif; ?>

					   <?php if(($tlpteam_params->get('name_field')==1)||($tlpteam_params->get('position_field')==1)||($tlpteam_params->get('shortbio_field')==1)){?>
					   <article>
						   <div class="tlp-content" >
						   	<?php if($tlpteam_params->get('name_field')==1){?>
					        	<h3><a href="<?php echo JRoute::_('index.php?option=com_tlpteam&view=team&id='.(int) $item->id); ?>">
								<span class="tlp-name"><?php echo $this->escape($item->name); ?></span></a></h3>
							<?php }?>
							<?php if($tlpteam_params->get('position_field')==1){?>
					         	<div class="tlp-position"><?php echo $item->position; ?></div>
					        <?php }?>
						   </div>
						   <?php if($tlpteam_params->get('shortbio_field')==1){?>
						   <div class="short-bio">
							   <p><?php echo $item->short_bio; ?></p>
						   </div>
						   <?php }?>
						<?php }?>
							<?php if(($tlpteam_params->get('email_field')==1)||($tlpteam_params->get('phoneno_field')==1)||($tlpteam_params->get('website_field')==1)||($tlpteam_params->get('location_field')==1)){?>
							<div class="contact-info">  
                                <ul>
                                	<?php if(($tlpteam_params->get('email_field')==1)&&($item->email!='')){?>
                                	<li><i class="fa fa-envelope-o"></i> <span><a href="mailto:<?php echo $item->email; ?>"><?php echo $item->email; ?></a></span> </li>
                                	<?php }?>
                                	<?php if(($tlpteam_params->get('website_field')==1)&&($item->personal_website!='')){?>
                                	<li><i class="fa fa-globe"></i> <span><a href="<?php echo $item->personal_website;?>" target="_New"><?php echo $item->personal_website; ?></a></span> </li>
                                	<?php }?>
                                	<?php if(($tlpteam_params->get('phoneno_field')==1)&&($item->phoneno!='')){?>
                                	<li><i class="fa fa-phone"></i> <span><a href="tel:<?php echo $item->phoneno; ?>"><?php echo $item->phoneno; ?></a></span></li>
                                	<?php }?>
                                	<?php if(($tlpteam_params->get('location_field')==1)&&($item->location!='')){?>
                                	<li><i class="fa fa-map-marker"></i> <span><?php echo $item->location; ?></span> </li>
                                	<?php }?>     	
                                </ul>
						      </div>
						 	<?php }?>
						    <div class="social-icons">  
							    <ul>
							    	<?php if($item->facebook!=''){?><li ><a href="<?php echo $item->facebook;?>" target="_new"><i class="fa fa-facebook"></i> </a></li><?php }?>
					                <?php if($item->twitter!=''){?><li ><a href="<?php echo $item->twitter;?>" target="_new"><i class="fa fa-twitter"></i></a></li><?php }?>
					                <?php if($item->google_plus!=''){?><li ><a href="<?php echo $item->googleplus;?>" target="_new"><i class="fa fa-google-plus"></i> </a></li><?php }?>
					                <?php if($item->linkedin!=''){?><li ><a href="<?php echo $item->linkedin;?>" target="_new"><i class="fa fa-linkedin"></i></a></li><?php }?>
					                <?php if($item->youtube!=''){?><li ><a href="<?php echo $item->youtube;?>" target="_new"><i class="fa fa-youtube"></i> </a></li><?php }?>
					                <?php if($item->vimeo!=''){?><li ><a href="<?php echo $item->vimeo;?>" target="_new"><i class="fa fa-vimeo"></i></a></li><?php }?>
					                <?php if($item->instagram!=''){?><li ><a href="<?php echo $item->instagram;?>" target="_new"><i class="fa fa-instagram"></i> </a></li><?php }?>
							    </ul>
							</div>
					   </article>
					</div>
					</div>
					<?php 		
					    if($k == $display_no || $count == $j){ 
					     	echo '</div>';
					     $k=0;
					 } 
					 $k++; endforeach; $j;?>
			<!-- End Layout 3   -->
			<?php break; 

				case "4": ?>
					<!-- Layout 4  overlay with name, position and social icon-->
					<?php
				    $j=0;$k=1;
				    $count = count($this->items);
					foreach ($this->items as $i => $item) : 
						$j++;
					if($k== 1){
					echo '<div class="row-fluid margin-bottom">'; } ?>
					<div class="<?php echo $bss;?>">
					<div class="single-team-area"> 
					   <div class="single-team <?php if($tlpteam_params->get('image_style')==2){?>tlp-round-picture <?php }?>"> 
					      <?php if (!empty($item->profile_image)):?>
					     	<figure>
					     		<img class="tlp-img-responsive " src="<?php echo JURI::root().$image_storiage_path.'/m_'.$item->profile_image; ?> " alt="<?php echo $item->name; ?>"/>		     		
					     	</figure>	
				         <?php  endif; ?>			         
				        <figcaption>
						 <div class="overlay"> 
						    <div class="overlay-element"> 
						    <?php if(($tlpteam_params->get('name_field')==1)||($tlpteam_params->get('position_field')==1)||($tlpteam_params->get('shortbio_field')==1)){?>
							<div class="tlp-content" >
						   	<?php if($tlpteam_params->get('name_field')==1){?>
					        	<h3><a href="<?php echo JRoute::_('index.php?option=com_tlpteam&view=team&id='.(int) $item->id); ?>">
								<span class="tlp-name"><?php echo $this->escape($item->name); ?></span></a></h3>
							<?php }?>
							<?php if($tlpteam_params->get('position_field')==1){?>
					         	<span class="tlp-position"><?php echo $item->position; ?></span>
					        <?php }?>
					        <?php if($tlpteam_params->get('shortbio_field')==1){?>
							   <div class="short-bio">
								   <p><?php echo $item->short_bio; ?></p>
							   </div>
						   <?php }?>

						   </div>
						   
						<?php }?>
							  <div class="social-icons">  
							    <ul>
							    	<?php if($item->facebook!=''){?><li ><a href="<?php echo $item->facebook;?>" target="_new"><i class="fa fa-facebook"></i> </a></li><?php }?>
					                <?php if($item->twitter!=''){?><li ><a href="<?php echo $item->twitter;?>" target="_new"><i class="fa fa-twitter"></i></a></li><?php }?>
					                <?php if($item->google_plus!=''){?><li ><a href="<?php echo $item->googleplus;?>" target="_new"><i class="fa fa-google-plus"></i> </a></li><?php }?>
					                <?php if($item->linkedin!=''){?><li ><a href="<?php echo $item->linkedin;?>" target="_new"><i class="fa fa-linkedin"></i></a></li><?php }?>
					                <?php if($item->youtube!=''){?><li ><a href="<?php echo $item->youtube;?>" target="_new"><i class="fa fa-youtube"></i> </a></li><?php }?>
					                <?php if($item->vimeo!=''){?><li ><a href="<?php echo $item->vimeo;?>" target="_new"><i class="fa fa-vimeo"></i></a></li><?php }?>
					                <?php if($item->instagram!=''){?><li ><a href="<?php echo $item->instagram;?>" target="_new"><i class="fa fa-instagram"></i> </a></li><?php }?>
							    </ul>
							  </div>
							</div>
						 </div>
						</figcaption>
					   </div>			   
				</div>
				</div>
				<?php 		
			     if($k == $display_no || $count == $j){ 
			     	echo '</div>';
			     $k=0;
			 } 
			 $k++; endforeach; $j;?>
			<!-- End Layout 4   -->
			<?php break; ?>

			<?php break; 

				case "5": ?>
					<!-- Layout 5 Table with name, position, short bio and social icon-->
					<table class="table table-striped">
					<?php
				    $j=0;$k=1;
				    $count = count($this->items);
					foreach ($this->items as $i => $item) : 
						$j++;
					if($k== 1){
					echo '<div class="row-fluid margin-bottom">'; } ?>
					<div class="<?php echo $bss;?>">
					<div class="single-team-area"> 
					<div class="single-team <?php if($tlpteam_params->get('image_style')==2){?>tlp-round-picture <?php }?>">
					<tr>
						<td width="70">
							<?php if (!empty($item->profile_image)):?>
					     	<figure>
					     		<img class="tlp-img-responsive " src="<?php echo JURI::root().$image_storiage_path.'/s_'.$item->profile_image; ?> " alt="<?php echo $item->name; ?>" width="60"/>		     		
					     	</figure>	
				         <?php  endif; ?>	
						</td>
						<td valign="middle">
							<?php if($tlpteam_params->get('name_field')==1){?>
				        		<h3><a href="<?php echo JRoute::_('index.php?option=com_tlpteam&view=team&id='.(int) $item->id); ?>">
								<span class="tlp-name"><?php echo $this->escape($item->name); ?></span></a></h3>
							<?php }?>
						</td>
						<td valign="middle">
							<?php if($tlpteam_params->get('position_field')==1){?>
					         	<span class="tlp-position"><?php echo $item->position; ?></span>
					        <?php }?>
						</td>
						<td valign="middle">
							<i class="fa fa-envelope-o"></i> <span><a href="mailto:<?php echo $item->email; ?>"><?php echo $item->email; ?></a></span> 
						</td>
						<td valign="middle">
							<i class="fa fa-phone"></i> <span><a href="tel:<?php echo $item->phoneno; ?>"><?php echo $item->phoneno; ?></a></span>
						</td>
					</tr>
					</div>    	   
				</div>
				</div>
				<?php 		
			     if($k == $display_no || $count == $j){ 
			     	echo '</div>';
			     $k=0;
			 } 
			 $k++; endforeach; $j;?>
			 </table>
			<!-- End Layout 5   -->
			<?php break; 

				case "6": ?>
				<div class="isotop-container">
					<!-- Layout 6 overlay with name, position, short bio, contact info and social icon-->
					<div class="button-group filter-button-group">
					<button data-filter="*">show all</button>
					<?php $category=TlpteamFrontendHelper::getCategoryName();
					foreach ($category as $key => $value) {
						echo '<button data-filter=".'.strtolower($value->title).'">'.$value->title.'</button>';
					}
					?>
					</div>
					<div class="grid">

					<?php $allmembers=TlpteamFrontendHelper::getAllMembers();
				 
					foreach ($allmembers as $key => $item) : 
						
						?>

					<div class="element-item <?php echo strtolower($item->title);?>"> 
					      <?php if (!empty($item->profile_image)):?>
					     	<img class="tlp-img-responsive " src="<?php echo JURI::root().$image_storiage_path.'/m_'.$item->profile_image; ?> " alt="<?php echo $item->name; ?>"/>		     		
					     
				         <?php  endif; ?>			         
				   		   
					</div>
				<?php 		
			     endforeach;?>
			     </div>
			  </div>

			<!-- End Layout 5   -->
			<?php break; ?>
			
			<?php default:?>
			<!-- Layout 1   -->
			<?php
		    $j=0;$k=1;
		    $count = count($this->items);
			foreach ($this->items as $i => $item) : 
				$j++;
			if($k== 1){
			echo '<div class="row-fluid margin-bottom">'; } ?>
			<div class="<?php echo $bss;?>">
			<div class="single-team-area"> 
			   <div class="single-team"> 
			     <?php if (!empty($item->profile_image)):?>
			     	<figure>
			     		<img class="tlp-img-responsive" src="<?php echo JURI::root().$image_storiage_path.'/m_'.$item->profile_image; ?> " alt="<?php echo $item->name; ?>"/>		     		
			     	</figure>	
		         <?php  endif; ?>
		         
		        <figcaption>
				 <div class="overlay"> 
				    <div class="overlay-element"> 
					<a href="#"><i class="fa fa-plus"></i></a>
					  <div class="social-icons">  
					    <ul>
					    	<?php if($item->facebook!=''){?><li ><a href="<?php echo $item->facebook;?>" target="_new"><i class="fa fa-facebook"></i> </a></li><?php }?>
			                <?php if($item->twitter!=''){?><li ><a href="<?php echo $item->twitter;?>" target="_new"><i class="fa fa-twitter"></i></a></li><?php }?>
			                <?php if($item->google_plus!=''){?><li ><a href="<?php echo $item->googleplus;?>" target="_new"><i class="fa fa-google-plus"></i> </a></li><?php }?>
			                <?php if($item->linkedin!=''){?><li ><a href="<?php echo $item->linkedin;?>" target="_new"><i class="fa fa-linkedin"></i></a></li><?php }?>
			                <?php if($item->youtube!=''){?><li ><a href="<?php echo $item->youtube;?>" target="_new"><i class="fa fa-youtube"></i> </a></li><?php }?>
			                <?php if($item->vimeo!=''){?><li ><a href="<?php echo $item->vimeo;?>" target="_new"><i class="fa fa-vimeo"></i></a></li><?php }?>
			                <?php if($item->instagram!=''){?><li ><a href="<?php echo $item->instagram;?>" target="_new"><i class="fa fa-instagram"></i> </a></li><?php }?>
					    </ul>
					  </div>
					</div>
				 </div>
				</figcaption>
			   </div>
			   <article>
				   <div class="tlp-content">
			        	<h3><a href="<?php echo JRoute::_('index.php?option=com_tlpteam&view=team&id='.(int) $item->id); ?>">
						<span class="tlp-name"><?php echo $this->escape($item->name); ?></span></a></h3>
			         	<span class="tlp-position"><?php echo $item->position; ?></span>
				   </div>
				   <div class="short-bio">
					   <p><?php echo $item->short_bio; ?></p>
				   </div>
			   </article>
			</div>
			</div>
			<?php 		
		     if($k == $display_no || $count == $j){ 
		     	echo '</div>';
		     $k=0;
			 } 
			 $k++; endforeach; $j;?>
			<!-- End Layout 1 -->		
			<?php
				break;
		}
		?>

    </div>

	<div class="row-fluid">
     <?php echo $this->pagination->getListFooter(); ?>
	</div>



	<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery.isotope/2.2.2/isotope.pkgd.min.js"></script>
	<script>

	(function($){
		var $tlpiso = $('.grid').isotope({
		  // options
		  itemSelector: '.element-item',
		  layoutMode: 'fitRows'
		});

		 $('.filter-button-group').on( 'click', 'button', function() {
		   var filterValue = $(this).attr('data-filter');
		   $tlpiso.isotope({ filter: filterValue });
		 });
	})(jQuery);


	</script>

	<input type="hidden" name="task" value="" />
	<input type="hidden" name="boxchecked" value="0" />
	<input type="hidden" name="filter_order" value="<?php echo $listOrder; ?>" />
	<input type="hidden" name="filter_order_Dir" value="<?php echo $listDirn; ?>" />
	<?php echo JHtml::_('form.token'); ?>
</form>


                                                                                                                                  views/teams/tmpl/default_isotope8.php                                                               0000705                 00000006515 15242037122 0013760 0                                                                                                    ustar 00                                                                                                                                                                                                                                                       <?php
/**
 * @version     1.1
 * @package     com_tlpteam
 * @copyright   Copyright (C) 2013. All rights reserved.
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 * @author      TechLabPro <techlabpro@gmail.com> - http://www.techlabpro.com
 */
// no direct access
defined('_JEXEC') or die;
extract($this->tlpconfig); 

$html ='';

$html .='<div class="isotop-container">';
  $html .='<div class="button-group filter-button-group">';
  if(!$hide_showall){
		$selected = $mod_selected_category ? null : " class='selected'" ;
		$html .='<button data-filter="*" '.$selected.'>'.JText::_('COM_TLPTEAM_FORM_LBL_BTN_SHOW_ALL').'</button>';
	}
	$category=TlpteamFrontendHelper::getCategoryName($category_id);
	foreach ($category as $key => $value) {
		$selected = null;
		if($value->id == $mod_selected_category){
			$selected = " class='selected'";
		}
		$html .='<button '.$selected.' data-filter=".cat'.strtolower($value->id).'">'.$value->title.'</button>';
	}
  
$html .='</div>';
$html .='<div class="tlp-team-grid">';

$allmembers=TlpteamFrontendHelper::getAllMembers($category_id);

foreach ($allmembers as $key => $item):

if($link_type==2){ 
      $popup=' data-id="'.$item->id.'" class="tlp-single-item-popup"';
  }else{
      $popup= null;
  }
  $detail_link=JRoute::_('index.php?option=com_tlpteam&view=team&id='.(int) $item->id);
		

  		$html .='<div class="team-item cat'.strtolower($item->department).' '. $bss.' '.$item_margin.' tlp-equal-height '.$image_style_class.'">';
	      if (!empty($item->profile_image)):
	      	$html .='<div class="single-team-area">';
			  $html .='<div class="item-img">'; 
			    $html .='<figure>';
			      if($link_detail==1){
	                $html .='<a href="'.$detail_link.'"'.$popup.'><img class="img-responsive '.$gray_scale.'" src="'. JURI::root().$image_storiage_path.'/m_'.$item->profile_image.'" alt="'.$item->name.'"/></a>';
	              }else{
	                $html .='<img class="img-responsive '.$gray_scale.'" src="'.JURI::root().$image_storiage_path.'/m_'.$item->profile_image.'" alt="'.$item->name.'"/>';
	              }                
			    $html .='</figure>';
			  $html .='</div>';
			    $html .='<div class="tlp-overlay">';
			    $html .='<div class="item-info">';
			      $html .='<div class="item-info-top">';
			       if($name_field==1){
	                    if($link_detail==1){
	                        $html .='<h3><a href="'. $detail_link.'"'.$popup.'><span class="tlp-name">'. $item->name.'</span></a></h3>';
	                    }else{
	                        $html .='<h3><span class="tlp-name">'.$item->name.'</span></h3>';
	                    }
                	}
			        $html .='<div class="line"></div>';
			      $html .='</div>';
			      $html .='<div class="item-info-bottom">';
			      if($position_field==1){
	                    if($link_detail==1){
	                        $html .='<div class="tlp-position"><span><a href="'.$detail_link.'" '.$popup.'>'. $item->position .'</a></span></div>';
	                    }else{
	                        $html .='<div class="tlp-position"><span>'. $item->position.'</span></div>';
	                    }
                 	}
			      
			      $html .='</div>';
			    $html .='</div>';
			    $html .='</div>';
			$html .='</div>';
			endif;
		$html .='</div>';
	endforeach;
 	$html .='</div>';
$html .='</div>';

echo $html;                                                                                                                                                                                   views/teams/tmpl/default_layout5.php                                                                0000705                 00000011101 15242037122 0013573 0                                                                                                    ustar 00                                                                                                                                                                                                                                                       <?php
/**
 * @version     1.1
 * @package     com_tlpteam
 * @copyright   Copyright (C) 2013. All rights reserved.
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 * @author      TechLabPro <techlabpro@gmail.com> - http://www.techlabpro.com
 */
// no direct access
defined('_JEXEC') or die;
$detail_link=JRoute::_('index.php?option=com_tlpteam&view=team&id='.(int) $this->item->id);
extract($this->tlpconfig); 
if($link_type==2){ 
        $popup=' data-id="'.$this->item->id.'" class="tlp-single-item-popup"';
    }else{
        $popup= null;
    }
$html ='';

$html .='<tr>
	<td style="width:70px;" class="single-team-area">';
		if (!empty($this->item->profile_image)):
     	$html .='<figure>';
            if($link_detail==1){
                $html .='<a href="'.$detail_link.'"'.$popup.'><img class="img-responsive '.$gray_scale.'" src="'. JURI::root().$image_storiage_path.'/m_'.$this->item->profile_image.'" alt="'.$this->item->name.'"/></a>';
            }else{
                $html .='<img class="img-responsive '.$gray_scale.'" src="'.JURI::root().$image_storiage_path.'/m_'.$this->item->profile_image.'" alt="'.$this->item->name.'"/>';
            } 
        $html .='</figure>';
     endif; 
	$html .='</td>';
	if($name_field==1){
	$html .='<td class="alignmiddle">';
		if($name_field==1){
            if($link_detail==1){
                $html .='<h3><a href="'. $detail_link.'"'.$popup.'><span class="tlp-name">'. $this->item->name.'</span></a></h3>';
            }else{
                $html .='<h3><span class="tlp-name">'.$this->item->name.'</span></h3>';
            }
        }
	$html .='</td>';
	}
	if($position_field==1){
	$html .='<td class="alignmiddle">';
         $html .='<div class="tlp-position">'.$this->item->position.'</div>';
	$html .='</td>';
	}
	if($email_field==1){
	$html .='<td class="alignmiddle">';
		$html .='<i class="fa fa-envelope-o"></i> <span><a href="mailto:'.$this->item->email.'">'.$this->item->email.'</a></span>'; 
	$html .='</td>';
	}
	if($phoneno_field==1){
	$html .='<td class="alignmiddle">';
		$html .='<i class="fa fa-phone"></i> <span>'.$this->item->phoneno.'</span>';
	$html .='</td>';
	}
	if($mobileno_field==1){
	$html .='<td class="alignmiddle">';
		$html .='<i class="fa fa-mobile"></i> <span>'.$this->item->mobileno.'</span>';
	$html .='</td>';
	}
	if($socialicon_field==1){ 
	$html .='<td class="alignmiddle">';
		if($socialicon_field==1){ 
		    $html .='<div class="social-icons">';  
		    	if($this->item->facebook!=''){ 
		    		$html .='<a href="'.$this->item->facebook.'" target="_blank"><i class="fa fa-facebook"></i></a>';
		    	}
                if($this->item->twitter!=''){
                	$html .='<a href="'.$this->item->twitter.'" target="_blank"><i class="fa fa-twitter"></i></a>';
                }
                if($this->item->google_plus!=''){
                	$html .='<a href="'.$this->item->google_plus.'" target="_blank"><i class="fa fa-google-plus"></i></a>';
                }
                if($this->item->linkedin!=''){
                	$html .='<a href="'.$this->item->linkedin.'" target="_blank"><i class="fa fa-linkedin"></i></a>';
                }
                if($this->item->youtube!=''){
                	$html .='<a href="'.$this->item->youtube.'" target="_blank"><i class="fa fa-youtube"></i></a>';
                }
                if($this->item->vimeo!=''){
                	$html .='<a href="'.$this->item->vimeo.'" target="_blank"><i class="fa fa-vimeo"></i></a>';
                }
                if($this->item->instagram!=''){
                	$html .='<a href="'.$this->item->instagram.'" target="_blank"><i class="fa fa-instagram"></i></a>';
                }
                if($this->item->xing!=''){
                	$html .='<a href="'.$this->item->xing.'" target="_blank"><i class="fa fa-xing"></i></a>';
                }
                if($this->item->joomla!=''){
                	$html .='<a href="'.$this->item->joomla.'" target="_blank"><i class="fa fa-joomla"></i></a>';
                }
                if($this->item->wordpress!=''){
                	$html .='<a href="'.$this->item->wordpress.'" target="_blank"><i class="fa fa-wordpress"></i></a>';
                }
                if($this->item->behance!=''){
                	$html .='<a href="'.$this->item->behance.'" target="_blank"><i class="fa fa-behance"></i></a>';
                }
                if($this->item->dribbble!=''){
                	$html .='<a href="'.$this->item->dribbble.'" target="_blank"><i class="fa fa-dribbble"></i></a>';
                }
		    $html .='</div>';
		}
	$html .='</td>';
	}
$html .='</tr>';

echo $html;                                                                                                                                                                                                                                                                                                                                                                                                                                                               views/teams/tmpl/default_layout2.php                                                                0000705                 00000020203 15242037122 0013573 0                                                                                                    ustar 00                                                                                                                                                                                                                                                       <?php
/**
 * @version     1.1
 * @package     com_tlpteam
 * @copyright   Copyright (C) 2013. All rights reserved.
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 * @author      TechLabPro <techlabpro@gmail.com> - http://www.techlabpro.com
 */
// no direct access
defined('_JEXEC') or die;
$detail_link=JRoute::_('index.php?option=com_tlpteam&view=team&id='.(int) $this->item->id);
extract($this->tlpconfig);  
if($link_type==2){ 
        $popup=' data-id="'.$this->item->id.'" class="tlp-single-item-popup"';
    }else{
        $popup= null;
    }

$html ='';

$html .='<div class="single-team-area'. $image_style_class.'">';
    $html .='<div class="'.$image_area.'">';
    if (!empty($this->item->profile_image)):
    	$html .='<div class="tlp-img">';
  	     	$html .='<figure>';
            if($link_detail==1){
                $html .='<a href="'.$detail_link.'"'.$popup.'><img class="img-responsive '.$gray_scale.'" src="'. JURI::root().$image_storiage_path.'/m_'.$this->item->profile_image.'" alt="'.$this->item->name.'"/></a>';
            }else{
                $html .='<img class="img-responsive '.$gray_scale.'" src="'.JURI::root().$image_storiage_path.'/m_'.$this->item->profile_image.'" alt="'.$this->item->name.'"/>';
            } 
  	     	$html .='</figure>';	
    	$html .='</div>'; 
      endif;
    $html .='</div>';
    $html .='<div class="'.$content_area.'">';
    $html .='<article>';

    if(($name_field==1)||($position_field==1)||($shortbio_field==1)){
       
    	$html .='<div class="tlp-content" >';
            if($name_field==1){
                if($link_detail==1){
                    $html .='<h3><a href="'. $detail_link.'"'.$popup.'><span class="tlp-name">'. $this->item->name.'</span></a></h3>';
                }else{
                    $html .='<h3><span class="tlp-name">'.$this->item->name.'</span></h3>';
                }
            }
    		if($position_field==1){
                $html .='<div class="tlp-position">'.$this->item->position.'</div>';
            }
    	   $html .='</div>';
    	   if($shortbio_field==1){
        	   $html .='<div class="short-bio">
               <p>'.substr($this->item->short_bio, 0,$short_description_limit).'</p>
           </div>';
    	   }
       }
    if(($email_field==1)||($phoneno_field==1)||($mobileno_field==1)||($website_field==1)||($location_field==1)){   
        $html .='<div class="contact-info">
            <ul>';
            if(($email_field==1)&&($this->item->email!='')){
                $html .='<li><i class="fa fa-envelope-o"></i><span><a href="mailto:'.$this->item->email.'">'.$this->item->email.'</a></span> </li>';
            }
            if(($website_field==1)&&($this->item->personal_website!='')){
                $html .='<li><i class="fa fa-globe"></i><span><a href="'.$this->item->personal_website.'" target="_blank">'.$this->item->personal_website.'</a></span> </li>';
            }
            if(($phoneno_field==1)&&($this->item->phoneno!='')){
                $html .='<li><i class="fa fa-phone"></i><span>'.$this->item->phoneno.'</span></li>';
            }
            if(($mobileno_field==1)&&($this->item->mobileno!='')){
                $html .='<li><i class="fa fa-mobile"></i><span>'.$this->item->mobileno.'</span></li>';
            }
            if(($location_field==1)&&($this->item->location!='')){
                $html .='<li><i class="fa fa-map-marker"></i><span>'.$this->item->location.'</span></li>';
            }
            $html .='</ul>';
        $html .='</div>';
    	}
        if($skill_field==1){ 
            $html .='<div class="tlp-team-skill">';
            if(($skill_field==1)&&(($this->item->skill1_no)>0)){
                $html .='<div class="skill_name">'.$this->item->skill1.'</div>';
                $html .='<div class="skill-prog"><a class="tlp-tooltip" data-toggle="tooltip" data-placement="top" title="" data-original-title="'.$this->item->skill1_no.'%'.'"><div class="fill" data-progress-animation='.$this->item->skill1_no.'></div></a></div>';
            }
            if(($skill_field==1)&&(($this->item->skill2_no)>0)){
                $html .='<div class="skill_name">'.$this->item->skill2.'</div>';
                $html .='<div class="skill-prog"><a class="tlp-tooltip" data-toggle="tooltip" data-placement="top" title="" data-original-title="'.$this->item->skill2_no.'%'.'"><div class="fill" data-progress-animation='.$this->item->skill2_no.'></div></a></div>';
            }
            if(($skill_field==1)&&(($this->item->skill3_no)>0)){
                $html .='<div class="skill_name">'.$this->item->skill3.'</div>';
                $html .='<div class="skill-prog"><a class="tlp-tooltip" data-toggle="tooltip" data-placement="top" title="" data-original-title="'.$this->item->skill3_no.'%'.'"><div class="fill" data-progress-animation='.$this->item->skill3_no.'></div></a></div>';
            }
            if(($skill_field==1)&&(($this->item->skill4_no)>0)){
                $html .='<div class="skill_name">'.$this->item->skill4.'</div>';
                $html .='<div class="skill-prog"><a class="tlp-tooltip" data-toggle="tooltip" data-placement="top" title="" data-original-title="'.$this->item->skill4_no.'%'.'"><div class="fill" data-progress-animation='.$this->item->skill4_no.'></div></a></div>';
            }
            if(($skill_field==1)&&(($this->item->skill5_no)>0)){
                $html .='<div class="skill_name">'.$this->item->skill5.'</div>';
                $html .='<div class="skill-prog"><a class="tlp-tooltip" data-toggle="tooltip" data-placement="top" title="" data-original-title="'.$this->item->skill5_no.'%'.'"><div class="fill" data-progress-animation='.$this->item->skill5_no.'></div></a></div>';
            }
        $html .='</div>';
        }
        if($socialicon_field==1){ 
            $html .='<div class="social-icons">';  
                    if($this->item->facebook!=''){ 
                        $html .='<a href="'.$this->item->facebook.'" target="_blank"><i class="fa fa-facebook"></i></a>';
                    }
                    if($this->item->twitter!=''){
                        $html .='<a href="'.$this->item->twitter.'" target="_blank"><i class="fa fa-twitter"></i></a>';
                    }
                    if($this->item->google_plus!=''){
                        $html .='<a href="'.$this->item->google_plus.'" target="_blank"><i class="fa fa-google-plus"></i></a>';
                    }
                    if($this->item->linkedin!=''){
                        $html .='<a href="'.$this->item->linkedin.'" target="_blank"><i class="fa fa-linkedin"></i></a>';
                    }
                    if($this->item->youtube!=''){
                        $html .='<a href="'.$this->item->youtube.'" target="_blank"><i class="fa fa-youtube"></i></a>';
                    }
                    if($this->item->vimeo!=''){
                        $html .='<a href="'.$this->item->vimeo.'" target="_blank"><i class="fa fa-vimeo"></i></a>';
                    }
                    if($this->item->instagram!=''){
                        $html .='<a href="'.$this->item->instagram.'" target="_blank"><i class="fa fa-instagram"></i></a>';
                    }
                    if($this->item->xing!=''){
                        $html .='<a href="'.$this->item->xing.'" target="_blank"><i class="fa fa-xing"></i></a>';
                    }
                    if($this->item->joomla!=''){
                        $html .='<a href="'.$this->item->joomla.'" target="_blank"><i class="fa fa-joomla"></i></a>';
                    }
                    if($this->item->wordpress!=''){
                        $html .='<a href="'.$this->item->wordpress.'" target="_blank"><i class="fa fa-wordpress"></i></a>';
                    }
                    if($this->item->behance!=''){
                        $html .='<a href="'.$this->item->behance.'" target="_blank"><i class="fa fa-behance"></i></a>';
                    }
                    if($this->item->dribbble!=''){
                        $html .='<a href="'.$this->item->dribbble.'" target="_blank"><i class="fa fa-dribbble"></i></a>';
                    }
                $html .='</div>';
        }
    $html .='</article>';
    $html .='</div>';
$html .='</div>';
echo $html;                                                                                                                                                                                                                                                                                                                                                                                             views/teams/tmpl/default_layout11.php                                                               0000705                 00000010335 15242037122 0013660 0                                                                                                    ustar 00                                                                                                                                                                                                                                                       <?php
/**
 * @version     1.1
 * @package     com_tlpteam
 * @copyright   Copyright (C) 2013. All rights reserved.
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 * @author      TechLabPro <techlabpro@gmail.com> - http://www.techlabpro.com
 */
// no direct access
defined('_JEXEC') or die;
$detail_link=JRoute::_('index.php?option=com_tlpteam&view=team&id='.(int) $this->item->id);
extract($this->tlpconfig); 
if($link_type==2){ 
        $popup=' data-id="'.$this->item->id.'" class="tlp-single-item-popup"';
    }else{
        $popup= null;
    }

$html ='';


if (!empty($this->item->profile_image)):
$html .='<div class="single-team-area'. $image_style_class.'">';
        $html .='<figure>';
        if($link_detail==1){
            $html .='<a href="'.$detail_link.'"'.$popup.'><img class="img-responsive '.$gray_scale.'" src="'. JURI::root().$image_storiage_path.'/m_'.$this->item->profile_image.'" alt="'.$this->item->name.'"/></a>';
            }else{
                $html .='<img class="img-responsive '.$gray_scale.'" src="'.JURI::root().$image_storiage_path.'/m_'.$this->item->profile_image.'" alt="'.$this->item->name.'"/>';
            }             
        $html .='</figure>';
    $html .='<div class="tlp-overlay">';
        if($socialicon_field==1){ 
            $html .='<div class="social-icons">';  
                if($this->item->facebook!=''){ 
                  $html .='<a href="'.$this->item->facebook.'" target="_blank"><i class="fa fa-facebook"></i></a>';
                }
                if($this->item->twitter!=''){
                  $html .='<a href="'.$this->item->twitter.'" target="_blank"><i class="fa fa-twitter"></i></a>';
                }
                if($this->item->google_plus!=''){
                  $html .='<a href="'.$this->item->google_plus.'" target="_blank"><i class="fa fa-google-plus"></i></a>';
                }
                if($this->item->linkedin!=''){
                  $html .='<a href="'.$this->item->linkedin.'" target="_blank"><i class="fa fa-linkedin"></i></a>';
                }
                if($this->item->youtube!=''){
                  $html .='<a href="'.$this->item->youtube.'" target="_blank"><i class="fa fa-youtube"></i></a>';
                }
                if($this->item->vimeo!=''){
                  $html .='<a href="'.$this->item->vimeo.'" target="_blank"><i class="fa fa-vimeo"></i></a>';
                }
                if($this->item->instagram!=''){
                  $html .='<a href="'.$this->item->instagram.'" target="_blank"><i class="fa fa-instagram"></i></a>';
                }
                if($this->item->xing!=''){
                  $html .='<a href="'.$this->item->xing.'" target="_blank"><i class="fa fa-xing"></i></a>';
                }
                if($this->item->joomla!=''){
                  $html .='<a href="'.$this->item->joomla.'" target="_blank"><i class="fa fa-joomla"></i></a>';
                }
                if($this->item->wordpress!=''){
                  $html .='<a href="'.$this->item->wordpress.'" target="_blank"><i class="fa fa-wordpress"></i></a>';
                }
                if($this->item->behance!=''){
                  $html .='<a href="'.$this->item->behance.'" target="_blank"><i class="fa fa-behance"></i></a>';
                }
                if($this->item->dribbble!=''){
                  $html .='<a href="'.$this->item->dribbble.'" target="_blank"><i class="fa fa-dribbble"></i></a>';
                }
            $html .='</div>';
        }
    $html .='</div>';
    $html .='<div class="tlp-title">';
        if($name_field==1){
            if($link_detail==1){
                $html .='<h3><a href="'. $detail_link.'"'.$popup.'><span class="tlp-name">'. $this->item->name.'</span></a></h3>';
            }else{
                $html .='<h3><span class="tlp-name">'.$this->item->name.'</span></h3>';
            }
          }
        if($position_field==1){
          if($link_detail==1){
                $html .='<div class="tlp-position"><a href="'.$detail_link.'" '.$popup.'>'. $this->item->position .'</a></div>';
              }else{
                $html .='<div class="tlp-position">'. $this->item->position.'</div>';
              }
          }
    $html .='</div>';
$html .='</div>';
endif;
echo $html;                                                                                                                                                                                                                                                                                                   views/teams/tmpl/default_isotope9.php                                                               0000705                 00000022734 15242037122 0013762 0                                                                                                    ustar 00                                                                                                                                                                                                                                                       <?php
/**
 * @version     2.0
 * @package     com_tlpteam
 * @copyright   Copyright (C) 2013. All rights reserved.
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 * @author      TechLabPro <techlabpro@gmail.com> - http://www.techlabpro.com
 */
// no direct access
defined('_JEXEC') or die;
extract($this->tlpconfig);   

$html ='';

$html .='<div class="isotop-container">';
  $html .='<div class="button-group filter-button-group">';
  if(!$hide_showall){
    $selected = $mod_selected_category ? null : " class='selected'" ;
    $html .='<button data-filter="*" '.$selected.'>'.JText::_('COM_TLPTEAM_FORM_LBL_BTN_SHOW_ALL').'</button>';
  }
  $category=TlpteamFrontendHelper::getCategoryName($category_id);
  foreach ($category as $key => $value) {
    $selected = null;
    if($value->id == $mod_selected_category){
      $selected = " class='selected'";
    }
    $html .='<button '.$selected.' data-filter=".cat'.strtolower($value->id).'">'.$value->title.'</button>';
  }
  
  $html .='</div>';
	$html .='<div class="tlp-team-grid">';

	$allmembers=TlpteamFrontendHelper::getAllMembers($category_id);

	foreach ($allmembers as $key => $item) : 
    if($link_type==2){ 
          $popup=' data-id="'.$item->id.'" class="tlp-single-item-popup"';
      }else{
          $popup= null;
      }
	   $detail_link=JRoute::_('index.php?option=com_tlpteam&view=team&id='.(int) $item->id);
		

  	$html .='<div class="team-item cat'.strtolower($item->department).' '. $bss.' '.$item_margin.' tlp-equal-height '.$image_style_class.'">';
      	$html .='<div class="single-team-area">
            <div class="single-team">';
           if (!empty($item->profile_image)):
            if($link_detail==1){
                      $html .='<a href="'.$detail_link.'"'.$popup.'><img class="img-responsive '.$gray_scale.' " src="'. JURI::root().$image_storiage_path.'/m_'.$item->profile_image.'" alt="'.$item->name.'"/></a>';
                  }else{
                      $html .='<img class="img-responsive '.$gray_scale.'" src="'.JURI::root().$image_storiage_path.'/m_'.$item->profile_image.'" alt="'.$item->name.'"/>';
                  }
              endif; 
              $html .='<div class="overlay"> 
                  <div class="overlay-element">';
                     if($link_detail==1){
                          $html .='<span class="detail-link"><a href="'.$detail_link.'"'.$popup.' ><i class="fa fa-plus"></i></a></span>';
                      }
                    if($socialicon_field==1){ 
                      $html .='<div class="social-icons">';  
                          if($item->facebook!=''){ 
                              $html .='<a href="'.$item->facebook.'" target="_blank"><i class="fa fa-facebook"></i></a>';
                          }
                          if($item->twitter!=''){
                              $html .='<a href="'.$item->twitter.'" target="_blank"><i class="fa fa-twitter"></i></a>';
                          }
                          if($item->google_plus!=''){
                              $html .='<a href="'.$item->google_plus.'" target="_blank"><i class="fa fa-google-plus"></i></a>';
                          }
                          if($item->linkedin!=''){
                              $html .='<a href="'.$item->linkedin.'" target="_blank"><i class="fa fa-linkedin"></i></a>';
                          }
                          if($item->youtube!=''){
                              $html .='<a href="'.$item->youtube.'" target="_blank"><i class="fa fa-youtube"></i></a>';
                          }
                          if($item->vimeo!=''){
                              $html .='<a href="'.$item->vimeo.'" target="_blank"><i class="fa fa-vimeo"></i></a>';
                          }
                          if($item->instagram!=''){
                              $html .='<a href="'.$item->instagram.'" target="_blank"><i class="fa fa-instagram"></i></a>';
                          }
                          if($item->xing!=''){
                              $html .='<a href="'.$item->xing.'" target="_blank"><i class="fa fa-xing"></i></a>';
                          }
                          if($item->joomla!=''){
                              $html .='<a href="'.$item->joomla.'" target="_blank"><i class="fa fa-joomla"></i></a>';
                          }
                          if($item->wordpress!=''){
                              $html .='<a href="'.$item->wordpress.'" target="_blank"><i class="fa fa-wordpress"></i></a>';
                          }
                          if($item->behance!=''){
                              $html .='<a href="'.$item->behance.'" target="_blank"><i class="fa fa-behance"></i></a>';
                          }
                          if($item->dribbble!=''){
                              $html .='<a href="'.$item->dribbble.'" target="_blank"><i class="fa fa-dribbble"></i></a>';
                          }
                      $html .='</div>';
                      }
                  $html .='</div>';
              $html .='</div>';
         $html .='</div>';
         $html .='<article>';
         if(($name_field==1)||($position_field==1)){
           $html .='<div class="tlp-content-layout1">';
            if($name_field==1){
                  if($link_detail==1){
                      $html .='<h3><a href="'. $detail_link.'"'.$popup.'><span class="tlp-name">'. $item->name.'</span></a></h3>';
                  }else{
                      $html .='<h3><span class="tlp-name">'.$item->name.'</span></h3>';
                  }
              }
          if($position_field==1){
                $html .='<div class="tlp-position">'.$item->position.'</div>';
              }
           $html .='</div>';
          }
        if($shortbio_field==1){
           $html .='<div class="short-bio">
             <p>'.substr($item->short_bio, 0,$short_description_limit).'</p>
           </div>';
           }
        if(($email_field==1)||($phoneno_field==1)||($mobileno_field==1)||($website_field==1)||($location_field==1)){
          $html .='<div class="contact-info">
                  <ul>';
                  if(($email_field==1)&&($item->email!='')){
                    $html .='<li><i class="fa fa-envelope-o"></i><span><a href="mailto:'.$item->email.'">'.$item->email.'</a></span> </li>';
                  }
                  if(($website_field==1)&&($item->personal_website!='')){
                    $html .='<li><i class="fa fa-globe"></i><span><a href="'.$item->personal_website.'" target="_blank">'.$item->personal_website.'</a></span> </li>';
                  }
                  if(($phoneno_field==1)&&($item->phoneno!='')){
                      $html .='<li><i class="fa fa-phone"></i><span>'.$item->phoneno.'</span></li>';
                  }
                  if(($mobileno_field==1)&&($item->mobileno!='')){
                    $html .='<li><i class="fa fa-mobile"></i><span>'.$item->mobileno.'</span></li>';
                  }
                  if(($location_field==1)&&($item->location!='')){
                    $html .='<li><i class="fa fa-map-marker"></i><span>'.$item->location.'</span></li>';
                  }
                  $html .='</ul>';
              $html .='</div>';
        }
        if($skill_field==1){ 
              $html .='<div class="tlp-team-skill">';
                  if(($skill_field==1)&&(($item->skill1_no)>0)){
                      $html .='<div class="skill_name">'.$item->skill1.'</div>';
                      $html .='<div class="skill-prog"><a class="tlp-tooltip" data-toggle="tooltip" data-placement="top" title="" data-original-title="'.$item->skill1_no.'%'.'"><div class="fill" data-progress-animation='.$item->skill1_no.'></div></a></div>';
                  }
                  if(($skill_field==1)&&(($item->skill2_no)>0)){
                      $html .='<div class="skill_name">'.$item->skill2.'</div>';
                      $html .='<div class="skill-prog"><a class="tlp-tooltip" data-toggle="tooltip" data-placement="top" title="" data-original-title="'.$item->skill2_no.'%'.'"><div class="fill" data-progress-animation='.$item->skill2_no.'></div></a></div>';
                  }
                  if(($skill_field==1)&&(($item->skill3_no)>0)){
                      $html .='<div class="skill_name">'.$item->skill3.'</div>';
                      $html .='<div class="skill-prog"><a class="tlp-tooltip" data-toggle="tooltip" data-placement="top" title="" data-original-title="'.$item->skill3_no.'%'.'"><div class="fill" data-progress-animation='.$item->skill3_no.'></div></a></div>';
                  }
                  if(($skill_field==1)&&(($item->skill4_no)>0)){
                      $html .='<div class="skill_name">'.$item->skill4.'</div>';
                      $html .='<div class="skill-prog"><a class="tlp-tooltip" data-toggle="tooltip" data-placement="top" title="" data-original-title="'.$item->skill4_no.'%'.'"><div class="fill" data-progress-animation='.$item->skill4_no.'></div></a></div>';
                  }
                  if(($skill_field==1)&&(($item->skill5_no)>0)){
                      $html .='<div class="skill_name">'.$item->skill5.'</div>';
                      $html .='<div class="skill-prog"><a class="tlp-tooltip" data-toggle="tooltip" data-placement="top" title="" data-original-title="'.$item->skill5_no.'%'.'"><div class="fill" data-progress-animation='.$item->skill5_no.'></div></a></div>';
                }
              $html .='</div>';
          }
          $html .='</article>';
      $html .='</div>';
  	$html .='</div>';
endforeach;
 $html .='</div>';
$html .='</div>';

echo $html;                                    views/teams/tmpl/default_isotope7.php                                                               0000705                 00000013137 15242037122 0013755 0                                                                                                    ustar 00                                                                                                                                                                                                                                                       <?php
/**
 * @version     1.1
 * @package     com_tlpteam
 * @copyright   Copyright (C) 2013. All rights reserved.
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 * @author      TechLabPro <techlabpro@gmail.com> - http://www.techlabpro.com
 */
// no direct access
defined('_JEXEC') or die;
extract($this->tlpconfig); 

$html ='';

$html .='<div class="isotop-container">';
  $html .='<div class="button-group filter-button-group">';
  if(!$hide_showall){
		$selected = $mod_selected_category ? null : " class='selected'" ;
		$html .='<button data-filter="*" '.$selected.'>'.JText::_('COM_TLPTEAM_FORM_LBL_BTN_SHOW_ALL').'</button>';
	}
	$category=TlpteamFrontendHelper::getCategoryName($category_id);
	foreach ($category as $key => $value) {
		$selected = null;
		if($value->id == $mod_selected_category){
			$selected = " class='selected'";
		}
		$html .='<button '.$selected.' data-filter=".cat'.strtolower($value->id).'">'.$value->title.'</button>';
	}
  
$html .='</div>';
$html .='<div class="tlp-team-grid">';

$allmembers=TlpteamFrontendHelper::getAllMembers($category_id);

foreach ($allmembers as $key => $item):

if($link_type==2){ 
      $popup=' data-id="'.$item->id.'" class="tlp-single-item-popup"';
  }else{
      $popup= null;
  }
  $detail_link=JRoute::_('index.php?option=com_tlpteam&view=team&id='.(int) $item->id);
		

  	$html .='<div class="team-item cat'.strtolower($item->department).' '. $bss.' '.$item_margin.' tlp-equal-height '.$image_style_class.'">';
	      if (!empty($item->profile_image)):
	      	$html .='<div class="single-team-area">';
			    $html .='<figure>';
			    if($link_detail==1){
	                $html .='<a href="'.$detail_link.'"'.$popup.'><img class="img-responsive '.$gray_scale.'" src="'. JURI::root().$image_storiage_path.'/m_'.$item->profile_image.'" alt="'.$item->name.'"/></a>';
	              }else{
	                $html .='<img class="img-responsive '.$gray_scale.'" src="'.JURI::root().$image_storiage_path.'/m_'.$item->profile_image.'" alt="'.$item->name.'"/>';
	              }               
			    $html .='</figure>';
			    $html .='<div class="tlp-overlay">';
			      $html .='<div class="item-info">';
			       if($name_field==1){
	                    if($link_detail==1){
	                        $html .='<h3><a href="'. $detail_link.'"'.$popup.'><span class="tlp-name">'. $item->name.'</span></a></h3>';
	                    }else{
	                        $html .='<h3><span class="tlp-name">'.$item->name.'</span></h3>';
	                    }
                	}
			        $html .='<div class="line"></div>';
			      if($position_field==1){
	                    if($link_detail==1){
	                        $html .='<div class="tlp-position"><span><a href="'.$detail_link.'" '.$popup.'>'. $item->position .'</a></span></div>';
	                    }else{
	                        $html .='<div class="tlp-position"><span>'. $item->position.'</span></div>';
	                    }
                 	}
                 	if($shortbio_field==1){
			        	if($link_detail==1){
						   $html .='<div class="short-bio">
							   <p><a href="'.$detail_link.'" '.$popup.'>'.substr($item->short_bio, 0,$short_description_limit).'</a></p>
						   </div>';
						}else{
							$html .='<div class="short-bio">
							   <p>'.substr($item->short_bio, 0,$short_description_limit).'</p>
						   </div>';
						}
			   		}
			      if($socialicon_field==1){ 
			      		$html .='<p class="social-icons">';  
			        	    if($item->facebook!=''){ 
					              $html .='<a href="'.$item->facebook.'" target="_blank"><i class="fa fa-facebook"></i></a>';
					            }
				            if($item->twitter!=''){
				              $html .='<a href="'.$item->twitter.'" target="_blank"><i class="fa fa-twitter"></i></a>';
				            }
				            if($item->google_plus!=''){
				              $html .='<a href="'.$item->google_plus.'" target="_blank"><i class="fa fa-google-plus"></i></a>';
				            }
				            if($item->linkedin!=''){
				              $html .='<a href="'.$item->linkedin.'" target="_blank"><i class="fa fa-linkedin"></i></a>';
				            }
				            if($item->youtube!=''){
				              $html .='<a href="'.$item->youtube.'" target="_blank"><i class="fa fa-youtube"></i></a>';
				            }
				            if($item->vimeo!=''){
				              $html .='<a href="'.$item->vimeo.'" target="_blank"><i class="fa fa-vimeo"></i></a>';
				            }
				            if($item->instagram!=''){
				              $html .='<a href="'.$item->instagram.'" target="_blank"><i class="fa fa-instagram"></i></a>';
				            }
				            if($item->xing!=''){
				              $html .='<a href="'.$item->xing.'" target="_blank"><i class="fa fa-xing"></i></a>';
				            }
				            if($item->joomla!=''){
				              $html .='<a href="'.$item->joomla.'" target="_blank"><i class="fa fa-joomla"></i></a>';
				            }
				            if($item->wordpress!=''){
				              $html .='<a href="'.$item->wordpress.'" target="_blank"><i class="fa fa-wordpress"></i></a>';
				            }
				            if($item->behance!=''){
				              $html .='<a href="'.$item->behance.'" target="_blank"><i class="fa fa-behance"></i></a>';
				            }
				            if($item->dribbble!=''){
				              $html .='<a href="'.$item->dribbble.'" target="_blank"><i class="fa fa-dribbble"></i></a>';
				            }
			      		$html .='</p>';
			      	}
			      $html .='</div>';
			    $html .='</div>';
			$html .='</div>';
			endif;
		$html .='</div>';
	endforeach;
 	$html .='</div>';
$html .='</div>';

echo $html;                                                                                                                                                                                                                                                                                                                                                                                                                                 views/teams/tmpl/default_isotope4.php                                                               0000705                 00000012761 15242037122 0013754 0                                                                                                    ustar 00                                                                                                                                                                                                                                                       <?php
/**
 * @version     1.1
 * @package     com_tlpteam
 * @copyright   Copyright (C) 2013. All rights reserved.
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 * @author      TechLabPro <techlabpro@gmail.com> - http://www.techlabpro.com
 */
// no direct access
defined('_JEXEC') or die;
extract($this->tlpconfig); 
$html ='';

$html .='<div class="isotop-container">';
  $html .='<div class="button-group filter-button-group">';
  if(!$hide_showall){
		$selected = $mod_selected_category ? null : " class='selected'" ;
		$html .='<button data-filter="*" '.$selected.'>'.JText::_('COM_TLPTEAM_FORM_LBL_BTN_SHOW_ALL').'</button>';
	}
	$category=TlpteamFrontendHelper::getCategoryName($category_id);
	foreach ($category as $key => $value) {
		$selected = null;
		if($value->id == $mod_selected_category){
			$selected = " class='selected'";
		}
		$html .='<button '.$selected.' data-filter=".cat'.strtolower($value->id).'">'.$value->title.'</button>';
	}
  
$html .='</div>';
$html .='<div class="tlp-team-grid">';

$allmembers=TlpteamFrontendHelper::getAllMembers($category_id);

foreach ($allmembers as $key => $item) : 

if($link_type==2){ 
      $popup=' data-id="'.$item->id.'" class="tlp-single-item-popup"';
  }else{
      $popup= null;
  }
  $detail_link=JRoute::_('index.php?option=com_tlpteam&view=team&id='.(int) $item->id);
		

  	$html .='<div class="team-item cat'.strtolower($item->department).' '. $bss.' '.$item_margin.' tlp-equal-height '.$image_style_class.'">';
	      if (!empty($item->profile_image)):
	      	$html .='<div class="single-team-area">'; 
			   $html .='<div class="single-team">'; 
			     if (!empty($item->profile_image)):
			     	$html .='<figure class="tlp-team-item">';
			     		if($link_detail==1){
     		                $html .='<a href="'.$detail_link.'"'.$popup.'><img class="img-responsive '.$gray_scale.'" src="'. JURI::root().$image_storiage_path.'/m_'.$item->profile_image.'" alt="'.$item->name.'"/></a>';
     		              }else{
     		                $html .='<img class="img-responsive '.$gray_scale.'" src="'.JURI::root().$image_storiage_path.'/m_'.$item->profile_image.'" alt="'.$item->name.'"/>';
     		              }  		     		
			            $html .='<figcaption>';
			                if($socialicon_field==1){ 
		            	    $html .='<div class="social-icons">';  
		            		    $html .='<p class="tpl-social">';
		            		    if($item->facebook!=''){ 
					              $html .='<a href="'.$item->facebook.'" target="_blank"><i class="fa fa-facebook"></i></a>';
					            }
					            if($item->twitter!=''){
					              $html .='<a href="'.$item->twitter.'" target="_blank"><i class="fa fa-twitter"></i></a>';
					            }
					            if($item->google_plus!=''){
					              $html .='<a href="'.$item->google_plus.'" target="_blank"><i class="fa fa-google-plus"></i></a>';
					            }
					            if($item->linkedin!=''){
					              $html .='<a href="'.$item->linkedin.'" target="_blank"><i class="fa fa-linkedin"></i></a>';
					            }
					            if($item->youtube!=''){
					              $html .='<a href="'.$item->youtube.'" target="_blank"><i class="fa fa-youtube"></i></a>';
					            }
					            if($item->vimeo!=''){
					              $html .='<a href="'.$item->vimeo.'" target="_blank"><i class="fa fa-vimeo"></i></a>';
					            }
					            if($item->instagram!=''){
					              $html .='<a href="'.$item->instagram.'" target="_blank"><i class="fa fa-instagram"></i></a>';
					            }
					            if($item->xing!=''){
					              $html .='<a href="'.$item->xing.'" target="_blank"><i class="fa fa-xing"></i></a>';
					            }
					            if($item->joomla!=''){
					              $html .='<a href="'.$item->joomla.'" target="_blank"><i class="fa fa-joomla"></i></a>';
					            }
					            if($item->wordpress!=''){
					              $html .='<a href="'.$item->wordpress.'" target="_blank"><i class="fa fa-wordpress"></i></a>';
					            }
					            if($item->behance!=''){
					              $html .='<a href="'.$item->behance.'" target="_blank"><i class="fa fa-behance"></i></a>';
					            }
					            if($item->dribbble!=''){
					              $html .='<a href="'.$item->dribbble.'" target="_blank"><i class="fa fa-dribbble"></i></a>';
					            }
		            		    $html .='</p>';
		            		$html .='</div>';  
			                }   
			        	    $html .='<div class="tlp-content" >';
		                  	   	if($name_field==1){
					            if($link_detail==1){
					                $html .='<h3><a href="'. $detail_link.'"'.$popup.'><span class="tlp-name">'. $item->name.'</span></a></h3>';
					            }else{
					                $html .='<h3><span class="tlp-name">'.$item->name.'</span></h3>';
					            }
					          }
	      	                if($position_field==1){
				                $html .='<div class="tlp-position">'.$item->position.'</div>';
				            }
			                $html .='</div>';
			                if($shortbio_field==1){
					           $html .='<div class="short-bio">
					               <p>'.substr($item->short_bio, 0,$short_description_limit).'</p>
					           </div>';
					           }
			        	$html .='</figcaption>';
			         $html .='</figure>';	
			    endif; 
			   $html .='</div>';
			$html .='</div>';
        endif; 	
		$html .='</div>';
	endforeach;
 	$html .='</div>';
$html .='</div>';

echo $html;               views/teams/tmpl/default_isotope3.php                                                               0000705                 00000012365 15242037122 0013753 0                                                                                                    ustar 00                                                                                                                                                                                                                                                       <?php
/**
 * @version     2.0
 * @package     com_tlpteam
 * @copyright   Copyright (C) 2013. All rights reserved.
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 * @author      TechLabPro <techlabpro@gmail.com> - http://www.techlabpro.com
 */
// no direct access
defined('_JEXEC') or die;
extract($this->tlpconfig); 
$html ='';

$html .='<div class="isotop-container">';
  $html .='<div class="button-group filter-button-group">';
  if(!$hide_showall){
		$selected = $mod_selected_category ? null : " class='selected'" ;
		$html .='<button data-filter="*" '.$selected.'>'.JText::_('COM_TLPTEAM_FORM_LBL_BTN_SHOW_ALL').'</button>';
	}
	$category=TlpteamFrontendHelper::getCategoryName($category_id);
	foreach ($category as $key => $value) {
		$selected = null;
		if($value->id == $mod_selected_category){
			$selected = " class='selected'";
		}
		$html .='<button '.$selected.' data-filter=".cat'.strtolower($value->id).'">'.$value->title.'</button>';
	}
  
$html .='</div>';
$html .='<div class="tlp-team-grid">';

$allmembers=TlpteamFrontendHelper::getAllMembers($category_id);

foreach ($allmembers as $key => $item) : 

if($link_type==2){ 
      $popup=' data-id="'.$item->id.'" class="tlp-single-item-popup"';
  }else{
      $popup= null;
  }
  $detail_link=JRoute::_('index.php?option=com_tlpteam&view=team&id='.(int) $item->id);
		

  	$html .='<div class="team-item cat'.strtolower($item->department).' '. $bss.' '.$item_margin.' tlp-equal-height '.$image_style_class.'">';
	      if (!empty($item->profile_image)):
	      	$html .='<div class="single-team-area">';
		      	$html .='<figure>';
		      	    if($link_detail==1){
		                $html .='<a href="'.$detail_link.'"'.$popup.'><img class="img-responsive '.$gray_scale.'" src="'. JURI::root().$image_storiage_path.'/m_'.$item->profile_image.'" alt="'.$item->name.'"/></a>';
		              }else{
		                $html .='<img class="img-responsive '.$gray_scale.'" src="'.JURI::root().$image_storiage_path.'/m_'.$item->profile_image.'" alt="'.$item->name.'"/>';
		              }               
	      	        $html .='<figcaption>';
	      	            $html .='<div class="tlp-overlay">';
      	             	   	if($name_field==1){
					            if($link_detail==1){
					                $html .='<h3><a href="'. $detail_link.'"'.$popup.'><span class="tlp-name">'. $item->name.'</span></a></h3>';
					            }else{
					                $html .='<h3><span class="tlp-name">'.$item->name.'</span></h3>';
					            }
					          }
	      	                if($position_field==1){
				                $html .='<p class="tlp-position">'.$item->position.'</p>';
				            }
	      	                if($shortbio_field==1){
					           $html .='<div class="short-bio">
					               <p>'.substr($item->short_bio, 0,$short_description_limit).'</p>
					           </div>';
					           }
  	                       if($socialicon_field==1){ 
					          $html .='<p class="social-icons">';  
					            if($item->facebook!=''){ 
					              $html .='<a href="'.$item->facebook.'" target="_blank"><i class="fa fa-facebook"></i></a>';
					            }
					            if($item->twitter!=''){
					              $html .='<a href="'.$item->twitter.'" target="_blank"><i class="fa fa-twitter"></i></a>';
					            }
					            if($item->google_plus!=''){
					              $html .='<a href="'.$item->google_plus.'" target="_blank"><i class="fa fa-google-plus"></i></a>';
					            }
					            if($item->linkedin!=''){
					              $html .='<a href="'.$item->linkedin.'" target="_blank"><i class="fa fa-linkedin"></i></a>';
					            }
					            if($item->youtube!=''){
					              $html .='<a href="'.$item->youtube.'" target="_blank"><i class="fa fa-youtube"></i></a>';
					            }
					            if($item->vimeo!=''){
					              $html .='<a href="'.$item->vimeo.'" target="_blank"><i class="fa fa-vimeo"></i></a>';
					            }
					            if($item->instagram!=''){
					              $html .='<a href="'.$item->instagram.'" target="_blank"><i class="fa fa-instagram"></i></a>';
					            }
					            if($item->xing!=''){
					              $html .='<a href="'.$item->xing.'" target="_blank"><i class="fa fa-xing"></i></a>';
					            }
					            if($item->joomla!=''){
					              $html .='<a href="'.$item->joomla.'" target="_blank"><i class="fa fa-joomla"></i></a>';
					            }
					            if($item->wordpress!=''){
					              $html .='<a href="'.$item->wordpress.'" target="_blank"><i class="fa fa-wordpress"></i></a>';
					            }
					            if($item->behance!=''){
					              $html .='<a href="'.$item->behance.'" target="_blank"><i class="fa fa-behance"></i></a>';
					            }
					            if($item->dribbble!=''){
					              $html .='<a href="'.$item->dribbble.'" target="_blank"><i class="fa fa-dribbble"></i></a>';
					            }
					          $html .='</p>';
					        }
	      	            $html .='</div>';
	      	        $html .='</figcaption>'; 
	      	    $html .='</figure>';    
	      	$html .='</div>';
        endif; 	
	$html .='</div>';
endforeach;
 $html .='</div>';
$html .='</div>';

echo $html;                                                                                                                                                                                                                                                                           views/teams/tmpl/default_layout1.php                                                                0000705                 00000020124 15242037122 0013574 0                                                                                                    ustar 00                                                                                                                                                                                                                                                       <?php
/**
 * @version     1.1
 * @package     com_tlpteam
 * @copyright   Copyright (C) 2013. All rights reserved.
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 * @author      TechLabPro <techlabpro@gmail.com> - http://www.techlabpro.com
 */
// no direct access
defined('_JEXEC') or die;
$detail_link=JRoute::_('index.php?option=com_tlpteam&view=team&id='.(int) $this->item->id);
extract($this->tlpconfig);
if($link_type==2){ 
        $popup=' data-id="'.$this->item->id.'" class="tlp-single-item-popup"';
    }else{
        $popup= null;
    }
$html ='';
$html .='<div class="single-team-area">
    <div class="single-team">';
     if (!empty($this->item->profile_image)):
     	if($link_detail==1){
                $html .='<a href="'.$detail_link.'"'.$popup.'><img class="img-responsive '.$gray_scale.' " src="'. JURI::root().$image_storiage_path.'/m_'.$this->item->profile_image.'" alt="'.$this->item->name.'"/></a>';
            }else{
                $html .='<img class="img-responsive '.$gray_scale.'" src="'.JURI::root().$image_storiage_path.'/m_'.$this->item->profile_image.'" alt="'.$this->item->name.'"/>';
            }
        endif; 
        $html .='<div class="overlay"> 
            <div class="overlay-element">';
               if($link_detail==1){
                    $html .='<span class="detail-link"><a href="'.$detail_link.'"'.$popup.' ><i class="fa fa-plus"></i></a></span>';
                }
              if($socialicon_field==1){ 
                $html .='<div class="social-icons">';  
                    if($this->item->facebook!=''){ 
                        $html .='<a href="'.$this->item->facebook.'" target="_blank"><i class="fa fa-facebook"></i></a>';
                    }
                    if($this->item->twitter!=''){
                        $html .='<a href="'.$this->item->twitter.'" target="_blank"><i class="fa fa-twitter"></i></a>';
                    }
                    if($this->item->google_plus!=''){
                        $html .='<a href="'.$this->item->google_plus.'" target="_blank"><i class="fa fa-google-plus"></i></a>';
                    }
                    if($this->item->linkedin!=''){
                        $html .='<a href="'.$this->item->linkedin.'" target="_blank"><i class="fa fa-linkedin"></i></a>';
                    }
                    if($this->item->youtube!=''){
                        $html .='<a href="'.$this->item->youtube.'" target="_blank"><i class="fa fa-youtube"></i></a>';
                    }
                    if($this->item->vimeo!=''){
                        $html .='<a href="'.$this->item->vimeo.'" target="_blank"><i class="fa fa-vimeo"></i></a>';
                    }
                    if($this->item->instagram!=''){
                        $html .='<a href="'.$this->item->instagram.'" target="_blank"><i class="fa fa-instagram"></i></a>';
                    }
                    if($this->item->xing!=''){
                        $html .='<a href="'.$this->item->xing.'" target="_blank"><i class="fa fa-xing"></i></a>';
                    }
                    if($this->item->joomla!=''){
                        $html .='<a href="'.$this->item->joomla.'" target="_blank"><i class="fa fa-joomla"></i></a>';
                    }
                    if($this->item->wordpress!=''){
                        $html .='<a href="'.$this->item->wordpress.'" target="_blank"><i class="fa fa-wordpress"></i></a>';
                    }
                    if($this->item->behance!=''){
                        $html .='<a href="'.$this->item->behance.'" target="_blank"><i class="fa fa-behance"></i></a>';
                    }
                    if($this->item->dribbble!=''){
                        $html .='<a href="'.$this->item->dribbble.'" target="_blank"><i class="fa fa-dribbble"></i></a>';
                    }
                $html .='</div>';
                }
            $html .='</div>';
        $html .='</div>';
   $html .='</div>';
   $html .='<article>';
   if(($name_field==1)||($position_field==1)){
	   $html .='<div class="tlp-content-layout1">';
	   	if($name_field==1){
            if($link_detail==1){
                $html .='<h3><a href="'. $detail_link.'"'.$popup.'><span class="tlp-name">'. $this->item->name.'</span></a></h3>';
            }else{
                $html .='<h3><span class="tlp-name">'.$this->item->name.'</span></h3>';
            }
        }
		if($position_field==1){
         	$html .='<div class="tlp-position">'.$this->item->position.'</div>';
        }
	   $html .='</div>';
    }
	if($shortbio_field==1){
	   $html .='<div class="short-bio">
		   <p>'.substr($this->item->short_bio, 0,$short_description_limit).'</p>
	   </div>';
	   }
	if(($email_field==1)||($phoneno_field==1)||($mobileno_field==1)||($website_field==1)||($location_field==1)){
		$html .='<div class="contact-info">
            <ul>';
            if(($email_field==1)&&($this->item->email!='')){
            	$html .='<li><i class="fa fa-envelope-o"></i><span><a href="mailto:'.$this->item->email.'">'.$this->item->email.'</a></span> </li>';
            }
            if(($website_field==1)&&($this->item->personal_website!='')){
            	$html .='<li><i class="fa fa-globe"></i><span><a href="'.$this->item->personal_website.'" target="_blank">'.$this->item->personal_website.'</a></span> </li>';
            }
            if(($phoneno_field==1)&&($this->item->phoneno!='')){
                $html .='<li><i class="fa fa-phone"></i><span>'.$this->item->phoneno.'</span></li>';
            }
            if(($mobileno_field==1)&&($this->item->mobileno!='')){
            	$html .='<li><i class="fa fa-mobile"></i><span>'.$this->item->mobileno.'</span></li>';
            }
            if(($location_field==1)&&($this->item->location!='')){
            	$html .='<li><i class="fa fa-map-marker"></i><span>'.$this->item->location.'</span></li>';
            }
            $html .='</ul>';
        $html .='</div>';
	}
	if($skill_field==1){ 
        $html .='<div class="tlp-team-skill">';
            if(($skill_field==1)&&(($this->item->skill1_no)>0)){
                $html .='<div class="skill_name">'.$this->item->skill1.'</div>';
                $html .='<div class="skill-prog"><a class="tlp-tooltip" data-toggle="tooltip" data-placement="top" title="" data-original-title="'.$this->item->skill1_no.'%'.'"><div class="fill" data-progress-animation='.$this->item->skill1_no.'></div></a></div>';
            }
            if(($skill_field==1)&&(($this->item->skill2_no)>0)){
                $html .='<div class="skill_name">'.$this->item->skill2.'</div>';
                $html .='<div class="skill-prog"><a class="tlp-tooltip" data-toggle="tooltip" data-placement="top" title="" data-original-title="'.$this->item->skill2_no.'%'.'"><div class="fill" data-progress-animation='.$this->item->skill2_no.'></div></a></div>';
            }
            if(($skill_field==1)&&(($this->item->skill3_no)>0)){
                $html .='<div class="skill_name">'.$this->item->skill3.'</div>';
                $html .='<div class="skill-prog"><a class="tlp-tooltip" data-toggle="tooltip" data-placement="top" title="" data-original-title="'.$this->item->skill3_no.'%'.'"><div class="fill" data-progress-animation='.$this->item->skill3_no.'></div></a></div>';
            }
            if(($skill_field==1)&&(($this->item->skill4_no)>0)){
                $html .='<div class="skill_name">'.$this->item->skill4.'</div>';
                $html .='<div class="skill-prog"><a class="tlp-tooltip" data-toggle="tooltip" data-placement="top" title="" data-original-title="'.$this->item->skill4_no.'%'.'"><div class="fill" data-progress-animation='.$this->item->skill4_no.'></div></a></div>';
            }
            if(($skill_field==1)&&(($this->item->skill5_no)>0)){
                $html .='<div class="skill_name">'.$this->item->skill5.'</div>';
                $html .='<div class="skill-prog"><a class="tlp-tooltip" data-toggle="tooltip" data-placement="top" title="" data-original-title="'.$this->item->skill5_no.'%'.'"><div class="fill" data-progress-animation='.$this->item->skill5_no.'></div></a></div>';
    	    }
        $html .='</div>';
    }
    $html .='</article>';
$html .='</div>';

echo $html;
?>
                                                                                                                                                                                                                                                                                                                                                                                                                                            views/teams/tmpl/default_layout6.php                                                                0000705                 00000030634 15242037122 0013610 0                                                                                                    ustar 00                                                                                                                                                                                                                                                       <?php
/**
 * @version     1.1
 * @package     com_tlpteam
 * @copyright   Copyright (C) 2013. All rights reserved.
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 * @author      TechLabPro <techlabpro@gmail.com> - http://www.techlabpro.com
 */
// no direct access
defined('_JEXEC') or die;
$detail_link=JRoute::_('index.php?option=com_tlpteam&view=team&id='.(int) $this->item->id);
extract($this->tlpconfig);   
if($link_type==2){ 
        $popup=' data-id="'.$this->item->id.'" class="tlp-single-item-popup"';
    }else{
        $popup= null;
    }

  if($display_no==2){
        $image_area="tlp-col-md-6 tlp-col-lg-6 tlp-col-sm-6 paddingl0";
        $content_area="tlp-col-md-6 tlp-col-lg-6 tlp-col-sm-6 paddingr0";
    }else{
        $image_area="tlp-col-md-6 tlp-col-lg-6 tlp-col-sm-12 paddingl0";
        $content_area="tlp-col-md-6 tlp-col-lg-6 tlp-col-sm-12 paddingr0";
    }   

$html ='';
if($this->l8 == 0){
$html .='<div class="tlp-row2">';
    $html .='<div class="'.$image_area.' tlp-img-block ">';
    	$html .='<div class="tlp-img tlp-single-team single-team-area">';
          if (!empty($this->item->profile_image)):  	     	
    	     		if($link_detail==1){
                  $html .='<a href="'.$detail_link.'"'.$popup.'><img class="img-responsive '.$gray_scale.'" src="'. JURI::root().$image_storiage_path.'/m_'.$this->item->profile_image.'" alt="'.$this->item->name.'"/></a>';
            }else{
                $html .='<img class="img-responsive '.$gray_scale.'" src="'.JURI::root().$image_storiage_path.'/m_'.$this->item->profile_image.'" alt="'.$this->item->name.'"/>';
            }		     		
    	   endif;
    	$html .='</div>'; 
    $html .='</div>';
    $html .='<div class="'.$content_area.' tlp-info-block tlp-right-arrow ">';
    if(($name_field==1)||($position_field==1)||($shortbio_field==1)){
      $html .='<article>';
    	$html .='<div class="tlp-content" >';
          if($name_field==1){
                if($link_detail==1){
                    $html .='<h3><a href="'. $detail_link.'"'.$popup.'><span class="tlp-name">'. $this->item->name.'</span></a></h3>';
                }else{
                $html .='<h3><span class="tlp-name">'.$this->item->name.'</span></h3>';
                }
          }
    		if($position_field==1){
          if($link_detail==1){
                $html .='<div class="tlp-position"><a href="'.$detail_link.'" '.$popup.'>'. $this->item->position .'</a></div>';
              }else{
                $html .='<div class="tlp-position">'. $this->item->position.'</div>';
              }
             }
    	   $html .='</div>';
    	   if($shortbio_field==1){
              if($link_detail==1){
             $html .='<div class="short-bio">
               <p><a href="'.$detail_link.'" '.$popup.'>'.substr($this->item->short_bio, 0,$short_description_limit).'</a></p>
             </div>';
          }else{
            $html .='<div class="short-bio">
               <p>'.substr($this->item->short_bio, 0,$short_description_limit).'</p>
             </div>';
          }
          }
        }
        if(($email_field==1)||($phoneno_field==1)||($mobileno_field==1)||($website_field==1)||($location_field==1)){    		
          $html .='<div class="contact-info">
            <ul>';
            if(($email_field==1)&&($this->item->email!='')){
                $html .='<li><i class="fa fa-envelope-o"></i><span><a href="mailto:'.$this->item->email.'">'.$this->item->email.'</a></span> </li>';
            }
            if(($website_field==1)&&($this->item->personal_website!='')){
                $html .='<li><i class="fa fa-globe"></i><span><a href="'.$this->item->personal_website.'" target="_blank">'.$this->item->personal_website.'</a></span> </li>';
            }
            if(($phoneno_field==1)&&($this->item->phoneno!='')){
                $html .='<li><i class="fa fa-phone"></i><span>'.$this->item->phoneno.'</span></li>';
            }
            if(($mobileno_field==1)&&($this->item->mobileno!='')){
                $html .='<li><i class="fa fa-mobile"></i><span>'.$this->item->mobileno.'</span></li>';
            }
            if(($location_field==1)&&($this->item->location!='')){
                $html .='<li><i class="fa fa-map-marker"></i><span>'.$this->item->location.'</span></li>';
            }
            $html .='</ul>';
        $html .='</div>';
    	}

      if($socialicon_field==1){ 
          $html .='<div class="social-icons">';  
           if($this->item->facebook!=''){ 
               $html .='<a href="'.$this->item->facebook.'" target="_blank"><i class="fa fa-facebook"></i></a>';
           }
           if($this->item->twitter!=''){
               $html .='<a href="'.$this->item->twitter.'" target="_blank"><i class="fa fa-twitter"></i></a>';
           }
           if($this->item->google_plus!=''){
               $html .='<a href="'.$this->item->google_plus.'" target="_blank"><i class="fa fa-google-plus"></i></a>';
           }
           if($this->item->linkedin!=''){
               $html .='<a href="'.$this->item->linkedin.'" target="_blank"><i class="fa fa-linkedin"></i></a>';
           }
           if($this->item->youtube!=''){
               $html .='<a href="'.$this->item->youtube.'" target="_blank"><i class="fa fa-youtube"></i></a>';
           }
           if($this->item->vimeo!=''){
               $html .='<a href="'.$this->item->vimeo.'" target="_blank"><i class="fa fa-vimeo"></i></a>';
           }
           if($this->item->instagram!=''){
               $html .='<a href="'.$this->item->instagram.'" target="_blank"><i class="fa fa-instagram"></i></a>';
           }
           if($this->item->xing!=''){
               $html .='<a href="'.$this->item->xing.'" target="_blank"><i class="fa fa-xing"></i></a>';
           }
           if($this->item->joomla!=''){
               $html .='<a href="'.$this->item->joomla.'" target="_blank"><i class="fa fa-joomla"></i></a>';
           }
           if($this->item->wordpress!=''){
               $html .='<a href="'.$this->item->wordpress.'" target="_blank"><i class="fa fa-wordpress"></i></a>';
           }
           if($this->item->behance!=''){
               $html .='<a href="'.$this->item->behance.'" target="_blank"><i class="fa fa-behance"></i></a>';
           }
           if($this->item->dribbble!=''){
               $html .='<a href="'.$this->item->dribbble.'" target="_blank"><i class="fa fa-dribbble"></i></a>';
           }
       $html .='</div>';
      }
    $html .='</article>';
    $html .='</div>';
    $html .='</div>';
 }else if($this->l8 == 1){

    $html .='<div class="tlp-row2">';
    $html .='<div class="'.$content_area .' tlp-info-block tlp-left-arrow ">';
    if(($name_field==1)||($position_field==1)||($shortbio_field==1)){
        $html .='<article>';
            $html .='<div class="tlp-content" >';
              if($name_field==1){
                if($link_detail==1){
                    $html .='<h3><a href="'. $detail_link.'"'.$popup.'><span class="tlp-name">'. $this->item->name.'</span></a></h3>';
                }else{
                    $html .='<h3><span class="tlp-name">'.$this->item->name.'</span></h3>';
                }
          }
        if($position_field==1){
          if($link_detail==1){
                $html .='<div class="tlp-position"><a href="'.$detail_link.'" '.$popup.'>'. $this->item->position .'</a></div>';
              }else{
                $html .='<div class="tlp-position">'. $this->item->position.'</div>';
              }
             }
          $html .='</div>';
         if($shortbio_field==1){
              if($link_detail==1){
             $html .='<div class="short-bio">
               <p><a href="'.$detail_link.'" '.$popup.'>'.substr($this->item->short_bio, 0,$short_description_limit).'</a></p>
             </div>';
          }else{
            $html .='<div class="short-bio">
               <p>'.substr($this->item->short_bio, 0,$short_description_limit).'</p>
             </div>';
          }
          }
        }
        if(($email_field==1)||($phoneno_field==1)||($website_field==1)||($location_field==1)){
            $html .='<div class="contact-info">
            <ul>';
            if(($email_field==1)&&($this->item->email!='')){
                $html .='<li><i class="fa fa-envelope-o"></i><span><a href="mailto:'.$this->item->email.'">'.$this->item->email.'</a></span> </li>';
            }
            if(($website_field==1)&&($this->item->personal_website!='')){
                $html .='<li><i class="fa fa-globe"></i><span><a href="'.$this->item->personal_website.'" target="_blank">'.$this->item->personal_website.'</a></span> </li>';
            }
            if(($phoneno_field==1)&&($this->item->phoneno!='')){
                $html .='<li><i class="fa fa-phone"></i><span>'.$this->item->phoneno.'</span></li>';
            }
            if(($mobileno_field==1)&&($this->item->mobileno!='')){
                $html .='<li><i class="fa fa-mobile"></i><span>'.$this->item->mobileno.'</span></li>';
            }
            if(($location_field==1)&&($this->item->location!='')){
                $html .='<li><i class="fa fa-map-marker"></i><span>'.$this->item->location.'</span></li>';
            }
            $html .='</ul>';
        $html .='</div>';
        }
 
      if($socialicon_field==1){
          $html .='<div class="social-icons">';  
             if($this->item->facebook!=''){ 
                 $html .='<a href="'.$this->item->facebook.'" target="_blank"><i class="fa fa-facebook"></i></a>';
             }
             if($this->item->twitter!=''){
                 $html .='<a href="'.$this->item->twitter.'" target="_blank"><i class="fa fa-twitter"></i></a>';
             }
             if($this->item->google_plus!=''){
                 $html .='<a href="'.$this->item->google_plus.'" target="_blank"><i class="fa fa-google-plus"></i></a>';
             }
             if($this->item->linkedin!=''){
                 $html .='<a href="'.$this->item->linkedin.'" target="_blank"><i class="fa fa-linkedin"></i></a>';
             }
             if($this->item->youtube!=''){
                 $html .='<a href="'.$this->item->youtube.'" target="_blank"><i class="fa fa-youtube"></i></a>';
             }
             if($this->item->vimeo!=''){
                 $html .='<a href="'.$this->item->vimeo.'" target="_blank"><i class="fa fa-vimeo"></i></a>';
             }
             if($this->item->instagram!=''){
                 $html .='<a href="'.$this->item->instagram.'" target="_blank"><i class="fa fa-instagram"></i></a>';
             }
             if($this->item->xing!=''){
                 $html .='<a href="'.$this->item->xing.'" target="_blank"><i class="fa fa-xing"></i></a>';
             }
             if($this->item->joomla!=''){
                 $html .='<a href="'.$this->item->joomla.'" target="_blank"><i class="fa fa-joomla"></i></a>';
             }
             if($this->item->wordpress!=''){
                 $html .='<a href="'.$this->item->wordpress.'" target="_blank"><i class="fa fa-wordpress"></i></a>';
             }
             if($this->item->behance!=''){
                 $html .='<a href="'.$this->item->behance.'" target="_blank"><i class="fa fa-behance"></i></a>';
             }
             if($this->item->dribbble!=''){
                 $html .='<a href="'.$this->item->dribbble.'" target="_blank"><i class="fa fa-dribbble"></i></a>';
             }
         $html .='</div>';
      }
    $html .='</article>';
    $html .='</div>';
    $html .='<div class="'.$image_area.' tlp-img-block ">';
        $html .='<div class="tlp-img tlp-single-team single-team-area">';
            if (!empty($this->item->profile_image)):            
                if($link_detail==1){
                   $html .='<a href="'.$detail_link.'"'.$popup.'><img class="img-responsive '.$gray_scale.'" src="'. JURI::root().$image_storiage_path.'/m_'.$this->item->profile_image.'" alt="'.$this->item->name.'"/></a>';
                }else{
                    $html .='<img class="img-responsive " src="'.JURI::root().$image_storiage_path.'/m_'.$this->item->profile_image.'" alt="'.$this->item->name.'"/>';
                }                
             endif;
        $html .='</div>'; 
    $html .='</div>';
$html .='</div>';
    
}
echo $html;
?>

<script>

    (function($){
        var maxH = 0;
        var l8imgH = $(".tlp-img-block").height();
        var l8infoH = $(".tlp-info-block").height();
        if(l8imgH > l8infoH){
            maxH = l8imgH;
        }else{
            maxH = l8infoH;
        }
        $(".tlp-img-block, .tlp-info-block").css('height', maxH + "px");
        
    })(jQuery);
</script>
                                                                                                    views/teams/tmpl/default_layout12.php                                                               0000705                 00000011037 15242037122 0013661 0                                                                                                    ustar 00                                                                                                                                                                                                                                                       <?php
/**
 * @version     1.1
 * @package     com_tlpteam
 * @copyright   Copyright (C) 2013. All rights reserved.
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 * @author      TechLabPro <techlabpro@gmail.com> - http://www.techlabpro.com
 */
// no direct access
defined('_JEXEC') or die;
$detail_link=JRoute::_('index.php?option=com_tlpteam&view=team&id='.(int) $this->item->id);
extract($this->tlpconfig); 
if($link_type==2){ 
        $popup=' data-id="'.$this->item->id.'" class="tlp-single-item-popup"';
    }else{
        $popup= null;
    }

$html ='';

if (!empty($this->item->profile_image)):
$html .='<div class="single-team-area'. $image_style_class.'">';
    $html .='<figure>';
        if($link_detail==1){
            $html .='<a href="'.$detail_link.'"'.$popup.'><img class="img-responsive '.$gray_scale.'" src="'. JURI::root().$image_storiage_path.'/m_'.$this->item->profile_image.'" alt="'.$this->item->name.'"/></a>';
        }else{
            $html .='<img class="img-responsive '.$gray_scale.'" src="'.JURI::root().$image_storiage_path.'/m_'.$this->item->profile_image.'" alt="'.$this->item->name.'"/>';
        } 
    $html .='</figure>';
    $html .='<div class="tlp-overlay">';
        if($name_field==1){
            if($link_detail==1){
                $html .='<h3><a href="'. $detail_link.'"'.$popup.'><span class="tlp-name">'. $this->item->name.'</span></a></h3>';
            }else{
                $html .='<h3><span class="tlp-name">'.$this->item->name.'</span></h3>';
            }
        }
        if($position_field==1){
            if($link_detail==1){
                $html .='<div class="tlp-position"><span><a href="'.$detail_link.'" '.$popup.'>'. $this->item->position .'</a></span></div>';
            }else{
                $html .='<div class="tlp-position"><span>'. $this->item->position.'</span></div>';
            }
         }
        if($shortbio_field==1){
            if($link_detail==1){
               $html .='<div class="short-bio">
                   <p><a href="'.$detail_link.'" '.$popup.'>'.substr($this->item->short_bio, 0,$short_description_limit).'</a></p>
               </div>';
            }else{
                $html .='<div class="short-bio">
                   <p>'.substr($this->item->short_bio, 0,$short_description_limit).'</p>
               </div>';
            }
        }
       
        if($socialicon_field==1){ 
          $html .='<div class="social-icons">';  
             if($this->item->facebook!=''){ 
                 $html .='<a href="'.$this->item->facebook.'" target="_blank"><i class="fa fa-facebook"></i></a>';
             }
             if($this->item->twitter!=''){
                 $html .='<a href="'.$this->item->twitter.'" target="_blank"><i class="fa fa-twitter"></i></a>';
             }
             if($this->item->google_plus!=''){
                 $html .='<a href="'.$this->item->google_plus.'" target="_blank"><i class="fa fa-google-plus"></i></a>';
             }
             if($this->item->linkedin!=''){
                 $html .='<a href="'.$this->item->linkedin.'" target="_blank"><i class="fa fa-linkedin"></i></a>';
             }
             if($this->item->youtube!=''){
                 $html .='<a href="'.$this->item->youtube.'" target="_blank"><i class="fa fa-youtube"></i></a>';
             }
             if($this->item->vimeo!=''){
                 $html .='<a href="'.$this->item->vimeo.'" target="_blank"><i class="fa fa-vimeo"></i></a>';
             }
             if($this->item->instagram!=''){
                 $html .='<a href="'.$this->item->instagram.'" target="_blank"><i class="fa fa-instagram"></i></a>';
             }
             if($this->item->xing!=''){
                 $html .='<a href="'.$this->item->xing.'" target="_blank"><i class="fa fa-xing"></i></a>';
             }
             if($this->item->joomla!=''){
                 $html .='<a href="'.$this->item->joomla.'" target="_blank"><i class="fa fa-joomla"></i></a>';
             }
             if($this->item->wordpress!=''){
                 $html .='<a href="'.$this->item->wordpress.'" target="_blank"><i class="fa fa-wordpress"></i></a>';
             }
             if($this->item->behance!=''){
                 $html .='<a href="'.$this->item->behance.'" target="_blank"><i class="fa fa-behance"></i></a>';
             }
             if($this->item->dribbble!=''){
                 $html .='<a href="'.$this->item->dribbble.'" target="_blank"><i class="fa fa-dribbble"></i></a>';
             }
          $html .='</div>';
        }
    $html .='</div>';
$html .='</div>';
endif;

echo $html;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 views/teams/tmpl/default_layout8.php                                                                0000705                 00000010122 15242037122 0013600 0                                                                                                    ustar 00                                                                                                                                                                                                                                                       <?php
/**
 * @version     1.1
 * @package     com_tlpteam
 * @copyright   Copyright (C) 2013. All rights reserved.
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 * @author      TechLabPro <techlabpro@gmail.com> - http://www.techlabpro.com
 */
// no direct access
defined('_JEXEC') or die;
$detail_link=JRoute::_('index.php?option=com_tlpteam&view=team&id='.(int) $this->item->id);
extract($this->tlpconfig); 
if($link_type==2){ 
        $popup=' data-id="'.$this->item->id.'" class="tlp-single-item-popup"';
    }else{
        $popup= null;
    }

$html ='';

if (!empty($this->item->profile_image)):
$html .='<div class="single-team-area'. $image_style_class.'">';
  $html .='<figure>';
    $html .='<a href="'.$detail_link.'"'.$popup.'><img class="img-responsive '.$gray_scale.'" src="'. JURI::root().$image_storiage_path.'/m_'.$this->item->profile_image.'" alt="'.$this->item->name.'"/></a>';   

    $html .='<figcaption>';
      $html .='<div class="tlp-overlay">';
        $html .='<div class="tlp-title">';
            if($name_field==1){
              if($link_detail==1){
                    $html .='<h3><a href="'. $detail_link.'"'.$popup.'><span class="tlp-name">'. $this->item->name.'</span></a></h3>';
                }else{
                    $html .='<h3><span class="tlp-name">'.$this->item->name.'</span></h3>';
                }
          }
          if($position_field==1){
            if($link_detail==1){
                  $html .='<div class="tlp-position"><a href="'.$detail_link.'" '.$popup.'>'. $this->item->position .'</a></div>';
                }else{
                  $html .='<div class="tlp-position">'. $this->item->position.'</div>';
                }
             }
        $html .='</div>';
        $html .='<div class="tlp-content">';  
            $html .='<p class="social-icons">';  
                if($this->item->facebook!=''){ 
                  $html .='<a href="'.$this->item->facebook.'" target="_blank"><i class="fa fa-facebook"></i></a>';
                }
                if($this->item->twitter!=''){
                  $html .='<a href="'.$this->item->twitter.'" target="_blank"><i class="fa fa-twitter"></i></a>';
                }
                if($this->item->google_plus!=''){
                  $html .='<a href="'.$this->item->google_plus.'" target="_blank"><i class="fa fa-google-plus"></i></a>';
                }
                if($this->item->linkedin!=''){
                  $html .='<a href="'.$this->item->linkedin.'" target="_blank"><i class="fa fa-linkedin"></i></a>';
                }
                if($this->item->youtube!=''){
                  $html .='<a href="'.$this->item->youtube.'" target="_blank"><i class="fa fa-youtube"></i></a>';
                }
                if($this->item->vimeo!=''){
                  $html .='<a href="'.$this->item->vimeo.'" target="_blank"><i class="fa fa-vimeo"></i></a>';
                }
                if($this->item->instagram!=''){
                  $html .='<a href="'.$this->item->instagram.'" target="_blank"><i class="fa fa-instagram"></i></a>';
                }
                if($this->item->xing!=''){
                  $html .='<a href="'.$this->item->xing.'" target="_blank"><i class="fa fa-xing"></i></a>';
                }
                if($this->item->joomla!=''){
                  $html .='<a href="'.$this->item->joomla.'" target="_blank"><i class="fa fa-joomla"></i></a>';
                }
                if($this->item->wordpress!=''){
                  $html .='<a href="'.$this->item->wordpress.'" target="_blank"><i class="fa fa-wordpress"></i></a>';
                }
                if($this->item->behance!=''){
                  $html .='<a href="'.$this->item->behance.'" target="_blank"><i class="fa fa-behance"></i></a>';
                }
                if($this->item->dribbble!=''){
                  $html .='<a href="'.$this->item->dribbble.'" target="_blank"><i class="fa fa-dribbble"></i></a>';
                }
            $html .='</p>';
        $html .='</div>';
      $html .='</div>';
    $html .='</figcaption>';
  $html .='</figure>';
$html .='</div>';
endif;

echo $html;                                                                                                                                                                                                                                                                                                                                                                                                                                              views/teams/tmpl/default_isotope2.php                                                               0000705                 00000020137 15242037122 0013746 0                                                                                                    ustar 00                                                                                                                                                                                                                                                       <?php
/**
 * @version     2.0
 * @package     com_tlpteam
 * @copyright   Copyright (C) 2013. All rights reserved.
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 * @author      TechLabPro <techlabpro@gmail.com> - http://www.techlabpro.com
 */
// no direct access
defined('_JEXEC') or die;
extract($this->tlpconfig);   

$html ='';

$html .='<div class="isotop-container">';
  $html .='<div class="button-group filter-button-group">';
  if(!$hide_showall){
    $selected = $mod_selected_category ? null : " class='selected'" ;
    $html .='<button data-filter="*" '.$selected.'>'.JText::_('COM_TLPTEAM_FORM_LBL_BTN_SHOW_ALL').'</button>';
  }
  $category=TlpteamFrontendHelper::getCategoryName($category_id);
  foreach ($category as $key => $value) {
    $selected = null;
    if($value->id == $mod_selected_category){
      $selected = " class='selected'";
    }
    $html .='<button '.$selected.' data-filter=".cat'.strtolower($value->id).'">'.$value->title.'</button>';
  }
  
  $html .='</div>';
	$html .='<div class="tlp-team-grid">';

	$allmembers=TlpteamFrontendHelper::getAllMembers($category_id);

	foreach ($allmembers as $key => $item) : 
    if($link_type==2){ 
          $popup=' data-id="'.$item->id.'" class="tlp-single-item-popup"';
      }else{
          $popup= null;
      }
	   $detail_link=JRoute::_('index.php?option=com_tlpteam&view=team&id='.(int) $item->id);
		

  	$html .='<div class="team-item cat'.strtolower($item->department).' '. $bss.' '.$item_margin.' tlp-equal-height '.$image_style_class.'">';
	      if (!empty($item->profile_image)):
    	     $html .='<figure>';
    	     	 if($link_detail==1){
                $html .='<a href="'.$detail_link.'"'.$popup.'><img class="img-responsive '.$gray_scale.'" src="'. JURI::root().$image_storiage_path.'/m_'.$item->profile_image.'" alt="'.$item->name.'"/></a>';
              }else{
                $html .='<img class="img-responsive '.$gray_scale.'" src="'.JURI::root().$image_storiage_path.'/m_'.$item->profile_image.'" alt="'.$item->name.'"/>';
              }     		
    	     $html .='</figure>';
        endif; 
    		$html .='<article>';
     		$html .='<div class="tlp-content" >';
  	     if($name_field==1){
            if($link_detail==1){
                $html .='<h3><a href="'. $detail_link.'"'.$popup.'><span class="tlp-name">'. $item->name.'</span></a></h3>';
            }else{
                $html .='<h3><span class="tlp-name">'.$item->name.'</span></h3>';
            }
          }
        if($position_field==1){
                $html .='<div class="tlp-position">'.$item->position.'</div>';
            }
         $html .='</div>';
         if($shortbio_field==1){
           $html .='<div class="short-bio">
               <p>'.substr($item->short_bio, 0,$short_description_limit).'</p>
           </div>';
           }

  		if(($email_field==1)||($phoneno_field==1)||($mobileno_field==1)||($website_field==1)||($location_field==1)){
  			   $html .='<div class="contact-info">
            <ul>';
            if(($email_field==1)&&($item->email!='')){
                $html .='<li><i class="fa fa-envelope-o"></i><span><a href="mailto:'.$item->email.'">'.$item->email.'</a></span> </li>';
            }
            if(($website_field==1)&&($item->personal_website!='')){
                $html .='<li><i class="fa fa-globe"></i><span><a href="'.$item->personal_website.'" target="_blank">'.$item->personal_website.'</a></span> </li>';
            }
            if(($phoneno_field==1)&&($item->phoneno!='')){
                $html .='<li><i class="fa fa-phone"></i><span>'.$item->phoneno.'</span></li>';
            }
            if(($mobileno_field==1)&&($item->mobileno!='')){
                $html .='<li><i class="fa fa-mobile"></i><span>'.$item->mobileno.'</span></li>';
            }
            if(($location_field==1)&&($item->location!='')){
                $html .='<li><i class="fa fa-map-marker"></i><span>'.$item->location.'</span></li>';
            }
            $html .='</ul>';
        $html .='</div>';
  	   }
       if($skill_field==1){ 
          $html .='<div class="tlp-team-skill">';
            if(($skill_field==1)&&(($item->skill1_no)>0)){
                $html .='<div class="skill_name">'.$item->skill1.'</div>';
                $html .='<div class="skill-prog"><a class="tlp-tooltip" data-toggle="tooltip" data-placement="top" title="" data-original-title="'.$item->skill1_no.'%'.'"><div class="fill" data-progress-animation='.$item->skill1_no.'></div></a></div>';
            }
            if(($skill_field==1)&&(($item->skill2_no)>0)){
                $html .='<div class="skill_name">'.$item->skill2.'</div>';
                $html .='<div class="skill-prog"><a class="tlp-tooltip" data-toggle="tooltip" data-placement="top" title="" data-original-title="'.$item->skill2_no.'%'.'"><div class="fill" data-progress-animation='.$item->skill2_no.'></div></a></div>';
            }
            if(($skill_field==1)&&(($item->skill3_no)>0)){
                $html .='<div class="skill_name">'.$item->skill3.'</div>';
                $html .='<div class="skill-prog"><a class="tlp-tooltip" data-toggle="tooltip" data-placement="top" title="" data-original-title="'.$item->skill3_no.'%'.'"><div class="fill" data-progress-animation='.$item->skill3_no.'></div></a></div>';
            }
            if(($skill_field==1)&&(($item->skill4_no)>0)){
                $html .='<div class="skill_name">'.$item->skill4.'</div>';
                $html .='<div class="skill-prog"><a class="tlp-tooltip" data-toggle="tooltip" data-placement="top" title="" data-original-title="'.$item->skill4_no.'%'.'"><div class="fill" data-progress-animation='.$item->skill4_no.'></div></a></div>';
            }
            if(($skill_field==1)&&(($item->skill5_no)>0)){
                $html .='<div class="skill_name">'.$item->skill5.'</div>';
                $html .='<div class="skill-prog"><a class="tlp-tooltip" data-toggle="tooltip" data-placement="top" title="" data-original-title="'.$item->skill5_no.'%'.'"><div class="fill" data-progress-animation='.$item->skill5_no.'></div></a></div>';
            }
        $html .='</div>';
      }
      if($socialicon_field==1){ 
          $html .='<div class="social-icons">';  
            if($item->facebook!=''){ 
              $html .='<a href="'.$item->facebook.'" target="_blank"><i class="fa fa-facebook"></i></a>';
            }
            if($item->twitter!=''){
              $html .='<a href="'.$item->twitter.'" target="_blank"><i class="fa fa-twitter"></i></a>';
            }
            if($item->google_plus!=''){
              $html .='<a href="'.$item->google_plus.'" target="_blank"><i class="fa fa-google-plus"></i></a>';
            }
            if($item->linkedin!=''){
              $html .='<a href="'.$item->linkedin.'" target="_blank"><i class="fa fa-linkedin"></i></a>';
            }
            if($item->youtube!=''){
              $html .='<a href="'.$item->youtube.'" target="_blank"><i class="fa fa-youtube"></i></a>';
            }
            if($item->vimeo!=''){
              $html .='<a href="'.$item->vimeo.'" target="_blank"><i class="fa fa-vimeo"></i></a>';
            }
            if($item->instagram!=''){
              $html .='<a href="'.$item->instagram.'" target="_blank"><i class="fa fa-instagram"></i></a>';
            }
            if($item->xing!=''){
              $html .='<a href="'.$item->xing.'" target="_blank"><i class="fa fa-xing"></i></a>';
            }
            if($item->joomla!=''){
              $html .='<a href="'.$item->joomla.'" target="_blank"><i class="fa fa-joomla"></i></a>';
            }
            if($item->wordpress!=''){
              $html .='<a href="'.$item->wordpress.'" target="_blank"><i class="fa fa-wordpress"></i></a>';
            }
            if($item->behance!=''){
              $html .='<a href="'.$item->behance.'" target="_blank"><i class="fa fa-behance"></i></a>';
            }
            if($item->dribbble!=''){
              $html .='<a href="'.$item->dribbble.'" target="_blank"><i class="fa fa-dribbble"></i></a>';
            }
          $html .='</div>';
        }
  		$html .='</article>';		         
  	$html .='</div>';
endforeach;
 $html .='</div>';
$html .='</div>';

echo $html;                                                                                                                                                                                                                                                                                                                                                                                                                                 views/teams/tmpl/default_isotope5.php                                                               0000705                 00000012221 15242037122 0013744 0                                                                                                    ustar 00                                                                                                                                                                                                                                                       <?php
/**
 * @version     1.1
 * @package     com_tlpteam
 * @copyright   Copyright (C) 2013. All rights reserved.
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 * @author      TechLabPro <techlabpro@gmail.com> - http://www.techlabpro.com
 */
// no direct access
defined('_JEXEC') or die;
extract($this->tlpconfig); 

$html ='';

$html .='<div class="isotop-container">';
  $html .='<div class="button-group filter-button-group">';
  if(!$hide_showall){
		$selected = $mod_selected_category ? null : " class='selected'" ;
		$html .='<button data-filter="*" '.$selected.'>'.JText::_('COM_TLPTEAM_FORM_LBL_BTN_SHOW_ALL').'</button>';
	}
	$category=TlpteamFrontendHelper::getCategoryName($category_id);
	foreach ($category as $key => $value) {
		$selected = null;
		if($value->id == $mod_selected_category){
			$selected = " class='selected'";
		}
		$html .='<button '.$selected.' data-filter=".cat'.strtolower($value->id).'">'.$value->title.'</button>';
	}
  
$html .='</div>';
$html .='<div class="tlp-team-grid">';

$allmembers=TlpteamFrontendHelper::getAllMembers($category_id);

foreach ($allmembers as $key => $item) : 

if($link_type==2){ 
      $popup=' data-id="'.$item->id.'" class="tlp-single-item-popup"';
  }else{
      $popup= null;
  }
  $detail_link=JRoute::_('index.php?option=com_tlpteam&view=team&id='.(int) $item->id);
		

  	$html .='<div class="team-item cat'.strtolower($item->department).' '. $bss.' '.$item_margin.' tlp-equal-height">';
	      if (!empty($item->profile_image)):
	      	$html .='<div class="single-team-area '.$image_style_class.'">'; 
 
	      	        $html .='<figure>';
	      	        if($link_detail==1){
		                $html .='<a href="'.$detail_link.'"'.$popup.'><img class="img-responsive '.$gray_scale.'" src="'. JURI::root().$image_storiage_path.'/m_'.$item->profile_image.'" alt="'.$item->name.'"/></a>';
		              }else{
		                $html .='<img class="img-responsive '.$gray_scale.'" src="'.JURI::root().$image_storiage_path.'/m_'.$item->profile_image.'" alt="'.$item->name.'"/>';
		              }         
	      	      $html .='</figure>';

	      	    $html .='<div class="tlp-overlay">';
	      	    if($socialicon_field==1){ 
		          $html .='<p class="social-icons">';  
			            if($item->facebook!=''){ 
			              $html .='<a href="'.$item->facebook.'" target="_blank"><i class="fa fa-facebook"></i></a>';
			            }
			            if($item->twitter!=''){
			              $html .='<a href="'.$item->twitter.'" target="_blank"><i class="fa fa-twitter"></i></a>';
			            }
			            if($item->google_plus!=''){
			              $html .='<a href="'.$item->google_plus.'" target="_blank"><i class="fa fa-google-plus"></i></a>';
			            }
			            if($item->linkedin!=''){
			              $html .='<a href="'.$item->linkedin.'" target="_blank"><i class="fa fa-linkedin"></i></a>';
			            }
			            if($item->youtube!=''){
			              $html .='<a href="'.$item->youtube.'" target="_blank"><i class="fa fa-youtube"></i></a>';
			            }
			            if($item->vimeo!=''){
			              $html .='<a href="'.$item->vimeo.'" target="_blank"><i class="fa fa-vimeo"></i></a>';
			            }
			            if($item->instagram!=''){
			              $html .='<a href="'.$item->instagram.'" target="_blank"><i class="fa fa-instagram"></i></a>';
			            }
			            if($item->xing!=''){
			              $html .='<a href="'.$item->xing.'" target="_blank"><i class="fa fa-xing"></i></a>';
			            }
			            if($item->joomla!=''){
			              $html .='<a href="'.$item->joomla.'" target="_blank"><i class="fa fa-joomla"></i></a>';
			            }
			            if($item->wordpress!=''){
			              $html .='<a href="'.$item->wordpress.'" target="_blank"><i class="fa fa-wordpress"></i></a>';
			            }
			            if($item->behance!=''){
			              $html .='<a href="'.$item->behance.'" target="_blank"><i class="fa fa-behance"></i></a>';
			            }
			            if($item->dribbble!=''){
			              $html .='<a href="'.$item->dribbble.'" target="_blank"><i class="fa fa-dribbble"></i></a>';
			            }
		          $html .='</p>';
		        }
	      	    $html .='</div>';
	      	    $html .='<div class="tlp-title">';
	      	    if($name_field==1){
	                    if($link_detail==1){
	                        $html .='<h3><a href="'. $detail_link.'"'.$popup.'><span class="tlp-name">'. $item->name.'</span></a></h3>';
	                    }else{
	                        $html .='<h3><span class="tlp-name">'.$item->name.'</span></h3>';
	                    }
                	}
                	if($position_field==1){
	                    if($link_detail==1){
	                        $html .='<p class="tlp-position"><a href="'.$detail_link.'" '.$popup.'>'. $item->position .'</a></p>';
	                    }else{
	                        $html .='<p class="tlp-position">'. $item->position.'</p>';
	                    }
                 	}
	      	    $html .='</div>';
	      	$html .='</div>';
        endif; 
		$html .='</div>';
	endforeach;
 	$html .='</div>';
$html .='</div>';

echo $html;                                                                                                                                                                                                                                                                                                                                                                               views/teams/tmpl/default_filter.php                                                                 0000705                 00000005544 15242037122 0013474 0                                                                                                    ustar 00                                                                                                                                                                                                                                                       <?php
/**
 * @version     1.1
 * @package     com_tlpteam
 * @copyright   Copyright (C) 2013. All rights reserved.
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 * @author      TechLabPro <techlabpro@gmail.com> - http://www.techlabpro.com
 */

defined('JPATH_BASE') or die;

$data = $displayData;

// Receive overridable options
$data['options'] = !empty($data['options']) ? $data['options'] : array();

// Set some basic options
$customOptions = array(
	'filtersHidden'       => isset($data['options']['filtersHidden']) ? $data['options']['filtersHidden'] : empty($data['view']->activeFilters),
	'defaultLimit'        => isset($data['options']['defaultLimit']) ? $data['options']['defaultLimit'] : JFactory::getApplication()->get('list_limit', 20),
	'searchFieldSelector' => '#filter_search',
	'orderFieldSelector'  => '#list_fullordering'
);

$data['options'] = array_unique(array_merge($customOptions, $data['options']));

$formSelector = !empty($data['options']['formSelector']) ? $data['options']['formSelector'] : '#adminForm';
$filters      = false;
if (isset($data['view']->filterForm))
{
	$filters = $data['view']->filterForm->getGroup('filter');
}

// Load search tools
JHtml::_('searchtools.form', $formSelector, $data['options']);
?>

<div class="js-stools clearfix">
	<div class="clearfix">
		<div class="js-stools-container-bar">
			<label for="filter_search" class="element-invisible"
				aria-invalid="false"><?php echo JText::_('COM_TLPTEAM_SEARCH_FILTER_SUBMIT'); ?></label>

			<div class="btn-wrapper input-append">
				<?php echo $filters['filter_search']->input; ?>
				<button type="submit" class="btn hasTooltip" title=""
					data-original-title="<?php echo JText::_('COM_TLPTEAM_SEARCH_FILTER_SUBMIT'); ?>">
					<i class="icon-search"></i>
				</button>
			</div>
			<?php if ($filters): ?>
				<div class="btn-wrapper hidden-phone">
					<button type="button" class="btn hasTooltip js-stools-btn-filter" title=""
						data-original-title="<?php echo JText::_('COM_TLPTEAM_SEARCH_TOOLS_DESC'); ?>">
						<?php echo JText::_('COM_TLPTEAM_SEARCH_TOOLS'); ?> <i class="caret"></i>
					</button>
				</div>
			<?php endif; ?>

			<div class="btn-wrapper">
				<button type="button" class="btn hasTooltip js-stools-btn-clear" title=""
					data-original-title="<?php echo JText::_('COM_TLPTEAM_SEARCH_FILTER_CLEAR'); ?>">
					<?php echo JText::_('COM_TLPTEAM_SEARCH_FILTER_CLEAR'); ?>
				</button>
			</div>
		</div>
	</div>
	<!-- Filters div -->
	<div class="js-stools-container-filters hidden-phone clearfix" style="">
		<?php // Load the form filters ?>
		<?php if ($filters) : ?>
			<?php foreach ($filters as $fieldName => $field) : ?>
				<?php if ($fieldName != 'filter_search') : ?>
					<div class="js-stools-field-filter">
						<?php echo $field->input; ?>
					</div>
				<?php endif; ?>
			<?php endforeach; ?>
		<?php endif; ?>
	</div>
</div>                                                                                                                                                            views/teams/tmpl/default_layout14.php                                                               0000705                 00000004301 15242037122 0013657 0                                                                                                    ustar 00                                                                                                                                                                                                                                                       <?php
/**
 * @version     1.1
 * @package     com_tlpteam
 * @copyright   Copyright (C) 2013. All rights reserved.
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 * @author      TechLabPro <techlabpro@gmail.com> - http://www.techlabpro.com
 */
// no direct access
defined('_JEXEC') or die;
$detail_link=JRoute::_('index.php?option=com_tlpteam&view=team&id='.(int) $this->item->id);
extract($this->tlpconfig); 
if($link_type==2){ 
        $popup=' data-id="'.$this->item->id.'" class="tlp-single-item-popup"';
    }else{
        $popup= null;
    }

$html ='';
if (!empty($this->item->profile_image)):
$html .='<div class="single-team-area'. $image_style_class.'">';
  $html .='<div class="item-img">'; 
    $html .='<figure>';
        if($link_detail==1){
            $html .='<a href="'.$detail_link.'"'.$popup.'><img class="img-responsive '.$gray_scale.'" src="'. JURI::root().$image_storiage_path.'/m_'.$this->item->profile_image.'" alt="'.$this->item->name.'"/></a>';
        }else{
            $html .='<img class="img-responsive '.$gray_scale.'" src="'.JURI::root().$image_storiage_path.'/m_'.$this->item->profile_image.'" alt="'.$this->item->name.'"/>';
        } 
    $html .='</figure>';
  $html .='</div>';
    $html .='<div class="tlp-overlay">';
    $html .='<div class="item-info">';
      $html .='<div class="item-info-top">';
       if($name_field==1){
            if($link_detail==1){
                $html .='<h3><a href="'. $detail_link.'"'.$popup.'><span class="tlp-name">'. $this->item->name.'</span></a></h3>';
            }else{
                $html .='<h3><span class="tlp-name">'.$this->item->name.'</span></h3>';
            }
        }
        $html .='<div class="line"></div>';
      $html .='</div>';
      $html .='<div class="item-info-bottom">';
      if($position_field==1){
            if($link_detail==1){
                $html .='<div class="tlp-position"><a href="'.$detail_link.'" '.$popup.'>'. $this->item->position .'</a></div>';
            }else{
                $html .='<div class="tlp-position">'. $this->item->position.'</div>';
            }
         }
      $html .='</div>';
    $html .='</div>';
    $html .='</div>';
$html .='</div>';
endif;

echo $html;

                                                                                                                                                                                                                                                                                                                               views/teams/tmpl/default_layout13.php                                                               0000705                 00000011144 15242037122 0013661 0                                                                                                    ustar 00                                                                                                                                                                                                                                                       <?php
/**
 * @version     1.1
 * @package     com_tlpteam
 * @copyright   Copyright (C) 2013. All rights reserved.
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 * @author      TechLabPro <techlabpro@gmail.com> - http://www.techlabpro.com
 */
// no direct access
defined('_JEXEC') or die;
$detail_link=JRoute::_('index.php?option=com_tlpteam&view=team&id='.(int) $this->item->id);
extract($this->tlpconfig); 
if($link_type==2){ 
        $popup=' data-id="'.$this->item->id.'" class="tlp-single-item-popup"';
    }else{
        $popup= null;
    }

$html ='';

if (!empty($this->item->profile_image)):

$html .='<div class="single-team-area'. $image_style_class.'">';
    $html .='<figure>';
        if($link_detail==1){
            $html .='<a href="'.$detail_link.'"'.$popup.'><img class="img-responsive '.$gray_scale.'" src="'. JURI::root().$image_storiage_path.'/m_'.$this->item->profile_image.'" alt="'.$this->item->name.'"/></a>';
        }else{
            $html .='<img class="img-responsive '.$gray_scale.'" src="'.JURI::root().$image_storiage_path.'/m_'.$this->item->profile_image.'" alt="'.$this->item->name.'"/>';
        } 
    $html .='</figure>';
    $html .='<div class="tlp-overlay">';
      $html .='<div class="item-info">';
       if($name_field==1){
            if($link_detail==1){
                $html .='<h3><a href="'. $detail_link.'"'.$popup.'><span class="tlp-name">'. $this->item->name.'</span></a></h3>';
            }else{
                $html .='<h3><span class="tlp-name">'.$this->item->name.'</span></h3>';
            }
        }
      $html .='<div class="line"></div>';
      if($position_field==1){
            if($link_detail==1){
                $html .='<div class="tlp-position"><a href="'.$detail_link.'" '.$popup.'>'. $this->item->position .'</a></div>';
            }else{
                $html .='<div class="tlp-position">'. $this->item->position.'</div>';
            }
         }
        if($shortbio_field==1){
            if($link_detail==1){
               $html .='<div class="short-bio">
                   <p><a href="'.$detail_link.'" '.$popup.'>'.substr($this->item->short_bio, 0,$short_description_limit).'</a></p>
               </div>';
            }else{
                $html .='<div class="short-bio">
                   <p>'.substr($this->item->short_bio, 0,$short_description_limit).'</p>
               </div>';
            }
        }
      if($socialicon_field==1){ 
          $html .='<div class="social-icons">';  
             if($this->item->facebook!=''){ 
                 $html .='<a href="'.$this->item->facebook.'" target="_blank"><i class="fa fa-facebook"></i></a>';
             }
             if($this->item->twitter!=''){
                 $html .='<a href="'.$this->item->twitter.'" target="_blank"><i class="fa fa-twitter"></i></a>';
             }
             if($this->item->google_plus!=''){
                 $html .='<a href="'.$this->item->google_plus.'" target="_blank"><i class="fa fa-google-plus"></i></a>';
             }
             if($this->item->linkedin!=''){
                 $html .='<a href="'.$this->item->linkedin.'" target="_blank"><i class="fa fa-linkedin"></i></a>';
             }
             if($this->item->youtube!=''){
                 $html .='<a href="'.$this->item->youtube.'" target="_blank"><i class="fa fa-youtube"></i></a>';
             }
             if($this->item->vimeo!=''){
                 $html .='<a href="'.$this->item->vimeo.'" target="_blank"><i class="fa fa-vimeo"></i></a>';
             }
             if($this->item->instagram!=''){
                 $html .='<a href="'.$this->item->instagram.'" target="_blank"><i class="fa fa-instagram"></i></a>';
             }
             if($this->item->xing!=''){
                 $html .='<a href="'.$this->item->xing.'" target="_blank"><i class="fa fa-xing"></i></a>';
             }
             if($this->item->joomla!=''){
                 $html .='<a href="'.$this->item->joomla.'" target="_blank"><i class="fa fa-joomla"></i></a>';
             }
             if($this->item->wordpress!=''){
                 $html .='<a href="'.$this->item->wordpress.'" target="_blank"><i class="fa fa-wordpress"></i></a>';
             }
             if($this->item->behance!=''){
                 $html .='<a href="'.$this->item->behance.'" target="_blank"><i class="fa fa-behance"></i></a>';
             }
             if($this->item->dribbble!=''){
                 $html .='<a href="'.$this->item->dribbble.'" target="_blank"><i class="fa fa-dribbble"></i></a>';
             }
          $html .='</div>';
        }
      $html .='</div>';
    $html .='</div>';
$html .='</div>';
endif;

echo $html;
                                                                                                                                                                                                                                                                                                                                                                                                                            views/teams/tmpl/default.php                                                                        0000705                 00000112613 15242037122 0012123 0                                                                                                    ustar 00                                                                                                                                                                                                                                                       <?php
/**
 * @version     2.0
 * @package     com_tlpteam
 * @copyright   Copyright (C) 2013. All rights reserved.
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 * @author      TechLabPro <techlabpro@gmail.com> - http://www.techlabpro.com
 */
// no direct access
defined('_JEXEC') or die;

JHtml::addIncludePath(JPATH_COMPONENT . '/helpers/html');
JHtml::_('bootstrap.tooltip');

$user       = JFactory::getUser();
$userId     = $user->get('id');
$listOrder  = $this->state->get('list.ordering');
$listDirn   = $this->state->get('list.direction');
$canCreate  = $user->authorise('core.create', 'com_tlpteam');
$canEdit    = $user->authorise('core.edit', 'com_tlpteam');
$canCheckin = $user->authorise('core.manage', 'com_tlpteam');
$canChange  = $user->authorise('core.edit.state', 'com_tlpteam');
$canDelete  = $user->authorise('core.delete', 'com_tlpteam');

$app = JFactory::getApplication();
$tlpteam_params = JComponentHelper::getParams('com_tlpteam');
$image_storiage_path          = $tlpteam_params->get('image_path','images/tlpteam');
$g_primary_color              = $tlpteam_params->get('g_primary_color','#0d57e0');
$g_name_font_size             = $tlpteam_params->get('g_name_font_size','20');
$g_name_font_color            = $tlpteam_params->get('g_name_font_color');
$g_name_text_align            = $tlpteam_params->get('g_name_text_align');
$g_position_font_size         = $tlpteam_params->get('g_position_font_size');
$g_position_font_color        = $tlpteam_params->get('g_position_font_color');
$g_position_text_align        = $tlpteam_params->get('g_position_text_align');
$g_short_bio_font_color       = $tlpteam_params->get('g_short_bio_font_color');
$g_short_bio_text_align       = $tlpteam_params->get('g_short_bio_text_align');
$g_social_icon_background     = $tlpteam_params->get('g_social_icon_background');
$g_social_icon_color          = $tlpteam_params->get('g_social_icon_color');
$g_social_icon_size           = $tlpteam_params->get('g_social_icon_size','16');
$link_detail                  = $tlpteam_params->get('link_detail','1');
$link_type                    = $tlpteam_params->get('link_type','2');
$g_layout                     = $tlpteam_params->get('g_layout','layout1');
$g_item_to_item_margin        = $tlpteam_params->get('g_item_to_item_margin','1');
$g_overlay_opacity            = $tlpteam_params->get('g_overlay_opacity','.5');
$g_display_no                 = $tlpteam_params->get('g_display_no','4');
$g_display_no_tab             = $tlpteam_params->get('g_display_no_tab','3');
$g_display_no_mob             = $tlpteam_params->get('g_display_no_mob','1');
$bootstrap_version            = $tlpteam_params->get('bootstrap_version','1');
$g_overlay_color              = $tlpteam_params->get('g_overlay_color');
$g_image_style                = $tlpteam_params->get('g_image_style','1');
$g_name_field                 = $tlpteam_params->get('g_name_field','1');
$g_position_field             = $tlpteam_params->get('g_position_field','1');
$g_shortbio_field             = $tlpteam_params->get('g_shortbio_field','1');
$g_email_field                = $tlpteam_params->get('g_email_field','1');
$g_phoneno_field              = $tlpteam_params->get('g_phoneno_field','1');
$g_mobileno_field             = $tlpteam_params->get('g_mobileno_field','1');
$g_website_field              = $tlpteam_params->get('g_website_field','1');
$g_location_field             = $tlpteam_params->get('g_location_field','1');
$g_skill_field                = $tlpteam_params->get('g_skill_field','1');
$g_socialicon_field           = $tlpteam_params->get('g_socialicon_field','1');
$g_short_description_limit    = $tlpteam_params->get('g_short_description_limit','160');
$g_overlay_item_padding       = $tlpteam_params->get('g_overlay_item_padding','15');
$g_btn_bg                     = $tlpteam_params->get('g_btn_bg');
$g_btn_text_color             = $tlpteam_params->get('g_btn_text_color');
$g_btn_bg_hover               = $tlpteam_params->get('g_btn_bg_hover');
$g_gutter                     = $tlpteam_params->get('g_gutter');
$g_gray_scale                 = $tlpteam_params->get('g_gray_scale');

// get the menu parameters for use
// $input = JFactory::getApplication()->input;
// $menuitemid = $input->getInt( 'Itemid' );
// @$menu = JSite::getMenu();
$app = JFactory::getApplication();
$menu = $app->getMenu();
$active = $menu->getActive();
$itemId = $active->id;
$menuparams                   = $menu->getParams($itemId);
$category_id                  = $menuparams->get("category");
$m_primary_color              = $menuparams->get("m_primary_color");
$m_display_no                 = $menuparams->get("m_display_no");
$m_display_no_tab             = $menuparams->get("m_display_no_tab");
$m_display_no_mob             = $menuparams->get("m_display_no_mob");
$m_layout                     = $menuparams->get("m_layout");
$m_item_to_item_margin        = $menuparams->get('m_item_to_item_margin');
$m_name_font_size             = $menuparams->get('m_name_font_size');
$m_name_font_color            = $menuparams->get('m_name_font_color');
$m_name_text_align            = $menuparams->get('m_name_text_align');
$m_position_font_size         = $menuparams->get('m_position_font_size');
$m_position_font_color        = $menuparams->get('m_position_font_color');
$m_position_text_align        = $menuparams->get('m_position_text_align');
$m_short_bio_font_color       = $menuparams->get('m_short_bio_font_color');
$m_short_bio_text_align       = $menuparams->get('m_short_bio_text_align');
$m_social_icon_background     = $menuparams->get('m_social_icon_background');
$m_social_icon_color          = $menuparams->get('m_social_icon_color');
$m_social_icon_size           = $menuparams->get('m_social_icon_size');
$m_overlay_color              = $menuparams->get('m_overlay_color');
$m_overlay_opacity            = $menuparams->get('m_overlay_opacity');
$m_image_style                = $menuparams->get('m_image_style');
$m_name_field                 = $menuparams->get('m_name_field');
$m_position_field             = $menuparams->get('m_position_field');
$m_shortbio_field             = $menuparams->get('m_shortbio_field');
$m_email_field                = $menuparams->get('m_email_field');
$m_phoneno_field              = $menuparams->get('m_phoneno_field');
$m_mobileno_field             = $menuparams->get('m_mobileno_field');
$m_website_field              = $menuparams->get('m_website_field');
$m_location_field             = $menuparams->get('m_location_field');
$m_skill_field                = $menuparams->get('m_skill_field');
$m_socialicon_field           = $menuparams->get('m_socialicon_field');
$m_short_description_limit    = $menuparams->get('m_short_description_limit');
$m_overlay_item_padding       = $menuparams->get('m_overlay_item_padding');
$m_btn_bg                     = $menuparams->get('m_btn_bg');
$m_btn_text_color             = $menuparams->get('m_btn_text_color');
$m_btn_bg_hover               = $menuparams->get('m_btn_bg_hover');
$category                     = $menuparams->get('category');
$m_link_detail                = $menuparams->get('m_link_detail','');
$m_link_type                  = $menuparams->get('m_link_type','');
$m_gutter                     = $menuparams->get('m_gutter','');
$m_gray_scale                 = $menuparams->get('m_gray_scale','');
$layout2_image_area           = $menuparams->get('m_layout2_image_area','');
@$hide_showall                = $menuparams->get('m_hide_showall','');
@$mod_selected_category       = $menuparams->get('m_selected_category','');

if($m_primary_color!=''){ 
  $primary_color=$m_primary_color;
}else{ 
  $primary_color=$g_primary_color;
}
if($m_name_font_size!=''){
  $name_font_size=$m_name_font_size;
}else{
  $name_font_size=$g_name_font_size;
}
if($m_name_font_color!=''){
  $name_font_color=$m_name_font_color;
}else{
  $name_font_color=$g_name_font_color;
}
if($m_name_text_align!=''){
  $name_text_align=$m_name_text_align;
}else{
  $name_text_align=$g_name_text_align;
}
if($m_position_font_size!=''){
  $position_font_size=$m_position_font_size;
}else{
  $position_font_size=$g_position_font_size;
}
if($m_position_font_color!=''){
  $position_font_color=$m_position_font_color;
}else{
  $position_font_color=$g_position_font_color;
}
if($m_position_text_align!=''){
  $position_text_align=$m_position_text_align;
}else{
  $position_text_align=$g_position_text_align;
}
if($m_short_bio_font_color!=''){
  $short_bio_font_color=$m_short_bio_font_color;
}else{
  $short_bio_font_color=$g_short_bio_font_color;
}
if($m_short_bio_text_align!=''){
  $short_bio_text_align=$m_short_bio_text_align;
}else{
  $short_bio_text_align=$g_short_bio_text_align;
}
if($m_social_icon_background!=''){
  $social_icon_background=$m_social_icon_background;
}else{
  $social_icon_background=$g_social_icon_background;
}
if($m_social_icon_color!=''){
  $social_icon_color=$m_social_icon_color;
}else{
  $social_icon_color=$g_social_icon_color;
}
if($m_social_icon_size!=''){
  $social_icon_size=$m_social_icon_size;
}else{
  $social_icon_size=$g_social_icon_size;
}
if($m_image_style!=''){
  $image_style=$m_image_style;
}else{
  $image_style=$g_image_style;
}
if($m_item_to_item_margin!=''){
  $item_to_item_margin=$m_item_to_item_margin;
}else{
  $item_to_item_margin=$g_item_to_item_margin;
}
if($m_name_field!=''){
  $name_field=$m_name_field;
}else{
  $name_field=$g_name_field;
}
if($m_position_field!=''){
  $position_field=$m_position_field;
}else{
  $position_field=$g_position_field;
}
if($m_shortbio_field!=''){
  $shortbio_field=$m_shortbio_field;
}else{
  $shortbio_field=$g_shortbio_field;
}
if($m_email_field!=''){
  $email_field=$m_email_field;
}else{
  $email_field=$g_email_field;
}
if($m_phoneno_field!=''){
  $phoneno_field=$m_phoneno_field;
}else{
  $phoneno_field=$g_phoneno_field;
}
if($m_mobileno_field!=''){
  $mobileno_field=$m_mobileno_field;
}else{
  $mobileno_field=$g_mobileno_field;
}
if($m_website_field!=''){
  $website_field=$m_website_field;
}else{
  $website_field=$g_website_field;
}
if($m_location_field!=''){
  $location_field=$m_location_field;
}else{
  $location_field=$g_location_field;
}
if($m_skill_field!=''){
  $skill_field=$m_skill_field;
}else{
  $skill_field=$g_skill_field;
}
if($m_socialicon_field!=''){
  $socialicon_field=$m_socialicon_field;
}else{
  $socialicon_field=$g_socialicon_field;
}
if($m_overlay_opacity!=''){
  $overlay_opacity=$m_overlay_opacity;
}else{
  $overlay_opacity=$g_overlay_opacity;
}
if($m_short_description_limit!=''){
  $short_description_limit=$m_short_description_limit;
}else{
  $short_description_limit=$g_short_description_limit;
}
if($m_overlay_item_padding!=''){
  $overlay_item_padding=$m_overlay_item_padding;
}else{
  $overlay_item_padding=$g_overlay_item_padding;
}
if($m_overlay_color!=''){
  $overlay_color=$m_overlay_color;
}else{
  $overlay_color=$g_overlay_color;
}
if($m_btn_bg!=''){
  $btn_bg=$m_btn_bg;
}else{
  $btn_bg=$g_btn_bg;
}
if($m_btn_bg_hover!=''){
  $btn_bg_hover=$m_btn_bg_hover;
}else{
  $btn_bg_hover=$g_btn_bg_hover;
}
if($m_btn_text_color!=''){
  $btn_text_color=$m_btn_text_color;
}else{
  $btn_text_color=$g_btn_text_color;
}
if($m_link_detail!=''){
  $link_detail = $m_link_detail;
}else{
  $link_detail = $link_detail;
}
if($m_link_type!=''){
  $link_type = $m_link_type;
}else {
  $link_type = $link_type;
}
if($m_gray_scale!=''){
  $gray_scale = $m_gray_scale;
}else{
  $gray_scale = $g_gray_scale;
}

if($overlay_color){
  $hex = str_replace("#", "", $overlay_color);
   if(strlen($hex) == 3) {
      $r = hexdec($hex[0].$hex[0]);
      $g = hexdec($hex[1].$hex[1]);
      $b = hexdec($hex[2].$hex[2]);
   } else {
      $r = hexdec($hex[0].$hex[1]);
      $g = hexdec($hex[2].$hex[3]);
      $b = hexdec($hex[4].$hex[5]);
  }
}
if($m_layout!=''){ 
  $layout=$m_layout;
}else{
  $layout=$g_layout;
}
if($m_display_no!=''){
  $display_no=$m_display_no; 
  $md_grid=(12/$m_display_no);
}else{
  $display_no=$g_display_no; 
  $md_grid=(12/$g_display_no);
}

if ( $m_display_no_tab != '' ) {
  $sm_grid = ( 12 / $m_display_no_tab );
} else {
  $sm_grid = ( 12 / $g_display_no_tab );
}
if ( $m_display_no_mob != '' ) {
  $xs_grid = ( 12 / $m_display_no_mob );
} else {
  $xs_grid = ( 12 / $g_display_no_mob );
}

if($m_gutter !='') {
  $gutter = $m_gutter;
}else {
  $gutter = $g_gutter;
}

if($item_to_item_margin==0){
    $item_margin = 'allmargin0';
}else{
    $item_margin = '';
}
if($gray_scale==1){
  $grayscale_class = 'tlp-grayscale';
}else{
  $grayscale_class = '';
}
if($image_style==2){ 
  $image_style_class = ' tlp-round-picture';
}else {
  $image_style_class = '';
}

$layout2_content_area = (12-$layout2_image_area);

if($bootstrap_version==3){
    $bss="col-md-".$md_grid." col-lg-".$md_grid." col-sm-".$sm_grid. " col-xs-".$xs_grid;

    $image_area="col-md-".$layout2_image_area." col-lg-".$layout2_image_area." col-sm-6 col-xs-6 paddingl0";
    $content_area="col-md-".$layout2_content_area." col-lg-".$layout2_content_area." col-sm-6 col-xs-6 paddingr0";
      
  }else{
    $bss="tlp-col-md-".$md_grid." tlp-col-lg-".$md_grid." tlp-col-sm-". $sm_grid. " tlp-col-xs-".$xs_grid;

    $image_area="tlp-col-md-".$layout2_image_area." tlp-col-lg-".$layout2_image_area." tlp-col-sm-6 tlp-col-xs-6";
    $content_area="tlp-col-md-".$layout2_content_area." tlp-col-lg-".$layout2_content_area." tlp-col-sm-6 tlp-col-xs-6";
  }


$document = JFactory::getDocument();

$style  = '.tlp-team .skill-prog .fill, .tlp-tooltip + .tooltip > .tooltip-inner, .tlp-team .layout1 .tlp-content-layout1, .tlp-team .layout6 .tlp-info-block, .tlp-popup-wrap .tlp-popup-navigation-wrap { background: ' . $primary_color . '; }';
$style .= '.tlp-team .skill-prog .fill,.tlp-team .contact-info .fa { color: ' . $primary_color . '; }';
$style .= '.tlp-team .skill-prog .fill { color: ' . $primary_color . '; }';
$style .= '.tooltip.top .tooltip-arrow { border-top-color: ' . $primary_color . '; }';
$style .= '.tlp-team .social-icons a { background: ' . $social_icon_background . '!important; color: '. $social_icon_color. '!important; font-size: '. $social_icon_size .'px; }';
if($social_icon_background==''){
$style .= '.tlp-team .social-icons a:hover .fa-facebook,.tlp-team .social-icons a:hover .fa-twitter, .tlp-team .social-icons a:hover .fa-linkedin, .tlp-team .social-icons a:hover .fa-google-plus, .tlp-team .social-icons a:hover .fa-youtube, .tlp-team .social-icons a:hover .fa-vimeo, .tlp-team .social-icons a:hover .fa-instagram 
, .tlp-team .social-icons a:hover .fa-xing , .tlp-team .social-icons a:hover .fa-joomla , .tlp-team .social-icons a:hover .fa-wordpress , .tlp-team .social-icons a:hover .fa-behance , .tlp-team .social-icons a:hover .fa-dribbble  { background: none; color: '. $social_icon_color. '; opacity: .8; }';
}
$style .= '.tlp-team .button-group button { background:'.$btn_bg.' !important; color:'.$btn_text_color.';}';
$style .= '.tlp-team .button-group button:hover,.tlp-team .button-group button.selected { background:'.$btn_bg_hover.'!important;}';

if($layout=='layout1'){
$style .= '.tlp-team .layout1 .single-team-area h3,.tlp-team .layout1 .single-team-area h3 a { color: ' . $name_font_color . '; font-size: '. $name_font_size. 'px; text-align: '. $name_text_align .'; }';
$style .= '.tlp-team .layout1 .tlp-position { color: ' . $position_font_color . '; font-size: '. $position_font_size. 'px; text-align: '. $position_text_align .'; }';
$style .= '.tlp-team .layout1 .short-bio p { color: ' . $short_bio_font_color . '; text-align: '. $short_bio_text_align .'; }';
if($overlay_color){
$style .= '.tlp-team .layout1 .overlay { background-color: rgba(' . $r.','.$g.','.$b . ','.$overlay_opacity.'); }';
}
}
if($layout=='layout2'){
$style .= '.tlp-team .layout2 h3,.tlp-team .layout2 h3 a { color: ' . $name_font_color . '; font-size: '. $name_font_size. 'px; text-align: '. $name_text_align .'; }';
$style .= '.tlp-team .layout2 .tlp-position { color: ' . $position_font_color . '; font-size: '. $position_font_size. '; text-align: '. $position_text_align .'; }';
$style .= '.tlp-team .layout2 .short-bio p { color: ' . $short_bio_font_color . '; text-align: '. $short_bio_text_align .'; }';
}
if($layout=='layout3'){
$style .= '.tlp-team .layout3 h3,.tlp-team .layout3 h3 a { color: ' . $name_font_color . '; font-size: '. $name_font_size. 'px; text-align: '. $name_text_align .'; }';
$style .= '.tlp-team .layout3 .tlp-position { color: ' . $position_font_color . '; font-size: '. $position_font_size. 'px; text-align: '. $position_text_align .'; }';
$style .= '.tlp-team .layout3 .short-bio p { color: ' . $short_bio_font_color . '; text-align: '. $short_bio_text_align .'; }';
$style .= '.tlp-team .layout3 .social-icons { text-align: center; }';
}
if($layout=='layout4'){
$style .= '.tlp-team .layout4 .single-team-area h3,.tlp-team .layout4 .single-team-area h3 a { color: ' . $name_font_color . '; font-size: '. $name_font_size. 'px; text-align: '. $name_text_align .'; }';
$style .= '.tlp-team .layout4 .tlp-position,.tlp-team .layout4 .tlp-position a { color: ' . $position_font_color . '; font-size: '. $position_font_size. 'px; text-align: '. $position_text_align .'; }';
$style .= '.tlp-team .layout4 .short-bio p,.tlp-team .layout4 .short-bio p a { color: ' . $short_bio_font_color . '; text-align: '. $short_bio_text_align .'; }';
if($overlay_color){
$style .= '.tlp-team .layout4 .single-team-area .overlay { background-color: rgba(' . $r.','.$g.','.$b . ','.$overlay_opacity.'); }';
}
$style .= '.tlp-team .layout4 .single-team-area .tlp-content { padding-top: ' . $overlay_item_padding . '%; }';
}
if($layout=='layout5'){
$style .= '.tlp-team .layout5 h3,.tlp-team .layout5 h3 a { color: ' . $name_font_color . '; font-size: '. $name_font_size. 'px; text-align: '. $name_text_align .'px; }';
$style .= '.tlp-team .layout5 .tlp-position { color: ' . $position_font_color . '; font-size: '. $position_font_size. 'px; text-align: '. $position_text_align .'; }';
}
if($layout=='layout6'){
$style .= '.tlp-team .contact-info a,.tlp-team .contact-info .fa { color: ' . $name_font_color .'; }';
$style .= '.tlp-team .layout6 .tlp-content h3 span,.tlp-team .layout6 .tlp-content h3 a span { color: ' . $name_font_color . '; font-size: '. $name_font_size. 'px; text-align: '. $name_text_align .'; }';
$style .= '.tlp-team .layout6 .tlp-position,.tlp-team .layout6 .tlp-position a { color: ' . $position_font_color . '; font-size: '. $position_font_size. 'px; text-align: '. $position_text_align .'; }';
$style .= '.tlp-team .layout6 .short-bio,.tlp-team .layout6 .short-bio a { color: ' . $short_bio_font_color . '; text-align: '. $short_bio_text_align .'; }';
$style .= '.tlp-team .layout6 .tlp-right-arrow:after { border-color: transparent ' . $primary_color .'; }';
$style .= '.tlp-team .layout6 .tlp-left-arrow:after { border-color: ' . $primary_color .' transparent transparent; }';
}
if($layout=='layout7'){
$style .= '.tlp-team .layout7 .single-team-area h3,.tlp-team .layout7 .single-team-area h3 a { color: ' . $name_font_color . '; font-size: '. $name_font_size. 'px; text-align: '. $name_text_align .'; }';
$style .= '.tlp-team .layout7 .tlp-position,.tlp-team .layout7 .tlp-position a { color: ' . $position_font_color . '; font-size: '. $position_font_size. 'px; text-align: '. $position_text_align .'; }';
$style .= '.tlp-team .layout7 .short-bio,.tlp-team .layout7 .short-bio a { color: ' . $short_bio_font_color . '; text-align: '. $short_bio_text_align .'; }';
if($overlay_color){
$style .= '.tlp-team .layout7 figcaption:hover { background-color: rgba(' . $r.','.$g.','.$b . ','.$overlay_opacity.'); }';
}
$style .= '.tlp-team .layout7 .tlp-team-item h3 { padding-top: ' . $overlay_item_padding . '%; }';
}
if($layout=='layout8'){
$style .= '.tlp-team .layout8 .tlp-overlay h3,.tlp-team .layout8 .tlp-overlay h3 a { color: ' . $name_font_color . '; font-size: '. $name_font_size. 'px; text-align: '. $name_text_align .'; }';
$style .= '.tlp-team .layout8 .tlp-position,.tlp-team .layout8 .tlp-position a { color: ' . $position_font_color . '; font-size: '. $position_font_size. 'px; text-align: '. $position_text_align .'; }';
$style .= '.tlp-team .layout8 .tlp-content p { color: ' . $short_bio_font_color . '; text-align: '. $short_bio_text_align .'; }';
if($overlay_color){
$style .= '.tlp-team .layout8 .tlp-overlay .tlp-title { background-color: rgba(' . $r.','.$g.','.$b . ','.$overlay_opacity.'); }';
}
//$style .='.tlp-team .layout7 .tlp-team-item h3 { padding-top: '. $overlay_item_padding.';}';
}
if($layout=='layout9'){
$style .= '.tlp-team .layout9 .single-team-area h3,.tlp-team .layout9 .single-team-area h3 a { color: ' . $name_font_color . '; font-size: '. $name_font_size. 'px; text-align: '. $name_text_align .'; }';
$style .= '.tlp-team .layout9 .tlp-position,.tlp-team .layout9 .tlp-position a { color: ' . $position_font_color . '; font-size: '. $position_font_size. 'px; text-align: '. $position_text_align .'; }';
$style .= '.tlp-team .layout9 .short-bio p,.tlp-team .layout9 .short-bio p a { color: ' . $short_bio_font_color . '; text-align: '. $short_bio_text_align .'; }';
if($overlay_color){
$style .= '.tlp-team .layout9 .single-team-area:hover .tlp-overlay { background-color: rgba(' . $r.','.$g.','.$b . ','.$overlay_opacity.'); }';
}
$style .= '.tlp-team .layout9 .single-team-area:hover h3 { margin-top: ' . $overlay_item_padding . '%; }';
}
if($layout=='layout10'){
$style .= '.tlp-team .layout10 .single-team-area h3,.tlp-team .layout10 .single-team-area h3 a, .tlp-team .layout10 .tlp-team-item .tlp-info h3,.tlp-team .layout10 .tlp-team-item .tlp-info h3 a { color: ' . $name_font_color . '; font-size: '. $name_font_size. 'px; text-align: '. $name_text_align .'; }';
$style .= '.tlp-team .layout10 .tlp-position,.tlp-team .layout10 .tlp-position a { color: ' . $position_font_color . '; font-size: '. $position_font_size. 'px; text-align: '. $position_text_align .'; }';
$style .= '.tlp-team .layout10 .tlp-overlay p,.tlp-team .layout10 .tlp-overlay p a { color: ' . $short_bio_font_color . '; text-align: '. $short_bio_text_align .'; }';
if($overlay_color){
$style .= '.tlp-team .layout10 .image-container:hover .tlp-overlay { background-color: rgba(' . $r.','.$g.','.$b . ','.$overlay_opacity.'); }';
}
}
if($layout=='layout11'){
$style .= '.tlp-team .layout11 .single-team-area .tlp-title h3,.tlp-team .layout11 .single-team-area .tlp-title h3 a { color: ' . $name_font_color . '; font-size: '. $name_font_size. 'px; text-align: '. $name_text_align .'; }';
$style .= '.tlp-team .layout11 .tlp-position, .tlp-team .layout11 .tlp-position a { color: ' . $position_font_color . '; font-size: '. $position_font_size. 'px; text-align: '. $position_text_align .'; }';

if($overlay_color){
$style .= '.tlp-team .layout11 .single-team-area .tlp-title { background-color: rgba(' . $r.','.$g.','.$b . ','.$overlay_opacity.'); }';
}
}

if($layout=='layout12'){
$style .= '.tlp-team .layout12 .single-team-area h3 span { background:'.$primary_color.';}';
$style .= '.tlp-team .layout12 .single-team-area h3,.tlp-team .layout12 .single-team-area h3 a { color: ' . $name_font_color . '; font-size: '. $name_font_size. 'px; text-align: '. $name_text_align .'; }';
$style .= '.tlp-team .layout12 .tlp-position,.tlp-team .layout12 .tlp-position a { color: ' . $position_font_color . '; font-size: '. $position_font_size. 'px; text-align: '. $position_text_align .'; }';
$style .= '.tlp-team .layout12 .short-bio p,.tlp-team .layout12 .short-bio p a { color: ' . $short_bio_font_color . '; text-align: '. $short_bio_text_align .'; }';
if($overlay_color){
$style .= '.tlp-team .layout12 .single-team-area .tlp-title { background-color: rgba(' . $r.','.$g.','.$b . ','.$overlay_opacity.'); }';
$style .= '.tlp-team .layout12 .single-team-area:hover .tlp-overlay { background-color: rgba(' . $r.','.$g.','.$b . ','.$overlay_opacity.'); }';
}
$style .='.tlp-team .layout12 .single-team-area:hover h3 { margin-top:'.$overlay_item_padding.'%;}';
}

if($layout=='layout13'){
$style .= '.tlp-team .layout13 .single-team-area h3,.tlp-team .layout13 .single-team-area h3 a { color: ' . $name_font_color . '; font-size: '. $name_font_size. 'px; text-align: '. $name_text_align .'; }';
$style .= '.tlp-team .layout13 .tlp-position,.tlp-team .layout13 .tlp-position a { color: ' . $position_font_color . '; font-size: '. $position_font_size. 'px; text-align: '. $position_text_align .'; }';
$style .= '.tlp-team .layout13 .item-info p,.tlp-team .layout13 .item-info p a { color: ' . $short_bio_font_color . '; text-align: '. $short_bio_text_align .'; }';
$style .= '.tlp-team .layout13 .tlp-overlay .item-info { padding-top:'.$overlay_item_padding.'%;}';
if($overlay_color){
$style .= '.tlp-team .layout13 .tlp-overlay { background-color: rgba(' . $r.','.$g.','.$b . ','.$overlay_opacity.'); }';
}
}
if($layout=='layout14'){
$style .= '.tlp-team .layout14 .single-team-area h3,.tlp-team .layout14 .single-team-area h3 a { color: ' . $name_font_color . '; font-size: '. $name_font_size. 'px; text-align: '. $name_text_align .'; }';
$style .= '.tlp-team .layout14 .tlp-position,.tlp-team .layout14 .tlp-position a { color: ' . $position_font_color . '; font-size: '. $position_font_size. 'px; text-align: '. $position_text_align .'; }';
$style .= '.tlp-team .layout14 .item-info p { color: ' . $short_bio_font_color . '; text-align: '. $short_bio_text_align .'; }';
$style .= '.tlp-team .layout14 .tlp-overlay .item-info { padding-top:'.$overlay_item_padding.'%;}';
if($overlay_color){
$style .= '.tlp-team .layout14 .tlp-overlay { background-color: rgba(' . $r.','.$g.','.$b . ','.$overlay_opacity.'); }';
}
}

if($layout=='isotope1'){
$style .= '.tlp-team .isotope1 .team-item h3,.tlp-team .isotope1 .team-item h3 a { color: ' . $name_font_color . '; font-size: '. $name_font_size. 'px; text-align: '. $name_text_align .'; }';
$style .= '.tlp-team .isotope1 .team-item .overlay .tlp-position, .tlp-team .isotope1 .team-item .overlay .tlp-position a { color: ' . $position_font_color . '; font-size: '. $position_font_size. 'px; text-align: '. $position_text_align .'; }';
$style .= '.tlp-team .isotope1 .overlay .short-bio, .tlp-team .isotope1 .overlay .short-bio a { color: ' . $short_bio_font_color . '; text-align: '. $short_bio_text_align .'; }';
if($overlay_color){
$style .= '.tlp-team .isotope1 .team-item .overlay { background-color: rgba(' . $r.','.$g.','.$b . ','.$overlay_opacity.'); }';
}
}
if($layout=='isotope2'){
$style .= '.tlp-team .isotope2 h3,.tlp-team .isotope2 h3 a { color: ' . $name_font_color . '; font-size: '. $name_font_size. 'px; text-align: '. $name_text_align .'; }';
$style .= '.tlp-team .isotope2 .tlp-position { color: ' . $position_font_color . '; font-size: '. $position_font_size. 'px; text-align: '. $position_text_align .'; }';
$style .= '.tlp-team .isotope2 .short-bio { color: ' . $short_bio_font_color . '; text-align: '. $short_bio_text_align .'; }';
}
if($layout=='isotope3'){
$style .= '.tlp-team .isotope3 .single-team-area h3,.tlp-team .isotope3 .single-team-area h3 a { color: ' . $name_font_color . '; font-size: '. $name_font_size. 'px; text-align: '. $name_text_align .'; }';
$style .= '.tlp-team .isotope3 .tlp-position { color: ' . $position_font_color . '; font-size: '. $position_font_size. 'px; text-align: '. $position_text_align .'; }';
$style .= '.tlp-team .isotope3 .short-bio { color: ' . $short_bio_font_color . '; text-align: '. $short_bio_text_align .'; }';
if($overlay_color){
$style .= '.tlp-team .isotope3 .single-team-area:hover .tlp-overlay{ background-color: rgba(' . $r.','.$g.','.$b . ','.$overlay_opacity.'); }';
}
$style .= '.tlp-team .isotope3 .single-team-area:hover h3 { margin-top: ' . $overlay_item_padding . '%; }';
}
if($layout=='isotope4'){
$style .= '.tlp-team .isotope4 .tlp-team-item h3,.tlp-team .isotope4 .tlp-team-item h3 a  { color: ' . $name_font_color . '!important; font-size: '. $name_font_size. 'px; text-align: '. $name_text_align .'; }';
$style .= '.tlp-team .isotope4 .tlp-position,.tlp-team .isotope4 .tlp-position a { color: ' . $position_font_color . '; font-size: '. $position_font_size. 'px; text-align: '. $position_text_align .'; }';
$style .= '.tlp-team .isotope4 .short-bio { color: ' . $short_bio_font_color . '; text-align: '. $short_bio_text_align .'; }';
if($overlay_color){
$style .= '.tlp-team .isotope4 figcaption:hover { background-color: rgba(' . $r.','.$g.','.$b . ','.$overlay_opacity.'); }';
}
$style .= '.tlp-team .isotope4 .tlp-team-item h3 { padding-top: ' . $overlay_item_padding . '%; }';

}
if($layout=='isotope5'){
$style .= '.tlp-team .isotope5 .single-team-area .tlp-title h3,.tlp-team .isotope5 .single-team-area .tlp-title h3 a { color: ' . $name_font_color . '; font-size: '. $name_font_size. 'px; text-align: '. $name_text_align .'; }';
$style .= '.tlp-team .isotope5 .tlp-position,.tlp-team .isotope5 .tlp-position a { color: ' . $position_font_color . '; font-size: '. $position_font_size. 'px; text-align: '. $position_text_align .'; }';
$style .= '.tlp-team .isotope5 .tlp-content p { color: ' . $short_bio_font_color . '; text-align: '. $short_bio_text_align .'; }';
if($overlay_color){
$style .= '.tlp-team .isotope5 .single-team-area .tlp-title { background-color: rgba(' . $r.','.$g.','.$b . ','.$overlay_opacity.'); }';
}
$style .= '.tlp-team .isotope5 .single-team-area .social-icons { padding-top: ' . $overlay_item_padding . '%; }';

}
if($layout=='isotope6'){
$style .= '.tlp-team .isotope6 .single-team-area h3 span { background:'.$primary_color.';}';
$style .= '.tlp-team .isotope6 .single-team-area h3,.tlp-team .isotope6 .single-team-area h3 a { color: ' . $name_font_color . '; font-size: '. $name_font_size. 'px; text-align: '. $name_text_align .'; }';
$style .= '.tlp-team .isotope6 .tlp-position,.tlp-team .isotope6 .tlp-position a { color: ' . $position_font_color . '; font-size: '. $position_font_size. 'px; text-align: '. $position_text_align .'; }';
$style .= '.tlp-team .isotope6 .short-bio p, .tlp-team .isotope6 .short-bio p a { color: ' . $short_bio_font_color . '; text-align: '. $short_bio_text_align .'; }';
if($overlay_color){
$style .= '.tlp-team .isotope6 .single-team-area .tlp-title { background-color: rgba(' . $r.','.$g.','.$b . ','.$overlay_opacity.'); }';
$style .= '.tlp-team .isotope6 .single-team-area:hover .tlp-overlay { background-color: rgba(' . $r.','.$g.','.$b . ','.$overlay_opacity.'); }';
}
$style .= '.tlp-team .isotope6 .single-team-area:hover h3 { margin-top: ' . $overlay_item_padding . '%; }';
}
if($layout=='isotope7'){
$style .= '.tlp-team .isotope7 .single-team-area h3,.tlp-team .isotope7 .single-team-area h3 a { color: ' . $name_font_color . '; font-size: '. $name_font_size. 'px; text-align: '. $name_text_align .'; }';
$style .= '.tlp-team .isotope7 .tlp-position, .tlp-team .isotope7 .tlp-position a { color: ' . $position_font_color . '; font-size: '. $position_font_size. 'px; text-align: '. $position_text_align .'; }';
$style .= '.tlp-team .isotope7 .tlp-overlay .short-bio p,.tlp-team .isotope7 .tlp-overlay .short-bio p a { color: ' . $short_bio_font_color . '; text-align: '. $short_bio_text_align .'; }';
if($overlay_color){
$style .= '.tlp-team .isotope7 .tlp-overlay { background-color: rgba(' . $r.','.$g.','.$b . ','.$overlay_opacity.'); }';
}
$style .= '.tlp-team .isotope7 .tlp-overlay .item-info { padding-top:'.$overlay_item_padding.'%; }';
}

if($layout=='isotope8'){
$style .= '.tlp-team .isotope8 .single-team-area h3,.tlp-team .isotope8 .single-team-area h3 a { color: ' . $name_font_color . '; font-size: '. $name_font_size. 'px; text-align: '. $name_text_align .'; }';
$style .= '.tlp-team .isotope8 .tlp-position, .tlp-team .isotope8 .tlp-position a { color: ' . $position_font_color . '; font-size: '. $position_font_size. 'px; text-align: '. $position_text_align .'; }';
$style .= '.tlp-team .isotope8 .item-info p { color: ' . $short_bio_font_color . '; text-align: '. $short_bio_text_align .'; }';
$style .= '.tlp-team .isotope8 .tlp-overlay .item-info { padding-top:'.$overlay_item_padding.'%;}';
if($overlay_color){
$style .= '.tlp-team .isotope8 .tlp-overlay { background-color: rgba(' . $r.','.$g.','.$b . ','.$overlay_opacity.'); }';
}
}
if($layout=='isotope9'){
$style .= '.tlp-team .isotope9 .single-team-area h3,.tlp-team .isotope9 .single-team-area h3 a { color: ' . $name_font_color . '; font-size: '. $name_font_size. 'px; text-align: '. $name_text_align .'; }';
$style .= '.tlp-team .isotope9 .tlp-position { color: ' . $position_font_color . '; font-size: '. $position_font_size. 'px; text-align: '. $position_text_align .'; }';
$style .= '.tlp-team .isotope9 .short-bio p { color: ' . $short_bio_font_color . '; text-align: '. $short_bio_text_align .'; }';
if($overlay_color){
$style .= '.tlp-team .isotope9 .overlay { background-color: rgba(' . $r.','.$g.','.$b . ','.$overlay_opacity.'); }';
}
}
if($gutter){
  $style .= '.tlp-team .tlp-equal-height { margin-bottom: 0px;}';
  $style .= '.tlp-team [class*=tlp-col-] { padding-left : '.$gutter.'px; padding-right : '.$gutter.'px; margin-bottom : '.($gutter*2).'px; }';
  $style .= '.tlp-row { margin-left : -'.$gutter.'px!important; margin-right : -'.$gutter.'px!important;}';
  
}
$document->addStyleDeclaration( $style );
?>
<?php
$this->tlpconfig= array(
    'image_storiage_path' => $image_storiage_path,
    'category_id' =>$category_id,
    'bss' =>$bss,
    'display_no' =>$display_no,
    'link_detail' => $link_detail,
    'link_type' => $link_type,
    'item_to_item_margin'=>$item_to_item_margin,
    'bootstrap_version'=>$bootstrap_version,
    'name_field'=>$name_field,
    'shortbio_field'=>$shortbio_field,
    'position_field'=>$position_field,
    'email_field'=>$email_field,
    'phoneno_field'=>$phoneno_field,
    'mobileno_field'=>$mobileno_field,
    'website_field'=>$website_field,
    'location_field'=>$location_field,
    'skill_field'=>$skill_field,
    'socialicon_field'=>$socialicon_field,
    'short_description_limit'=>$short_description_limit,
    'image_style'=>$image_style,
    'image_area'=>$image_area,
    'content_area'=>$content_area,
    'item_margin'=>$item_margin,
    'gray_scale'=>$grayscale_class,
    'image_style_class'=>$image_style_class,
    'hide_showall' => $hide_showall,
    'mod_selected_category' => $mod_selected_category
);

?>
<div class="tlp-team-wrap">
<?php if(($layout=='isotope1')||($layout=='isotope2')||($layout=='isotope3')||($layout=='isotope4')||($layout=='isotope5')||($layout=='isotope6')||($layout=='isotope7')||($layout=='isotope8')||($layout=='isotope9')){ ?>
<div class="container-fluid">
  <div class="tlp-row tlp-team">
  	<div class="<?php echo $layout;?>">
  		<?php
  			$this->item = & $item;
  			echo $this->loadTemplate($layout);
  		?>
  	</div>
  </div>
</div>
<?php }elseif($layout=='layout5'){?>
<form action="<?php echo JRoute::_('index.php?option=com_tlpteam&view=teams'); ?>" method="post" name="adminForm" id="adminForm">
    <div class="container-fluid">
  		<div class="tlp-row">
  			<div class="tlp-team single-team-area">
  				<div class="single-team <?php if($image_style==2){?>tlp-round-picture <?php }?> <?php echo $layout;?>">
  					<table class="table table-striped table-responsive">
  						<?php
  						  foreach ($this->items as &$item) : 
     							$this->item = & $item;
     							echo $this->loadTemplate($layout);
     						endforeach; ?>
  					</table>
  				</div>
  			</div>
  		</div>
  	</div>
	<div class="container-fluid">
		<div class="tlp-row">
	     	<?php echo $this->pagination->getListFooter(); ?>
		</div>
	</div>
	<input type="hidden" name="task" value="" />
	<input type="hidden" name="boxchecked" value="0" />
	<input type="hidden" name="filter_order" value="<?php echo $listOrder; ?>" />
	<input type="hidden" name="filter_order_Dir" value="<?php echo $listDirn; ?>" />
	<?php echo JHtml::_('form.token'); ?>
</form>

<?php }else{?>

<form action="<?php echo JRoute::_('index.php?option=com_tlpteam&view=teams');?>" method="post" name="adminForm" id="adminForm">
  <div class="container-fluid tlp-team">
		<div class="tlp-row <?php echo $layout;?> ">
				<?php
				    $j=0;$k=1; $i=2;
				    $this->l8 = 0;
				    $count = count($this->items);
					foreach ($this->items as &$item) :
						
						$j++;
					if($k== 1){
					//echo '<div class="row-fluid margin-bottom">';
						} ?>
					<div class="<?php echo $bss.' '.$image_style_class;?> tlp-equal-height <?php if($item_to_item_margin==0){echo 'allmargin0';}?> ">
   					<?php
   						$this->item = & $item;
   						$this->k = & $k;
   						echo $this->loadTemplate($layout);
   					?>
					</div>
					<?php
				     if($k == $display_no || $count == $j){
				     	//echo '</div>';
				     	if($this->l8 == 0){
				     		$this->l8 = 1;
				     	}else if($this->l8 == 1){
				     		$this->l8 = 0;
				     	}
				     $k=0;
					 }
					 $k++; $i++;

				 endforeach;
				 $j;?>
		</div>
	</div>
<div class="container-fluid">
	<div class="tlp-row">
     	<?php echo $this->pagination->getListFooter(); ?>
	</div>
</div>
<input type="hidden" name="task" value="" />
<input type="hidden" name="boxchecked" value="0" />
<input type="hidden" name="filter_order" value="<?php echo $listOrder; ?>" />
<input type="hidden" name="filter_order_Dir" value="<?php echo $listDirn; ?>" />
<?php echo JHtml::_('form.token'); ?>
</form>
<?php }?>
<?php $allmembers=TlpteamFrontendHelper::getAllMembersCount($category_id);
      $itemIdsHtml = null;
      foreach($allmembers as $mc){
        $itemIdsHtml .="<span>{$mc->id}</span>";
      }
        if(count($allmembers) > 0){
          $html = null;
            $html .= "<span class='tlp-team-item-count'>";
              $html .=  $itemIdsHtml;
            $html .=  "</span>";
          echo $html;
        }
      ?>
</div>
<script src="<?php echo JURI::root();?>components/com_tlpteam/assets/js/imagesloaded.pkgd.min.js" type="text/javascript"></script>
<script src="<?php echo JURI::root();?>components/com_tlpteam/assets/js/isotope.pkgd.min.js" type="text/javascript"></script>
<script src="<?php echo JURI::root();?>components/com_tlpteam/assets/js/tlp-team.js" type="text/javascript"></script>
<script src="<?php echo JURI::root();?>components/com_tlpteam/assets/js/tooltip.min.js" type="text/javascript"></script>
                                                                                                                     views/teams/tmpl/default_layout9.php                                                                0000705                 00000011361 15242037122 0013607 0                                                                                                    ustar 00                                                                                                                                                                                                                                                       <?php
/**
 * @version     1.1
 * @package     com_tlpteam
 * @copyright   Copyright (C) 2013. All rights reserved.
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 * @author      TechLabPro <techlabpro@gmail.com> - http://www.techlabpro.com
 */
// no direct access
defined('_JEXEC') or die;
$detail_link=JRoute::_('index.php?option=com_tlpteam&view=team&id='.(int) $this->item->id);
extract($this->tlpconfig); 
if($link_type==2){ 
        $popup=' data-id="'.$this->item->id.'" class="tlp-single-item-popup"';
    }else{
        $popup= null;
    }

$html ='';
if (!empty($this->item->profile_image)):
$html .='<div class="single-team-area'. $image_style_class.'">';
    $html .='<figure>';
      $html .='<a href="'.$detail_link.'"'.$popup.'><img class="img-responsive '.$gray_scale.'" src="'. JURI::root().$image_storiage_path.'/m_'.$this->item->profile_image.'" alt="'.$this->item->name.'"/></a>';            
        $html .='<figcaption>';
            $html .='<div class="tlp-overlay">';
                if($name_field==1){
                    if($link_detail==1){
                        $html .='<h3><a href="'. $detail_link.'"'.$popup.'><span class="tlp-name">'. $this->item->name.'</span></a></h3>';
                    }else{
                        $html .='<h3><span class="tlp-name">'.$this->item->name.'</span></h3>';
                    }
                }
               if($position_field==1){
                    if($link_detail==1){
                        $html .='<p class="tlp-position"><a href="'.$detail_link.'" '.$popup.'>'. $this->item->position .'</a></p>';
                    }else{
                        $html .='<p class="tlp-position">'. $this->item->position.'</p>';
                    }
                 }
                if($shortbio_field==1){
                    if($link_detail==1){
                       $html .='<div class="short-bio">
                           <p><a href="'.$detail_link.'" '.$popup.'>'.substr($this->item->short_bio, 0,$short_description_limit).'</a></p>
                       </div>';
                    }else{
                        $html .='<div class="short-bio">
                           <p>'.substr($this->item->short_bio, 0,$short_description_limit).'</p>
                       </div>';
                    }
                }
                $html .='<p class="social-icons">';  
                    if($this->item->facebook!=''){ 
                      $html .='<a href="'.$this->item->facebook.'" target="_blank"><i class="fa fa-facebook"></i></a>';
                    }
                    if($this->item->twitter!=''){
                      $html .='<a href="'.$this->item->twitter.'" target="_blank"><i class="fa fa-twitter"></i></a>';
                    }
                    if($this->item->google_plus!=''){
                      $html .='<a href="'.$this->item->google_plus.'" target="_blank"><i class="fa fa-google-plus"></i></a>';
                    }
                    if($this->item->linkedin!=''){
                      $html .='<a href="'.$this->item->linkedin.'" target="_blank"><i class="fa fa-linkedin"></i></a>';
                    }
                    if($this->item->youtube!=''){
                      $html .='<a href="'.$this->item->youtube.'" target="_blank"><i class="fa fa-youtube"></i></a>';
                    }
                    if($this->item->vimeo!=''){
                      $html .='<a href="'.$this->item->vimeo.'" target="_blank"><i class="fa fa-vimeo"></i></a>';
                    }
                    if($this->item->instagram!=''){
                      $html .='<a href="'.$this->item->instagram.'" target="_blank"><i class="fa fa-instagram"></i></a>';
                    }
                    if($this->item->xing!=''){
                      $html .='<a href="'.$this->item->xing.'" target="_blank"><i class="fa fa-xing"></i></a>';
                    }
                    if($this->item->joomla!=''){
                      $html .='<a href="'.$this->item->joomla.'" target="_blank"><i class="fa fa-joomla"></i></a>';
                    }
                    if($this->item->wordpress!=''){
                      $html .='<a href="'.$this->item->wordpress.'" target="_blank"><i class="fa fa-wordpress"></i></a>';
                    }
                    if($this->item->behance!=''){
                      $html .='<a href="'.$this->item->behance.'" target="_blank"><i class="fa fa-behance"></i></a>';
                    }
                    if($this->item->dribbble!=''){
                      $html .='<a href="'.$this->item->dribbble.'" target="_blank"><i class="fa fa-dribbble"></i></a>';
                    }
                $html .='</p>';
            $html .='</div>';
        $html .='</figcaption>';
    $html .='</figure>';     
$html .='</div>';
endif;
echo $html;

                                                                                                                                                                                                                                                                               views/teams/tmpl/default.xml                                                                        0000705                 00000042665 15242037122 0012145 0                                                                                                    ustar 00                                                                                                                                                                                                                                                       <?xml version="1.0" encoding="utf-8"?>
<metadata>
	<layout title="COM_TLPTEAM_TITLE_LIST_VIEW_TEAMS" option="View">
        <message>
                        <![CDATA[COM_TLPTEAM_TITLE_LIST_VIEW_TEAMS_DESC]]>
        </message>
	</layout>

	<!-- Add fields to the parameters object for the layout. -->
	<fields name="params">
		<fieldset label="COM_TLPTEAM_GENERAL_SETTINGS" name="tlpteam" >
          <field name="category"
                     type="Category"
                     extension="com_tlpteam"
                     label="COM_TLPTEAM_LBL_TEAM_CATEGORY"
                     description="COM_TLPTEAM_DESC_TEAM_CATEGORY" multiple = "multiple">
                        <option value="">COM_TLPTEAM_LBL_TEAM_CATEGORY_OPTION</option>
                </field>
			     <field name="m_layout" type="list"
                  label="COM_TLPTEAM_FORM_LBL_TEMPLATE"
                  description="COM_TLPTEAM_FORM_DESC_TEMPLATE" 
                  default="">
                  	<option value="">JGLOBAL_USE_GLOBAL</option>
                    <option value="layout1">Layout 01</option>
                    <option value="layout2">Layout 02</option>
                    <option value="layout3">Layout 03</option>
                    <option value="layout4">Layout 04</option>
                    <option value="layout5">Layout 05(Table)</option>
                    <option value="layout6">Layout 06</option>
                    <option value="layout7">Layout 07</option>
                    <option value="layout8">Layout 08</option>
                    <option value="layout9">Layout 09</option>
                    <option value="layout10">Layout 10</option>
                    <option value="layout11">Layout 11</option>
                    <option value="layout12">Layout 12</option>
                    <option value="layout13">Layout 13</option>
                    <option value="layout14">Layout 14</option>
                    <option value="isotope1">Isotope 1</option>
                    <option value="isotope2">Isotope 2</option>
                    <option value="isotope3">Isotope 3</option>
                    <option value="isotope4">Isotope 4</option>
                    <option value="isotope5">Isotope 5</option>
                    <option value="isotope6">Isotope 6</option>
                    <option value="isotope7">Isotope 7</option>
                    <option value="isotope8">Isotope 8</option>
                    <option value="isotope9">Isotope 9</option>
            </field>
            <field name="m_layout2_image_area" showon="m_layout:layout2" type="list" default="3" label="Layout 2 Image Area" description="Set layout 2 image area width content area auto calculated" >
                  <option value="2">2 Grid</option>
                  <option value="3">3 Grid</option>
                  <option value="4">4 Grid</option>
                  <option value="5">5 Grid</option>
                  <option value="6">6 Grid</option>
                  <option value="7">7 Grid</option>
            </field>
            <field name="m_hide_showall" showon="m_layout:isotope1[OR]m_layout:isotope2[OR]m_layout:isotope3[OR]m_layout:isotope4[OR]m_layout:isotope5[OR]m_layout:isotope6[OR]m_layout:isotope7[OR]m_layout:isotope8[OR]m_layout:isotope9" type="checkbox" label="Hide Show All Button" description="Check if you want to hide show all button" value="1" default="0" />
            <field name="m_selected_category" showon="hide_showall:1"
                   type="Category"
                   extension="com_tlpteam"
                   label="Select a Category"
                   description="Select one category">
                   <option value="">Select Category</option>
              </field>
            <field name="m_short_description_limit" type="text"
                  label="COM_TLPTEAM_FORM_LBL_SHORT_DESCRIPRION_LIMIT"
                  description="COM_TLPTEAM_FORM_DESC_SHORT_DESCRIPTION_LIMIT" 
                  default="150"  />
            <field name="m_item_to_item_margin" type="radio" class="btn-group btn-group-yesno" 
                  label="COM_TLPTEAM_FORM_LBL_ITEMTOITEM_MARGIN"
                  description="COM_TLPTEAM_FORM_DESC_ITEMTOITEM_MARGIN" default="" >
                    <option value="">JGLOBAL_USE_GLOBAL</option>
                    <option value="1">Bootstrap(default)</option>
                    <option value="0">No Margin</option>
            </field> 
            <field name="m_gutter" type="text" showon="g_item_to_item_margin:1" 
                  label="COM_TLPTEAM_FORM_LBL_GUTTER"
                  description="COM_TLPTEAM_FORM_DESC_GUTTER" >
                  
            </field>
            <field name="m_display_no" type="list"              
                  label="COM_TLPTEAM_FORM_LBL_DISPLAY_NO"
                  description="COM_TLPTEAM_FORM_DESC_DISPLAY_NO" 
                  default="" menu_published="0" filter="raw">
                  	  <option value="">JGLOBAL_USE_GLOBAL</option>
                      <option value="1">1 Per Row</option>
                      <option value="2">2 Per Row</option>
                      <option value="3">3 Per Row</option>
                      <option value="4">4 Per Row</option>
                      <option value="6">6 Per Row</option>
            </field>
            <field name="m_display_no_tab" type="list"              
                  label="COM_TLPTEAM_FORM_LBL_DISPLAY_NO_TAB"
                  description="COM_TLPTEAM_FORM_DESC_DISPLAY_NO_TAB" 
                  default="3" menu_published="0" filter="raw">
                      <option value="1">1 Per Row</option>
                      <option value="2">2 Per Row</option>
                      <option value="3">3 Per Row</option>
                      <option value="4">4 Per Row</option>
                      <option value="6">6 Per Row</option>
            </field>
            <field name="m_display_no_mob" type="list"              
                  label="COM_TLPTEAM_FORM_LBL_DISPLAY_NO_MOB"
                  description="COM_TLPTEAM_FORM_DESC_DISPLAY_NO_MOB" 
                  default="1" menu_published="0" filter="raw">
                      <option value="1">1 Per Row</option>
                      <option value="2">2 Per Row</option>
                      <option value="3">3 Per Row</option>
                      <option value="4">4 Per Row</option>
                      <option value="6">6 Per Row</option>
            </field>
            <field name="m_image_style" type="radio" class="btn-group btn-group-yesno"
                  label="COM_TLPTEAM_FORM_LBL_IMAGE_STYLE"
                  description="COM_TLPTEAM_FORM_DESC_IMAGE_STYLE" 
                  default="">
                  	<option value="">JGLOBAL_USE_GLOBAL</option>
                    <option value="1">Square</option>
                    <option value="2">Rounded</option>
            </field>
            <field name="m_gray_scale" type="radio" class="btn-group btn-group-yesno"
                  label="COM_TLPTEAM_FORM_LBL_GRAYSCALE"
                  description="COM_TLPTEAM_FORM_DESC_GRAYSCALE" 
                  default="0">
                    <option value="1">Yes</option>
                    <option value="0">No</option>
            </field>
            <field name="m_primary_color" type="color" default=""
                  label="COM_TLPTEAM_FORM_LBL_PRIMARY_COLOR"
                  description="COM_TLPTEAM_FORM_DESC_PRIMARY_COLOR" />
            <field name="m_overlay_item_padding" type="text"
                  label="COM_TLPTEAM_FORM_LBL_OVERLAY_ITEM_PADDING"
                  description="COM_TLPTEAM_FORM_DESC_OVERLAY_ITEM_PADDING" 
                  default="15"  /> 
            <field name="m_overlay_color" type="color" default=""
                  label="COM_TLPTEAM_FORM_LBL_OVERLAY_COLOR"
                  description="COM_TLPTEAM_FORM_DESC_OVERLAY_COLOR" />
            <field name="m_overlay_opacity" type="list"              
                  label="COM_TLPTEAM_FORM_LBL_OVERLAY_OPACITY"
                  description="COM_TLPTEAM_FORM_DESC_DISPLAY_NO" 
                  default="" menu_published="0" filter="raw">
                  	  <option value="">JGLOBAL_USE_GLOBAL</option>
                      <option value=".1">10%</option>
                      <option value=".2">20%</option>
                      <option value=".3">30%</option>
                      <option value=".4">40%</option>
                      <option value=".5">50%</option>
                      <option value=".6">60%</option>
                      <option value=".7">70%</option>
                      <option value=".8">80%</option>
                      <option value=".9">90%</option>
            </field>
            <field name="m_name_font_size" type="text"
                  label="COM_TLPTEAM_FORM_LBL_NAME_FONT_SIZE"
                  description="COM_TLPTEAM_FORM_DESC_NAME_FONT_SIZE" 
                  default="" />
            <field name="m_name_font_color" type="color" default=""
                  label="COM_TLPTEAM_FORM_LBL_NAME_FONT_COLOR"
                  description="COM_TLPTEAM_FORM_DESC_NAME_FONT_COLOR" />
            <field name="m_name_text_align" type="list"
                  label="COM_TLPTEAM_FORM_LBL_NAME_TEXT_ALIGN"
                  description="COM_TLPTEAM_FORM_DESC_NAME_TEXT_ALIGN" 
                  default="">
                  	<option value="">JGLOBAL_USE_GLOBAL</option>
                    <option value="left">Left</option>
                    <option value="right">Right</option>
                    <option value="center">Center</option>
            </field>
            
            <field name="m_position_font_size" type="text"
                  label="COM_TLPTEAM_FORM_LBL_POSITION_FONT_SIZE"
                  description="COM_TLPTEAM_FORM_DESC_POSITION_FONT_SIZE" 
                  default="" />
            <field name="m_position_font_color" type="color" default=""
                  label="COM_TLPTEAM_FORM_LBL_POSITION_FONT_COLOR"
                  description="COM_TLPTEAM_FORM_DESC_POSITION_FONT_COLOR" />
            <field name="m_position_text_align" type="list"
                  label="COM_TLPTEAM_FORM_LBL_POSITION_TEXT_ALIGN"
                  description="COM_TLPTEAM_FORM_DESC_POSITION_TEXT_ALIGN" 
                  default="">
                  	<option value="">JGLOBAL_USE_GLOBAL</option>
                    <option value="center">Center</option>
                    <option value="left">Left</option>
                    <option value="right">Right</option>
            </field>     
            <field name="m_short_bio_font_color" type="color" default=""
                  label="COM_TLPTEAM_FORM_LBL_SHORT_BIO_FONT_COLOR"
                  description="COM_TLPTEAM_FORM_DESC_SHORT_BIO_FONT_COLOR" />      
            <field name="m_short_bio_text_align" type="list"
                  label="COM_TLPTEAM_FORM_LBL_SHORT_BIO_TEXT_ALIGN"
                  description="COM_TLPTEAM_FORM_DESC_SHORT_BIO_TEXT_ALIGN" 
                  default="">
                  	<option value="">JGLOBAL_USE_GLOBAL</option>
                    <option value="left">Left</option>
                    <option value="right">Right</option>
                    <option value="center">Center</option>
                    <option value="justify">Justify</option>
            </field>       
            <field name="m_social_icon_background" type="color" default=""
                  label="COM_TLPTEAM_FORM_LBL_SOCIAL_ICON_BACKGROUND"
                  description="COM_TLPTEAM_FORM_DESC_SOCIAL_ICON_BACKGROUND" />
             <field name="m_social_icon_color" type="color" default=""
                  label="COM_TLPTEAM_FORM_LBL_SOCIAL_ICON_COLOR"
                  description="COM_TLPTEAM_FORM_DESC_SOCIAL_ICON_COLOR" />
            <field name="m_social_icon_size" type="text"
                  label="COM_TLPTEAM_FORM_LBL_SOCIAL_ICON_SIZE"
                  description="COM_TLPTEAM_FORM_DESC_SOCIAL_ICON_SIZE" 
                  default="" />
            <field name="m_btn_bg" type="color"
                  label="COM_TLPTEAM_FORM_LBL_BTN_BG"
                  description="COM_TLPTEAM_FORM_DESC_BTN_BG" 
                  default="16" />
            <field name="m_btn_text_color" type="color"
                  label="COM_TLPTEAM_FORM_LBL_BTN_TEXT_COLOR"
                  description="COM_TLPTEAM_FORM_DESC_BTN_TEXT_COLOR" 
                  default="16" />
            <field name="m_btn_bg_hover" type="color"
                  label="COM_TLPTEAM_FORM_LBL_BTN_BG_HOVER"
                  description="COM_TLPTEAM_FORM_DESC_BTN_BG_HOVER" 
                  default="16" />
            <field name="m_link_detail" type="radio" class="btn-group btn-group-yesno"
                  label="COM_TLPTEAM_FORM_LBL_LINK_DETAIL"
                  description="COM_TLPTEAM_FORM_DESC_LINK_DETAIL" default="1" >
                    <option value="1">JSHOW</option>
                    <option value="0">JHIDE</option>
            </field>
            <field name="m_link_type" type="radio" showon="m_link_detail:1" class="btn-group btn-group-yesno"
                  label="COM_TLPTEAM_FORM_LBL_LINK_TYPE"
                  description="COM_TLPTEAM_FORM_DESC_LINK_TYPE" default="1" >
                    <option value="1">Detail Page</option>
                    <option value="2">POPUP</option>
            </field>
         </fieldset>	         
		
		<fieldset label="COM_TLPTEAM_FIELD_CONTROL" id="fieldcontrollist" name="tlpteamlistpagefields">
          <field name="m_name_field" type="radio" class="btn-group btn-group-yesno"   
                  label="COM_TLPTEAM_FORM_LBL_NAME_FIELD"
                  description="COM_TLPTEAM_FORM_DESC_NAME_FIELD" default="" >
                  	<option value="">JGLOBAL_USE_GLOBAL</option>
                    <option value="1">JSHOW</option>
                    <option value="0">JHIDE</option>
            </field>  
            <field name="m_position_field" type="radio" class="btn-group btn-group-yesno"
                  label="COM_TLPTEAM_FORM_LBL_POSITION_FIELD"
                  description="COM_TLPTEAM_FORM_DESC_POSITION_FIELD" default="" >
                  	<option value="">JGLOBAL_USE_GLOBAL</option>
                    <option value="1">JSHOW</option>
                    <option value="0">JHIDE</option>
            </field>
            <field name="m_shortbio_field" type="radio" class="btn-group btn-group-yesno"
                  label="COM_TLPTEAM_FORM_LBL_SHORTBIO_FIELD"
                  description="COM_TLPTEAM_FORM_DESC_SHORTBIO_FIELD" default="" >
                  	<option value="">JGLOBAL_USE_GLOBAL</option>
                    <option value="1">JSHOW</option>
                    <option value="0">JHIDE</option>
            </field>   
            <field name="m_email_field" type="radio" class="btn-group btn-group-yesno"
                  label="COM_TLPTEAM_FORM_LBL_EMAIL_FIELD"
                  description="COM_TLPTEAM_FORM_DESC_EMAIL_FIELD" default="" >
                  	<option value="">JGLOBAL_USE_GLOBAL</option>
                    <option value="1">JSHOW</option>
                    <option value="0">JHIDE</option>
            </field>  
            <field name="m_phoneno_field" type="radio" class="btn-group btn-group-yesno"
                  label="COM_TLPTEAM_FORM_LBL_PHONENO_FIELD"
                  description="COM_TLPTEAM_FORM_DESC_PHONENO_FIELD" default="" >
                    <option value="">JGLOBAL_USE_GLOBAL</option>
                    <option value="1">JSHOW</option>
                    <option value="0">JHIDE</option>
            </field>     
            <field name="m_mobileno_field" type="radio" class="btn-group btn-group-yesno"
                  label="COM_TLPTEAM_FORM_LBL_MOBILENO_FIELD"
                  description="COM_TLPTEAM_FORM_DESC_MOBILENO_FIELD" default="" >
                  	<option value="">JGLOBAL_USE_GLOBAL</option>
                    <option value="1">JSHOW</option>
                    <option value="0">JHIDE</option>
            </field>  
            <field name="m_website_field" type="radio" class="btn-group btn-group-yesno"
                  label="COM_TLPTEAM_FORM_LBL_WEBSITE_FIELD"
                  description="COM_TLPTEAM_FORM_DESC_WEBSITE_FIELD" default="" >
                  	<option value="">JGLOBAL_USE_GLOBAL</option>
                    <option value="1">JSHOW</option>
                    <option value="0">JHIDE</option>
            </field>  
            <field name="m_location_field" type="radio" class="btn-group btn-group-yesno"
                  label="COM_TLPTEAM_FORM_LBL_LOCATION_FIELD"
                  description="COM_TLPTEAM_FORM_DESC_LOCATION_FIELD" default="" >
                  	<option value="">JGLOBAL_USE_GLOBAL</option>
                    <option value="1">JSHOW</option>
                    <option value="0">JHIDE</option>
            </field>  
             
            <field name="m_socialicon_field" type="radio" class="btn-group btn-group-yesno"
                  label="COM_TLPTEAM_FORM_LBL_SOCIALICON_FIELD"
                  description="COM_TLPTEAM_FORM_DESC_SOCIALICON_FIELD" default="" >
                  	<option value="">JGLOBAL_USE_GLOBAL</option>
                    <option value="1">JSHOW</option>
                    <option value="0">JHIDE</option>
            </field>  
            <field name="m_skill_field" type="radio" class="btn-group btn-group-yesno"
                  label="COM_TLPTEAM_FORM_LBL_SKILL_FIELD"
                  description="COM_TLPTEAM_FORM_DESC_SKILL_FIELD" default="" >
                  	<option value="">JGLOBAL_USE_GLOBAL</option>
                    <option value="1">JSHOW</option>
                    <option value="0">JHIDE</option>
            </field>  
     </fieldset>
	</fields>
			
</metadata>
                                                                           views/teams/tmpl/default_layout7.php                                                                0000705                 00000012407 15242037122 0013607 0                                                                                                    ustar 00                                                                                                                                                                                                                                                       <?php
/**
 * @version     1.1
 * @package     com_tlpteam
 * @copyright   Copyright (C) 2013. All rights reserved.
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 * @author      TechLabPro <techlabpro@gmail.com> - http://www.techlabpro.com
 */
// no direct access
defined('_JEXEC') or die;
$detail_link=JRoute::_('index.php?option=com_tlpteam&view=team&id='.(int) $this->item->id);
extract($this->tlpconfig);
if($link_type==2){ 
        $popup=' data-id="'.$this->item->id.'" class="tlp-single-item-popup"';
    }else{
        $popup= null;
    } 

$html ='';
$html .='<div class="single-team-area">'; 
   $html .='<div class="single-team'.$image_style_class.'">'; 
    if (!empty($this->item->profile_image)):
     	$html .='<figure class="tlp-team-item">';
     		$html .='<a href="'.$detail_link.'"'.$popup.'><img class="img-responsive '.$gray_scale.'" src="'. JURI::root().$image_storiage_path.'/m_'.$this->item->profile_image.'" alt="'.$this->item->name.'"/></a>';		     		
            $html .='<figcaption>';
            if($socialicon_field==1){ 
            	$html .='<div class="social-icons social-icons">';  
            		$html .='<p class="tpl-social">';
            		    	if($this->item->facebook!=''){ 
                               $html .='<a href="'.$this->item->facebook.'" target="_blank"><i class="fa fa-facebook"></i></a>';
                           }
                           if($this->item->twitter!=''){
                               $html .='<a href="'.$this->item->twitter.'" target="_blank"><i class="fa fa-twitter"></i></a>';
                           }
                           if($this->item->google_plus!=''){
                               $html .='<a href="'.$this->item->google_plus.'" target="_blank"><i class="fa fa-google-plus"></i></a>';
                           }
                           if($this->item->linkedin!=''){
                               $html .='<a href="'.$this->item->linkedin.'" target="_blank"><i class="fa fa-linkedin"></i></a>';
                           }
                           if($this->item->youtube!=''){
                               $html .='<a href="'.$this->item->youtube.'" target="_blank"><i class="fa fa-youtube"></i></a>';
                           }
                           if($this->item->vimeo!=''){
                               $html .='<a href="'.$this->item->vimeo.'" target="_blank"><i class="fa fa-vimeo"></i></a>';
                           }
                           if($this->item->instagram!=''){
                               $html .='<a href="'.$this->item->instagram.'" target="_blank"><i class="fa fa-instagram"></i></a>';
                           }
                           if($this->item->xing!=''){
                               $html .='<a href="'.$this->item->xing.'" target="_blank"><i class="fa fa-xing"></i></a>';
                           }
                           if($this->item->joomla!=''){
                               $html .='<a href="'.$this->item->joomla.'" target="_blank"><i class="fa fa-joomla"></i></a>';
                           }
                           if($this->item->wordpress!=''){
                               $html .='<a href="'.$this->item->wordpress.'" target="_blank"><i class="fa fa-wordpress"></i></a>';
                           }
                           if($this->item->behance!=''){
                               $html .='<a href="'.$this->item->behance.'" target="_blank"><i class="fa fa-behance"></i></a>';
                           }
                           if($this->item->dribbble!=''){
                               $html .='<a href="'.$this->item->dribbble.'" target="_blank"><i class="fa fa-dribbble"></i></a>';
                           }
            		$html .='</p>';
            	$html .='</div>';  
                }
        	   $html .='<div class="tlp-content" >';
                   if($name_field==1){
                    if($link_detail==1){
                        $html .='<h3><a href="'. $detail_link.'"'.$popup.'><span class="tlp-name">'. $this->item->name.'</span></a></h3>';
                    }else{
                        $html .='<h3><span class="tlp-name">'.$this->item->name.'</span></h3>';
                    }
                }
                if($position_field==1){
                    if($link_detail==1){
                        $html .='<div class="tlp-position"><a href="'.$detail_link.'" '.$popup.'>'. $this->item->position .'</a></div>';
                    }else{
                        $html .='<div class="tlp-position">'. $this->item->position.'</div>';
                    }
                 }
               $html .='</div>';
               if($shortbio_field==1){
                    if($link_detail==1){
                       $html .='<div class="short-bio">
                           <p><a href="'.$detail_link.'" '.$popup.'>'.substr($this->item->short_bio, 0,$short_description_limit).'</a></p>
                       </div>';
                    }else{
                        $html .='<div class="short-bio">
                           <p>'.substr($this->item->short_bio, 0,$short_description_limit).'</p>
                       </div>';
                    }
                }
        	$html .='</figcaption>';
         $html .='</figure>';	
    endif;
   $html .='</div>';
$html .='</div>';

echo $html;
				
                                                                                                                                                                                                                                                         views/teams/view.html.php                                                                           0000705                 00000005273 15242037122 0011443 0                                                                                                    ustar 00                                                                                                                                                                                                                                                       <?php
/**
 * @version     2.0
 * @package     com_tlpteam
 * @copyright   Copyright (C) 2013. All rights reserved.
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 * @author      TechLabPro <techlabpro@gmail.com> - http://www.techlabpro.com
 */
// No direct access
defined('_JEXEC') or die;

jimport('joomla.application.component.view');

/**
 * View class for a list of Tlpteam.
 */
class TlpteamViewTeams extends JViewLegacy {

    protected $items;
    protected $pagination;
    protected $state;
    protected $params;

    /**
     * Display the view
     */
    public function display($tpl = null) {
        $app = JFactory::getApplication();

        $this->state = $this->get('State');
        $this->items = $this->get('Items');
        $this->pagination = $this->get('Pagination');
        $this->params = $app->getParams('com_tlpteam');
        $this->filterForm = $this->get('FilterForm');
		$this->activeFilters = $this->get('ActiveFilters');

        // Check for errors.
        if (count($errors = $this->get('Errors'))) {
;
            throw new Exception(implode("\n", $errors));
        }

        $this->_prepareDocument();
        parent::display($tpl);
    }

    /**
     * Prepares the document
     */
    protected function _prepareDocument() {
        $app = JFactory::getApplication();
        $menus = $app->getMenu();
        $title = null;

        // Because the application sets a default page title,
        // we need to get it from the menu item itself
        $menu = $menus->getActive();
        if ($menu) {
            $this->params->def('page_heading', $this->params->get('page_title', $menu->title));
        } else {
            $this->params->def('page_heading', JText::_('COM_TLPTEAM_DEFAULT_PAGE_TITLE'));
        }
        $title = $this->params->get('page_title', '');
        if (empty($title)) {
            $title = $app->getCfg('sitename');
        } elseif ($app->getCfg('sitename_pagetitles', 0) == 1) {
            $title = JText::sprintf('JPAGETITLE', $app->getCfg('sitename'), $title);
        } elseif ($app->getCfg('sitename_pagetitles', 0) == 2) {
            $title = JText::sprintf('JPAGETITLE', $title, $app->getCfg('sitename'));
        }
        $this->document->setTitle($title);

        if ($this->params->get('menu-meta_description')) {
            $this->document->setDescription($this->params->get('menu-meta_description'));
        }

        if ($this->params->get('menu-meta_keywords')) {
            $this->document->setMetadata('keywords', $this->params->get('menu-meta_keywords'));
        }

        if ($this->params->get('robots')) {
            $this->document->setMetadata('robots', $this->params->get('robots'));
        }
    }

}                                                                                                                                                                                                                                                                                                                                     views/team/tmpl/index.html                                                                          0000705                 00000000032 15242037122 0011567 0                                                                                                    ustar 00                                                                                                                                                                                                                                                       <html><body></body></html>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      views/team/tmpl/default.php                                                                         0000705                 00000024435 15242037122 0011744 0                                                                                                    ustar 00                                                                                                                                                                                                                                                       <?php
/**
 * @version     2.0
 * @package     com_tlpteam
 * @copyright   Copyright (C) 2013. All rights reserved.
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 * @author      TechLabPro <techlabpro@gmail.com> - http://www.techlabpro.com
 */
// no direct access
defined('_JEXEC') or die;
$app = JFactory::getApplication();
$tlpteam_params = JComponentHelper::getParams('com_tlpteam');
$image_storiage_path            = $tlpteam_params->get('image_path','images/tlpteam');
$link_detail                    = $tlpteam_params->get('link_detail','1');
$link_type                      = $tlpteam_params->get('link_type','2');
$name_field                     = $tlpteam_params->get('g_name_field','1');
$primary_color                  = $tlpteam_params->get('g_primary_color');
$position_field                 = $tlpteam_params->get('g_position_field','1');
$shortbio_field                 = $tlpteam_params->get('g_shortbio_field','1');
$email_field                    = $tlpteam_params->get('g_email_field','1');
$phoneno_field                  = $tlpteam_params->get('g_phoneno_field','1');
$mobileno_field                 = $tlpteam_params->get('g_mobileno_field','1');
$website_field                  = $tlpteam_params->get('g_website_field','1');
$location_field                 = $tlpteam_params->get('g_location_field','1');
$skill_field                    = $tlpteam_params->get('g_skill_field','1');
$socialicon_field               = $tlpteam_params->get('g_socialicon_field','1');
$bootstrap_version              = $tlpteam_params->get('bootstrap_version','1');
$image_grid                     = $tlpteam_params->get('image_grid','4');
$social_icon_background         = $tlpteam_params->get('g_social_icon_background');
$social_icon_color              = $tlpteam_params->get('g_social_icon_color');
$social_icon_size               = $tlpteam_params->get('g_social_icon_size');
$content_grid                   = 12-$image_grid;

if($bootstrap_version==3){
		$image_area="col-md-".$image_grid." col-lg-".$image_grid." col-sm-6";
		$content_area="col-md-".$content_grid." col-lg-".$content_grid." col-sm-6";
		
	}else{
		$image_area="tlp-col-md-".$image_grid." tlp-col-lg-".$image_grid." tlp-col-sm-6";
        $content_area="tlp-col-md-".$content_grid." tlp-col-lg-".$content_grid." tlp-col-sm-6";
	}
$document = JFactory::getDocument();

$style  = '.tlp-team .skill-prog .fill { background: '.$primary_color.';}';
$style .= '.tlp-team .contact-info .fa { color:'. $primary_color.'; }';
$style .= '.tlp-tooltip + .tooltip > .tooltip-inner { background-color: '.$primary_color.';}';
$style .= '.tooltip.top .tooltip-arrow { border-top-color:'. $primary_color.';}';
$style .= '.tlp-team .social-icons a { background: '.$social_icon_background.'; color:'.$social_icon_color.'; 
font-size:'.$social_icon_size.'px; }';
if($social_icon_background==''){
$style .= '.tlp-team .social-icons a:hover .fa-facebook,.tlp-team .social-icons a:hover .fa-twitter, .tlp-team .social-icons a:hover .fa-linkedin, .tlp-team .social-icons a:hover .fa-google-plus, .tlp-team .social-icons a:hover .fa-youtube, .tlp-team .social-icons a:hover .fa-vimeo, .tlp-team .social-icons a:hover .fa-instagram 
,.tlp-team .social-icons a:hover .fa-xing , .tlp-team .social-icons a:hover .fa-joomla , .tlp-team .social-icons a:hover .fa-wordpress , .tlp-team .social-icons a:hover .fa-behance , .tlp-team .social-icons a:hover .fa-dribbble  { background: none; color: '. $social_icon_color. '; opacity: .8; }';

}
$style .= '.tlp-team h3{ padding-top: 0px; margin-top: 0px; }';

$document->addStyleDeclaration( $style );

if ($this->item) : ?>
<div class="tlp-team">
    <div class="tlp-row tlp-team-detail">
    	<div class="<?php echo $image_area;?>">
    	 <?php if (!empty($this->item->profile_image)):?>
    	     	<figure>
    	     		<img class="img-responsive " src="<?php echo JURI::root().$image_storiage_path.'/l_'.$this->item->profile_image; ?> " alt="<?php echo $this->item->name; ?>"/>		     		
    	     	</figure>	
             <?php  endif; ?>
            <?php if($socialicon_field==1){ ?>
                <div class="social-icons">  
                    <?php if($this->item->facebook!=''){?><a href="<?php echo $this->item->facebook;?>" target="_blank"><i class="fa fa-facebook"></i></a><?php }?>
                    <?php if($this->item->twitter!=''){?><a href="<?php echo $this->item->twitter;?>" target="_blank"><i class="fa fa-twitter"></i></a><?php }?>
                    <?php if($this->item->google_plus!=''){?><a href="<?php echo $this->item->google_plus;?>" target="_blank"><i class="fa fa-google-plus"></i></a><?php }?>
                    <?php if($this->item->linkedin!=''){?><a href="<?php echo $this->item->linkedin;?>" target="_blank"><i class="fa fa-linkedin"></i></a><?php }?>
                    <?php if($this->item->youtube!=''){?><a href="<?php echo $this->item->youtube;?>" target="_blank"><i class="fa fa-youtube"></i></a><?php }?>
                    <?php if($this->item->vimeo!=''){?><a href="<?php echo $this->item->vimeo;?>" target="_blank"><i class="fa fa-vimeo"></i></a><?php }?>
                    <?php if($this->item->instagram!=''){?><a href="<?php echo $this->item->instagram;?>" target="_blank"><i class="fa fa-instagram"></i></a><?php }?>
                    <?php if($this->item->xing!=''){?><a href="<?php echo $this->item->xing;?>" target="_blank"><i class="fa fa-xing"></i></a><?php }?>
                    <?php if($this->item->joomla!=''){?><a href="<?php echo $this->item->joomla;?>" target="_blank"><i class="fa fa-joomla"></i></a><?php }?>
                    <?php if($this->item->wordpress!=''){?><a href="<?php echo $this->item->wordpress;?>" target="_blank"><i class="fa fa-wordpress"></i></a><?php }?>
                    <?php if($this->item->behance!=''){?><a href="<?php echo $this->item->behance;?>" target="_blank"><i class="fa fa-behance"></i></a><?php }?>
                    <?php if($this->item->dribbble!=''){?><a href="<?php echo $this->item->dribbble;?>" target="_blank"><i class="fa fa-dribbble"></i></a><?php }?>
              </div>
            <?php }?>
    	</div>

    	<div class="<?php echo $content_area;?>">
    	<?php if(($name_field==1)||($position_field==1)||($shortbio_field==1)){?>
        <article>
    	   <div class="tlp-content" >
                <h3><span class="tlp-name"><?php echo $this->item->name; ?></span></h3>
    		<?php if($position_field==1){?>
             	<span class="tlp-position"><?php echo $this->item->position; ?></span>
            <?php }?>
    	   </div>
    	   <?php //if($shortbio_field==1){?>
    	   <div class="short-bio">
    		   <p><?php echo $this->item->detail_bio; ?></p>
    	   </div>
    	   <?php //}?>
       <?php }?>
       	<?php if(($email_field==1)||($phoneno_field==1)||($website_field==1)||($location_field==1)){?>
    		<div class="contact-info">  
                <ul>
                <?php if(($email_field==1)&&($this->item->email!='')){?>
                	<li><i class="fa fa-envelope-o"></i><span><a href="mailto:<?php echo $this->item->email; ?>"><?php echo $this->item->email; ?></a></span> </li>
                <?php }?>
                <?php if(($website_field==1)&&($this->item->personal_website!='')){?>
                	<li><i class="fa fa-globe"></i><span><a href="<?php echo $this->item->personal_website;?>" target="_blank"><?php echo $this->item->personal_website; ?></a></span> </li>
                <?php }?>
                <?php if(($phoneno_field==1)&&($this->item->phoneno!='')){?>
                    <li><i class="fa fa-phone"></i><span><a href="tel:<?php echo $this->item->phoneno; ?>"><?php echo $this->item->phoneno; ?></a></span></li>
                <?php }?>
                <?php if(($mobileno_field==1)&&($this->item->mobileno!='')){?>
                	<li><i class="fa fa-mobile"></i><span><a href="tel:<?php echo $this->item->mobileno; ?>"><?php echo $this->item->mobileno; ?></a></span></li>
                <?php }?>
                <?php if(($location_field==1)&&($this->item->location!='')){?>
                	<li><i class="fa fa-map-marker"></i><span><?php echo $this->item->location; ?></span> </li>
                <?php }?>     	
                </ul>
    	      </div>
    	<?php }?>
        <?php if($skill_field==1){ ?>
            <div class="tlp-team-skill">
                <?php if(($skill_field==1)&&(($this->item->skill1_no)>0)){?>
                    <div class="skill_name"><?php echo $this->item->skill1?></div>
                    <div class='skill-prog'><div class='fill' data-progress-animation='<?php echo $this->item->skill1_no?>'></div></div>
                <?php }
                    if(($skill_field==1)&&(($this->item->skill2_no)>0)){?>    
                    <div class="skill_name"><?php echo $this->item->skill2?></div>
                    <div class='skill-prog'><div class='fill' data-progress-animation='<?php echo $this->item->skill2_no?>'></div></div>
                <?php }
                    if(($skill_field==1)&&(($this->item->skill3_no)>0)){?>
                    <div class="skill_name"><?php echo $this->item->skill3?></div>
                    <div class='skill-prog'><div class='fill' data-progress-animation='<?php echo $this->item->skill3_no?>'></div></div>
                <?php }
                    if(($skill_field==1)&&(($this->item->skill4_no)>0)){?>
                    <div class="skill_name"><?php echo $this->item->skill4?></div>
                    <div class='skill-prog'><div class='fill' data-progress-animation='<?php echo $this->item->skill4_no?>'></div></div>
                <?php }
                    if(($skill_field==1)&&(($this->item->skill5_no)>0)){?>    
                    <div class="skill_name"><?php echo $this->item->skill5?></div>
                    <div class='skill-prog'><div class='fill' data-progress-animation='<?php echo $this->item->skill5_no?>'></div></div>
        	    <?php }?>
            </div>
            <?php }?>
            
        </article>
    	</div>
    </div>
</div>    
    <?php
else:
    echo JText::_('COM_TLPTEAM_ITEM_NOT_LOADED');
endif;
?>
<script src="<?php echo JURI::root();?>components/com_tlpteam/assets/js/imagesloaded.pkgd.min.js" type="text/javascript"></script>
<script src="<?php echo JURI::root();?>components/com_tlpteam/assets/js/isotope.pkgd.min.js" type="text/javascript"></script>
<script src="<?php echo JURI::root();?>components/com_tlpteam/assets/js/tlp-team.js" type="text/javascript"></script>
                                                                                                                                                                                                                                   views/team/tmpl/default.xml                                                                         0000705                 00000001440 15242037122 0011744 0                                                                                                    ustar 00                                                                                                                                                                                                                                                       <?xml version="1.0" encoding="utf-8"?>
<metadata>
    <layout title="COM_TLPTEAM_TITLE_ITEM_VIEW_TEAM" option="View">
        <message>
                        <![CDATA[COM_TLPTEAM_TITLE_ITEM_VIEW_TEAM_DESC]]>
        </message>
    </layout>
    <fields name="params">
        <fieldset 
            name="basic"
            label="COM_TLPTEAM_FIELDSET_ITEM_ID_SELECT_LABEL">
            <field
                name="item_id"
                query="SELECT `id` FROM #__tlpteam_team ORDER BY `id`"
                type="sql"
                key_field="id" 
                value_field="id"
                label="COM_TLPTEAM_ITEM_ID_SELECT_LABEL"
                require="true"
                description="JGLOBAL_SHOW_TITLE_DESC">
            </field>
        </fieldset>
    </fields>
</metadata>
                                                                                                                                                                                                                                views/team/index.html                                                                               0000705                 00000000032 15242037122 0010613 0                                                                                                    ustar 00                                                                                                                                                                                                                                                       <html><body></body></html>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      views/team/view.html.php                                                                            0000705                 00000006177 15242037122 0011264 0                                                                                                    ustar 00                                                                                                                                                                                                                                                       <?php
/**
 * @version     2.0
 * @package     com_tlpteam
 * @copyright   Copyright (C) 2013. All rights reserved.
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 * @author      TechLabPro <techlabpro@gmail.com> - http://www.techlabpro.com
 */
// No direct access
defined('_JEXEC') or die;

jimport('joomla.application.component.view');

/**
 * View to edit
 */
class TlpteamViewTeam extends JViewLegacy {

    protected $state;
    protected $item;
    protected $form;
    protected $params;

    /**
     * Display the view
     */
    public function display($tpl = null) {

        $app = JFactory::getApplication();
        $user = JFactory::getUser();

        $this->state = $this->get('State');
        $this->item = $this->get('Data');
        $this->params = $app->getParams('com_tlpteam');

  //       if (!empty($this->item)) {
            
		// $this->item->department_title = $this->getModel()->getCategoryName($this->item->department)->title;
  //       }


        // Check for errors.
        if (count($errors = $this->get('Errors'))) {
            throw new Exception(implode("\n", $errors));
        }

        if(!in_array($this->item->access, $user->getAuthorisedViewLevels())){
                return JError::raiseError(403, JText::_('JERROR_ALERTNOAUTHOR'));
            }
        

        if ($this->_layout == 'edit') {

            $authorised = $user->authorise('core.create', 'com_tlpteam');

            if ($authorised !== true) {
                throw new Exception(JText::_('JERROR_ALERTNOAUTHOR'));
            }
        }

        $this->_prepareDocument();

        parent::display($tpl);
    }

    /**
     * Prepares the document
     */
    protected function _prepareDocument() {
        $app = JFactory::getApplication();
        $menus = $app->getMenu();
        $title = null;

        // Because the application sets a default page title,
        // we need to get it from the menu item itself
        $menu = $menus->getActive();
        if ($menu) {
            $this->params->def('page_heading', $this->params->get('page_title', $menu->title));
        } else {
            $this->params->def('page_heading', JText::_('COM_TLPTEAM_DEFAULT_PAGE_TITLE'));
        }
        $title = $this->params->get('page_title', '');
        if (empty($title)) {
            $title = $app->getCfg('sitename');
        } elseif ($app->getCfg('sitename_pagetitles', 0) == 1) {
            $title = JText::sprintf('JPAGETITLE', $app->getCfg('sitename'), $title);
        } elseif ($app->getCfg('sitename_pagetitles', 0) == 2) {
            $title = JText::sprintf('JPAGETITLE', $title, $app->getCfg('sitename'));
        }
        $this->document->setTitle($title);

        if ($this->params->get('menu-meta_description')) {
            $this->document->setDescription($this->params->get('menu-meta_description'));
        }

        if ($this->params->get('menu-meta_keywords')) {
            $this->document->setMetadata('keywords', $this->params->get('menu-meta_keywords'));
        }

        if ($this->params->get('robots')) {
            $this->document->setMetadata('robots', $this->params->get('robots'));
        }
    }

}
                                                                                                                                                                                                                                                                                                                                                                                                 controllers/index.html                                                                              0000705                 00000000032 15242037122 0011076 0                                                                                                    ustar 00                                                                                                                                                                                                                                                       <html><body></body></html>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      controllers/teams.php                                                                               0000705                 00000001307 15242037122 0010731 0                                                                                                    ustar 00                                                                                                                                                                                                                                                       <?php
/**
 * @version     2.0
 * @package     com_tlpteam
 * @copyright   Copyright (C) 2013. All rights reserved.
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 * @author      TechLabPro <techlabpro@gmail.com> - http://www.techlabpro.com
 */

// No direct access.
defined('_JEXEC') or die;

require_once JPATH_COMPONENT.'/controller.php';

/**
 * Teams list controller class.
 */
class TlpteamControllerTeams extends TlpteamController
{
	/**
	 * Proxy for getModel.
	 * @since	1.6
	 */
	public function &getModel($name = 'Teams', $prefix = 'TlpteamModel', $config = array())
	{
		$model = parent::getModel($name, $prefix, array('ignore_request' => true));
		return $model;
	}
}                                                                                                                                                                                                                                                                                                                         controllers/team.php                                                                                0000705                 00000011051 15242037122 0010543 0                                                                                                    ustar 00                                                                                                                                                                                                                                                       <?php
/**
 * @version     2.0
 * @package     com_tlpteam
 * @copyright   Copyright (C) 2013. All rights reserved.
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 * @author      TechLabPro <techlabpro@gmail.com> - http://www.techlabpro.com
 */
// No direct access
defined('_JEXEC') or die;

require_once JPATH_COMPONENT . '/controller.php';

/**
 * Team controller class.
 */
class TlpteamControllerTeam extends TlpteamController {

    /**
     * Method to check out an item for editing and redirect to the edit form.
     *
     * @since	1.6
     */
    public function edit() {
        $app = JFactory::getApplication();

        // Get the previous edit id (if any) and the current edit id.
        $previousId = (int) $app->getUserState('com_tlpteam.edit.team.id');
        $editId = $app->input->getInt('id', null, 'array');

        // Set the user id for the user to edit in the session.
        $app->setUserState('com_tlpteam.edit.team.id', $editId);

        // Get the model.
        $model = $this->getModel('Team', 'TlpteamModel');

        // Check out the item
        if ($editId) {
            $model->checkout($editId);
        }

        // Check in the previous user.
        if ($previousId && $previousId !== $editId) {
            $model->checkin($previousId);
        }

        // Redirect to the edit screen.
        $this->setRedirect(JRoute::_('index.php?option=com_tlpteam&view=teamform&layout=edit', false));
    }

    /**
     * Method to save a user's profile data.
     *
     * @return	void
     * @since	1.6
     */
    public function publish() {
        // Initialise variables.
        $app = JFactory::getApplication();

        //Checking if the user can remove object
        $user = JFactory::getUser();
        if ($user->authorise('core.edit', 'com_tlpteam') || $user->authorise('core.edit.state', 'com_tlpteam')) {
            $model = $this->getModel('Team', 'TlpteamModel');

            // Get the user data.
            $id = $app->input->getInt('id');
            $state = $app->input->getInt('state');

            // Attempt to save the data.
            $return = $model->publish($id, $state);

            // Check for errors.
            if ($return === false) {
                $this->setMessage(JText::sprintf('Save failed: %s', $model->getError()), 'warning');
            }

            // Clear the profile id from the session.
            $app->setUserState('com_tlpteam.edit.team.id', null);

            // Flush the data from the session.
            $app->setUserState('com_tlpteam.edit.team.data', null);

            // Redirect to the list screen.
            $this->setMessage(JText::_('COM_TLPTEAM_ITEM_SAVED_SUCCESSFULLY'));
            $menu = & JSite::getMenu();
            $item = $menu->getActive();
            if (!$item) {
                // If there isn't any menu item active, redirect to list view
                $this->setRedirect(JRoute::_('index.php?option=com_tlpteam&view=teams', false));
            } else {
                $this->setRedirect(JRoute::_($item->link . $menuitemid, false));
            }
        } else {
            throw new Exception(500);
        }
    }

    public function remove() {

        // Initialise variables.
        $app = JFactory::getApplication();

        //Checking if the user can remove object
        $user = JFactory::getUser();
        if ($user->authorise($user->authorise('core.delete', 'com_tlpteam'))) {
            $model = $this->getModel('Team', 'TlpteamModel');

            // Get the user data.
            $id = $app->input->getInt('id', 0);

            // Attempt to save the data.
            $return = $model->delete($id);


            // Check for errors.
            if ($return === false) {
                $this->setMessage(JText::sprintf('Delete failed', $model->getError()), 'warning');
            } else {
                // Check in the profile.
                if ($return) {
                    $model->checkin($return);
                }

                // Clear the profile id from the session.
                $app->setUserState('com_tlpteam.edit.team.id', null);

                // Flush the data from the session.
                $app->setUserState('com_tlpteam.edit.team.data', null);

                $this->setMessage(JText::_('COM_TLPTEAM_ITEM_DELETED_SUCCESSFULLY'));
            }

            // Redirect to the list screen.
            $menu = & JSite::getMenu();
            $item = $menu->getActive();
            $this->setRedirect(JRoute::_($item->link, false));
        } else {
            throw new Exception(500);
        }
    }

}
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       