Skip to content

Instantly share code, notes, and snippets.

@fleshka779
Created February 26, 2016 22:28
Show Gist options
  • Save fleshka779/b734c075c13dc14340bc to your computer and use it in GitHub Desktop.
Save fleshka779/b734c075c13dc14340bc to your computer and use it in GitHub Desktop.
This gist exceeds the recommended number of files (~10). To access all files, please clone this gist.
<?xml version="1.0" encoding="UTF-8"?>
<module type="WEB_MODULE" version="4">
<component name="NewModuleRootManager">
<content url="file://$MODULE_DIR$" />
<orderEntry type="inheritedJdk" />
<orderEntry type="sourceFolder" forTests="false" />
</component>
</module>
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="Encoding">
<file url="PROJECT" charset="UTF-8" />
</component>
</project>
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="LessManager">
<option name="lessProfileMap">
<map>
<entry key="0">
<value>
<LessProfile>
<option name="cssDirectories">
<list>
<CssDirectory>
<option name="path" value="E:\ECH Framework\css" />
</CssDirectory>
</list>
</option>
<option name="id" value="0" />
<option name="lessDirPath" value="E:\ECH Framework\css" />
<option name="name" value="ech" />
</LessProfile>
</value>
</entry>
</map>
</option>
</component>
</project>
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="ProjectLevelVcsManager" settingsEditedManually="false">
<OptionsSetting value="true" id="Add" />
<OptionsSetting value="true" id="Remove" />
<OptionsSetting value="true" id="Checkout" />
<OptionsSetting value="true" id="Update" />
<OptionsSetting value="true" id="Status" />
<OptionsSetting value="true" id="Edit" />
<ConfirmationsSetting value="0" id="Add" />
<ConfirmationsSetting value="0" id="Remove" />
</component>
</project>
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="ProjectModuleManager">
<modules>
<module fileurl="file://$PROJECT_DIR$/.idea/ECH Framework.iml" filepath="$PROJECT_DIR$/.idea/ECH Framework.iml" />
</modules>
</component>
</project>
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="ProjectTasksOptions">
<TaskOptions isEnabled="true">
<option name="arguments" value="--no-color $FileName$" />
<option name="checkSyntaxErrors" value="true" />
<option name="description" value="Compiles .less files into .css files" />
<option name="exitCodeBehavior" value="ERROR" />
<option name="fileExtension" value="less" />
<option name="immediateSync" value="true" />
<option name="name" value="Less" />
<option name="output" value="$FileNameWithoutExtension$.css" />
<option name="outputFilters">
<array>
<FilterInfo>
<option name="description" value="lessc error format" />
<option name="name" value="lessc" />
<option name="regExp" value="$MESSAGE$$FILE_PATH$?:$LINE$:$COLUMN$" />
</FilterInfo>
</array>
</option>
<option name="outputFromStdout" value="true" />
<option name="program" value="$USER_HOME$/Desktop/less-less.js-ba78ead/gradlew.bat" />
<option name="scopeName" value="Project Files" />
<option name="trackOnlyRoot" value="false" />
<option name="workingDir" value="$FileDir$" />
<envs />
</TaskOptions>
</component>
</project>
/*
ECH Framework - Easy CSS/HTML Framework
All Rights Reserved © 2016 ECH Framework
---- By Vladislav Kovalyov ----
*/
/* Reset Style */
* {
margin: 0;
padding: 0;
font-family: 'Open Sans', sans-serif;
color: black;
}
h1,
h2,
h3,
h4,
h5,
h6,
p {
display: block;
margin: 5px 0;
}
h1 {
font-size: 26pt;
}
h2 {
font-size: 22pt;
}
h3 {
font-size: 17pt;
}
h4 {
font-size: 13pt;
}
h5 {
font-size: 9pt;
}
h6 {
font-size: 7pt;
}
div,
section,
address,
form,
ol,
ul {
display: block;
width: auto;
height: auto;
}
.clearfix:before,
.clearfix:after {
content: " ";
display: table;
}
.clearfix:after {
clear: both;
}
/* Rows and Columns */
\ div {
height: 22%;
}
/*
ECH Framework - Easy CSS/HTML Framework
All Rights Reserved © 2016 ECH Framework
---- By Vladislav Kovalyov ----
*/
/* Reset Style */
* {
margin: 0;
padding: 0;
font-family: 'Open Sans', sans-serif;
color: black;
}
h1, h2, h3, h4, h5, h6, p {
display: block;
margin: 5px 0;
}
h1 {
font-size: 26pt;
}
h2 {
font-size: 22pt;
}
h3 {
font-size: 17pt;
}
h4 {
font-size: 13pt;
}
h5 {
font-size: 9pt;
}
h6 {
font-size: 7pt;
}
div, section, address, form, ol, ul {
display: block;
width: auto;
height: auto;
}
.clearfix {
&:before,
&:after {
content: " ";
display: table;
}
&:after {
clear: both;
}
}
/* Rows and Columns */
@import "../js/more-or-less/less/fn/_for.less";
.for()
.class-test-for {
// Просто переменная, можно и без неё
@count: 4;
// Цикл
.for(@count);
.-each(@index) {
&-@{index} {
width: @index * (100% / @count);
}
}
}
div {
height: 22%;
}
<!DOCTYPE html>
<html lang="en">
<head>
<title>ECH Framework</title>
<!-- Meta information -->
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Framework style -->
<link rel="stylesheet" href="css/ech_style.less">
<link rel="stylesheet" href="css/ech_style.css">
<!-- Your style -->
<link rel="stylesheet" href="css/style.less">
<link rel="stylesheet" href="css/style.css">
<!-- Fonts -->
<link href='https://fonts.googleapis.com/css?family=Open+Sans:400,700&subset=latin,cyrillic' rel='stylesheet' type='text/css'>
<!-- jQuery -->
<script src="js/jquery-1.12.0.min.js"></script>
</head>
<body>
<h1>Hello World</h1>
<h2>Hello World</h2>
<h3>Hello World</h3>
<h4>Hello World</h4>
<h5>Hello World</h5>
<h6>Hello World</h6>
<div></div>
<!-- Less -->
<script src="js/less.min.js"></script>
<!-- Other Scripts -->
</body>
</html>
/*! jQuery v1.12.0 | (c) jQuery Foundation | jquery.org/license */
!function(a,b){"object"==typeof module&&"object"==typeof module.exports?module.exports=a.document?b(a,!0):function(a){if(!a.document)throw new Error("jQuery requires a window with a document");return b(a)}:b(a)}("undefined"!=typeof window?window:this,function(a,b){var c=[],d=a.document,e=c.slice,f=c.concat,g=c.push,h=c.indexOf,i={},j=i.toString,k=i.hasOwnProperty,l={},m="1.12.0",n=function(a,b){return new n.fn.init(a,b)},o=/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g,p=/^-ms-/,q=/-([\da-z])/gi,r=function(a,b){return b.toUpperCase()};n.fn=n.prototype={jquery:m,constructor:n,selector:"",length:0,toArray:function(){return e.call(this)},get:function(a){return null!=a?0>a?this[a+this.length]:this[a]:e.call(this)},pushStack:function(a){var b=n.merge(this.constructor(),a);return b.prevObject=this,b.context=this.context,b},each:function(a){return n.each(this,a)},map:function(a){return this.pushStack(n.map(this,function(b,c){return a.call(b,c,b)}))},slice:function(){return this.pushStack(e.apply(this,arguments))},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},eq:function(a){var b=this.length,c=+a+(0>a?b:0);return this.pushStack(c>=0&&b>c?[this[c]]:[])},end:function(){return this.prevObject||this.constructor()},push:g,sort:c.sort,splice:c.splice},n.extend=n.fn.extend=function(){var a,b,c,d,e,f,g=arguments[0]||{},h=1,i=arguments.length,j=!1;for("boolean"==typeof g&&(j=g,g=arguments[h]||{},h++),"object"==typeof g||n.isFunction(g)||(g={}),h===i&&(g=this,h--);i>h;h++)if(null!=(e=arguments[h]))for(d in e)a=g[d],c=e[d],g!==c&&(j&&c&&(n.isPlainObject(c)||(b=n.isArray(c)))?(b?(b=!1,f=a&&n.isArray(a)?a:[]):f=a&&n.isPlainObject(a)?a:{},g[d]=n.extend(j,f,c)):void 0!==c&&(g[d]=c));return g},n.extend({expando:"jQuery"+(m+Math.random()).replace(/\D/g,""),isReady:!0,error:function(a){throw new Error(a)},noop:function(){},isFunction:function(a){return"function"===n.type(a)},isArray:Array.isArray||function(a){return"array"===n.type(a)},isWindow:function(a){return null!=a&&a==a.window},isNumeric:function(a){var b=a&&a.toString();return!n.isArray(a)&&b-parseFloat(b)+1>=0},isEmptyObject:function(a){var b;for(b in a)return!1;return!0},isPlainObject:function(a){var b;if(!a||"object"!==n.type(a)||a.nodeType||n.isWindow(a))return!1;try{if(a.constructor&&!k.call(a,"constructor")&&!k.call(a.constructor.prototype,"isPrototypeOf"))return!1}catch(c){return!1}if(!l.ownFirst)for(b in a)return k.call(a,b);for(b in a);return void 0===b||k.call(a,b)},type:function(a){return null==a?a+"":"object"==typeof a||"function"==typeof a?i[j.call(a)]||"object":typeof a},globalEval:function(b){b&&n.trim(b)&&(a.execScript||function(b){a.eval.call(a,b)})(b)},camelCase:function(a){return a.replace(p,"ms-").replace(q,r)},nodeName:function(a,b){return a.nodeName&&a.nodeName.toLowerCase()===b.toLowerCase()},each:function(a,b){var c,d=0;if(s(a)){for(c=a.length;c>d;d++)if(b.call(a[d],d,a[d])===!1)break}else for(d in a)if(b.call(a[d],d,a[d])===!1)break;return a},trim:function(a){return null==a?"":(a+"").replace(o,"")},makeArray:function(a,b){var c=b||[];return null!=a&&(s(Object(a))?n.merge(c,"string"==typeof a?[a]:a):g.call(c,a)),c},inArray:function(a,b,c){var d;if(b){if(h)return h.call(b,a,c);for(d=b.length,c=c?0>c?Math.max(0,d+c):c:0;d>c;c++)if(c in b&&b[c]===a)return c}return-1},merge:function(a,b){var c=+b.length,d=0,e=a.length;while(c>d)a[e++]=b[d++];if(c!==c)while(void 0!==b[d])a[e++]=b[d++];return a.length=e,a},grep:function(a,b,c){for(var d,e=[],f=0,g=a.length,h=!c;g>f;f++)d=!b(a[f],f),d!==h&&e.push(a[f]);return e},map:function(a,b,c){var d,e,g=0,h=[];if(s(a))for(d=a.length;d>g;g++)e=b(a[g],g,c),null!=e&&h.push(e);else for(g in a)e=b(a[g],g,c),null!=e&&h.push(e);return f.apply([],h)},guid:1,proxy:function(a,b){var c,d,f;return"string"==typeof b&&(f=a[b],b=a,a=f),n.isFunction(a)?(c=e.call(arguments,2),d=function(){return a.apply(b||this,c.concat(e.call(arguments)))},d.guid=a.guid=a.guid||n.guid++,d):void 0},now:function(){return+new Date},support:l}),"function"==typeof Symbol&&(n.fn[Symbol.iterator]=c[Symbol.iterator]),n.each("Boolean Number String Function Array Date RegExp Object Error Symbol".split(" "),function(a,b){i["[object "+b+"]"]=b.toLowerCase()});function s(a){var b=!!a&&"length"in a&&a.length,c=n.type(a);return"function"===c||n.isWindow(a)?!1:"array"===c||0===b||"number"==typeof b&&b>0&&b-1 in a}var t=function(a){var b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,t,u="sizzle"+1*new Date,v=a.document,w=0,x=0,y=ga(),z=ga(),A=ga(),B=function(a,b){return a===b&&(l=!0),0},C=1<<31,D={}.hasOwnProperty,E=[],F=E.pop,G=E.push,H=E.push,I=E.slice,J=function(a,b){for(var c=0,d=a.length;d>c;c++)if(a[c]===b)return c;return-1},K="checked|selected|async|autofocus|autoplay|controls|defer|disabled|hidden|ismap|loop|multiple|open|readonly|required|scoped",L="[\\x20\\t\\r\\n\\f]",M="(?:\\\\.|[\\w-]|[^\\x00-\\xa0])+",N="\\["+L+"*("+M+")(?:"+L+"*([*^$|!~]?=)"+L+"*(?:'((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\"|("+M+"))|)"+L+"*\\]",O=":("+M+")(?:\\((('((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\")|((?:\\\\.|[^\\\\()[\\]]|"+N+")*)|.*)\\)|)",P=new RegExp(L+"+","g"),Q=new RegExp("^"+L+"+|((?:^|[^\\\\])(?:\\\\.)*)"+L+"+$","g"),R=new RegExp("^"+L+"*,"+L+"*"),S=new RegExp("^"+L+"*([>+~]|"+L+")"+L+"*"),T=new RegExp("="+L+"*([^\\]'\"]*?)"+L+"*\\]","g"),U=new RegExp(O),V=new RegExp("^"+M+"$"),W={ID:new RegExp("^#("+M+")"),CLASS:new RegExp("^\\.("+M+")"),TAG:new RegExp("^("+M+"|[*])"),ATTR:new RegExp("^"+N),PSEUDO:new RegExp("^"+O),CHILD:new RegExp("^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\("+L+"*(even|odd|(([+-]|)(\\d*)n|)"+L+"*(?:([+-]|)"+L+"*(\\d+)|))"+L+"*\\)|)","i"),bool:new RegExp("^(?:"+K+")$","i"),needsContext:new RegExp("^"+L+"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\("+L+"*((?:-\\d)?\\d*)"+L+"*\\)|)(?=[^-]|$)","i")},X=/^(?:input|select|textarea|button)$/i,Y=/^h\d$/i,Z=/^[^{]+\{\s*\[native \w/,$=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,_=/[+~]/,aa=/'|\\/g,ba=new RegExp("\\\\([\\da-f]{1,6}"+L+"?|("+L+")|.)","ig"),ca=function(a,b,c){var d="0x"+b-65536;return d!==d||c?b:0>d?String.fromCharCode(d+65536):String.fromCharCode(d>>10|55296,1023&d|56320)},da=function(){m()};try{H.apply(E=I.call(v.childNodes),v.childNodes),E[v.childNodes.length].nodeType}catch(ea){H={apply:E.length?function(a,b){G.apply(a,I.call(b))}:function(a,b){var c=a.length,d=0;while(a[c++]=b[d++]);a.length=c-1}}}function fa(a,b,d,e){var f,h,j,k,l,o,r,s,w=b&&b.ownerDocument,x=b?b.nodeType:9;if(d=d||[],"string"!=typeof a||!a||1!==x&&9!==x&&11!==x)return d;if(!e&&((b?b.ownerDocument||b:v)!==n&&m(b),b=b||n,p)){if(11!==x&&(o=$.exec(a)))if(f=o[1]){if(9===x){if(!(j=b.getElementById(f)))return d;if(j.id===f)return d.push(j),d}else if(w&&(j=w.getElementById(f))&&t(b,j)&&j.id===f)return d.push(j),d}else{if(o[2])return H.apply(d,b.getElementsByTagName(a)),d;if((f=o[3])&&c.getElementsByClassName&&b.getElementsByClassName)return H.apply(d,b.getElementsByClassName(f)),d}if(c.qsa&&!A[a+" "]&&(!q||!q.test(a))){if(1!==x)w=b,s=a;else if("object"!==b.nodeName.toLowerCase()){(k=b.getAttribute("id"))?k=k.replace(aa,"\\$&"):b.setAttribute("id",k=u),r=g(a),h=r.length,l=V.test(k)?"#"+k:"[id='"+k+"']";while(h--)r[h]=l+" "+qa(r[h]);s=r.join(","),w=_.test(a)&&oa(b.parentNode)||b}if(s)try{return H.apply(d,w.querySelectorAll(s)),d}catch(y){}finally{k===u&&b.removeAttribute("id")}}}return i(a.replace(Q,"$1"),b,d,e)}function ga(){var a=[];function b(c,e){return a.push(c+" ")>d.cacheLength&&delete b[a.shift()],b[c+" "]=e}return b}function ha(a){return a[u]=!0,a}function ia(a){var b=n.createElement("div");try{return!!a(b)}catch(c){return!1}finally{b.parentNode&&b.parentNode.removeChild(b),b=null}}function ja(a,b){var c=a.split("|"),e=c.length;while(e--)d.attrHandle[c[e]]=b}function ka(a,b){var c=b&&a,d=c&&1===a.nodeType&&1===b.nodeType&&(~b.sourceIndex||C)-(~a.sourceIndex||C);if(d)return d;if(c)while(c=c.nextSibling)if(c===b)return-1;return a?1:-1}function la(a){return function(b){var c=b.nodeName.toLowerCase();return"input"===c&&b.type===a}}function ma(a){return function(b){var c=b.nodeName.toLowerCase();return("input"===c||"button"===c)&&b.type===a}}function na(a){return ha(function(b){return b=+b,ha(function(c,d){var e,f=a([],c.length,b),g=f.length;while(g--)c[e=f[g]]&&(c[e]=!(d[e]=c[e]))})})}function oa(a){return a&&"undefined"!=typeof a.getElementsByTagName&&a}c=fa.support={},f=fa.isXML=function(a){var b=a&&(a.ownerDocument||a).documentElement;return b?"HTML"!==b.nodeName:!1},m=fa.setDocument=function(a){var b,e,g=a?a.ownerDocument||a:v;return g!==n&&9===g.nodeType&&g.documentElement?(n=g,o=n.documentElement,p=!f(n),(e=n.defaultView)&&e.top!==e&&(e.addEventListener?e.addEventListener("unload",da,!1):e.attachEvent&&e.attachEvent("onunload",da)),c.attributes=ia(function(a){return a.className="i",!a.getAttribute("className")}),c.getElementsByTagName=ia(function(a){return a.appendChild(n.createComment("")),!a.getElementsByTagName("*").length}),c.getElementsByClassName=Z.test(n.getElementsByClassName),c.getById=ia(function(a){return o.appendChild(a).id=u,!n.getElementsByName||!n.getElementsByName(u).length}),c.getById?(d.find.ID=function(a,b){if("undefined"!=typeof b.getElementById&&p){var c=b.getElementById(a);return c?[c]:[]}},d.filter.ID=function(a){var b=a.replace(ba,ca);return function(a){return a.getAttribute("id")===b}}):(delete d.find.ID,d.filter.ID=function(a){var b=a.replace(ba,ca);return function(a){var c="undefined"!=typeof a.getAttributeNode&&a.getAttributeNode("id");return c&&c.value===b}}),d.find.TAG=c.getElementsByTagName?function(a,b){return"undefined"!=typeof b.getElementsByTagName?b.getElementsByTagName(a):c.qsa?b.querySelectorAll(a):void 0}:function(a,b){var c,d=[],e=0,f=b.getElementsByTagName(a);if("*"===a){while(c=f[e++])1===c.nodeType&&d.push(c);return d}return f},d.find.CLASS=c.getElementsByClassName&&function(a,b){return"undefined"!=typeof b.getElementsByClassName&&p?b.getElementsByClassName(a):void 0},r=[],q=[],(c.qsa=Z.test(n.querySelectorAll))&&(ia(function(a){o.appendChild(a).innerHTML="<a id='"+u+"'></a><select id='"+u+"-\r\\' msallowcapture=''><option selected=''></option></select>",a.querySelectorAll("[msallowcapture^='']").length&&q.push("[*^$]="+L+"*(?:''|\"\")"),a.querySelectorAll("[selected]").length||q.push("\\["+L+"*(?:value|"+K+")"),a.querySelectorAll("[id~="+u+"-]").length||q.push("~="),a.querySelectorAll(":checked").length||q.push(":checked"),a.querySelectorAll("a#"+u+"+*").length||q.push(".#.+[+~]")}),ia(function(a){var b=n.createElement("input");b.setAttribute("type","hidden"),a.appendChild(b).setAttribute("name","D"),a.querySelectorAll("[name=d]").length&&q.push("name"+L+"*[*^$|!~]?="),a.querySelectorAll(":enabled").length||q.push(":enabled",":disabled"),a.querySelectorAll("*,:x"),q.push(",.*:")})),(c.matchesSelector=Z.test(s=o.matches||o.webkitMatchesSelector||o.mozMatchesSelector||o.oMatchesSelector||o.msMatchesSelector))&&ia(function(a){c.disconnectedMatch=s.call(a,"div"),s.call(a,"[s!='']:x"),r.push("!=",O)}),q=q.length&&new RegExp(q.join("|")),r=r.length&&new RegExp(r.join("|")),b=Z.test(o.compareDocumentPosition),t=b||Z.test(o.contains)?function(a,b){var c=9===a.nodeType?a.documentElement:a,d=b&&b.parentNode;return a===d||!(!d||1!==d.nodeType||!(c.contains?c.contains(d):a.compareDocumentPosition&&16&a.compareDocumentPosition(d)))}:function(a,b){if(b)while(b=b.parentNode)if(b===a)return!0;return!1},B=b?function(a,b){if(a===b)return l=!0,0;var d=!a.compareDocumentPosition-!b.compareDocumentPosition;return d?d:(d=(a.ownerDocument||a)===(b.ownerDocument||b)?a.compareDocumentPosition(b):1,1&d||!c.sortDetached&&b.compareDocumentPosition(a)===d?a===n||a.ownerDocument===v&&t(v,a)?-1:b===n||b.ownerDocument===v&&t(v,b)?1:k?J(k,a)-J(k,b):0:4&d?-1:1)}:function(a,b){if(a===b)return l=!0,0;var c,d=0,e=a.parentNode,f=b.parentNode,g=[a],h=[b];if(!e||!f)return a===n?-1:b===n?1:e?-1:f?1:k?J(k,a)-J(k,b):0;if(e===f)return ka(a,b);c=a;while(c=c.parentNode)g.unshift(c);c=b;while(c=c.parentNode)h.unshift(c);while(g[d]===h[d])d++;return d?ka(g[d],h[d]):g[d]===v?-1:h[d]===v?1:0},n):n},fa.matches=function(a,b){return fa(a,null,null,b)},fa.matchesSelector=function(a,b){if((a.ownerDocument||a)!==n&&m(a),b=b.replace(T,"='$1']"),c.matchesSelector&&p&&!A[b+" "]&&(!r||!r.test(b))&&(!q||!q.test(b)))try{var d=s.call(a,b);if(d||c.disconnectedMatch||a.document&&11!==a.document.nodeType)return d}catch(e){}return fa(b,n,null,[a]).length>0},fa.contains=function(a,b){return(a.ownerDocument||a)!==n&&m(a),t(a,b)},fa.attr=function(a,b){(a.ownerDocument||a)!==n&&m(a);var e=d.attrHandle[b.toLowerCase()],f=e&&D.call(d.attrHandle,b.toLowerCase())?e(a,b,!p):void 0;return void 0!==f?f:c.attributes||!p?a.getAttribute(b):(f=a.getAttributeNode(b))&&f.specified?f.value:null},fa.error=function(a){throw new Error("Syntax error, unrecognized expression: "+a)},fa.uniqueSort=function(a){var b,d=[],e=0,f=0;if(l=!c.detectDuplicates,k=!c.sortStable&&a.slice(0),a.sort(B),l){while(b=a[f++])b===a[f]&&(e=d.push(f));while(e--)a.splice(d[e],1)}return k=null,a},e=fa.getText=function(a){var b,c="",d=0,f=a.nodeType;if(f){if(1===f||9===f||11===f){if("string"==typeof a.textContent)return a.textContent;for(a=a.firstChild;a;a=a.nextSibling)c+=e(a)}else if(3===f||4===f)return a.nodeValue}else while(b=a[d++])c+=e(b);return c},d=fa.selectors={cacheLength:50,createPseudo:ha,match:W,attrHandle:{},find:{},relative:{">":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(a){return a[1]=a[1].replace(ba,ca),a[3]=(a[3]||a[4]||a[5]||"").replace(ba,ca),"~="===a[2]&&(a[3]=" "+a[3]+" "),a.slice(0,4)},CHILD:function(a){return a[1]=a[1].toLowerCase(),"nth"===a[1].slice(0,3)?(a[3]||fa.error(a[0]),a[4]=+(a[4]?a[5]+(a[6]||1):2*("even"===a[3]||"odd"===a[3])),a[5]=+(a[7]+a[8]||"odd"===a[3])):a[3]&&fa.error(a[0]),a},PSEUDO:function(a){var b,c=!a[6]&&a[2];return W.CHILD.test(a[0])?null:(a[3]?a[2]=a[4]||a[5]||"":c&&U.test(c)&&(b=g(c,!0))&&(b=c.indexOf(")",c.length-b)-c.length)&&(a[0]=a[0].slice(0,b),a[2]=c.slice(0,b)),a.slice(0,3))}},filter:{TAG:function(a){var b=a.replace(ba,ca).toLowerCase();return"*"===a?function(){return!0}:function(a){return a.nodeName&&a.nodeName.toLowerCase()===b}},CLASS:function(a){var b=y[a+" "];return b||(b=new RegExp("(^|"+L+")"+a+"("+L+"|$)"))&&y(a,function(a){return b.test("string"==typeof a.className&&a.className||"undefined"!=typeof a.getAttribute&&a.getAttribute("class")||"")})},ATTR:function(a,b,c){return function(d){var e=fa.attr(d,a);return null==e?"!="===b:b?(e+="","="===b?e===c:"!="===b?e!==c:"^="===b?c&&0===e.indexOf(c):"*="===b?c&&e.indexOf(c)>-1:"$="===b?c&&e.slice(-c.length)===c:"~="===b?(" "+e.replace(P," ")+" ").indexOf(c)>-1:"|="===b?e===c||e.slice(0,c.length+1)===c+"-":!1):!0}},CHILD:function(a,b,c,d,e){var f="nth"!==a.slice(0,3),g="last"!==a.slice(-4),h="of-type"===b;return 1===d&&0===e?function(a){return!!a.parentNode}:function(b,c,i){var j,k,l,m,n,o,p=f!==g?"nextSibling":"previousSibling",q=b.parentNode,r=h&&b.nodeName.toLowerCase(),s=!i&&!h,t=!1;if(q){if(f){while(p){m=b;while(m=m[p])if(h?m.nodeName.toLowerCase()===r:1===m.nodeType)return!1;o=p="only"===a&&!o&&"nextSibling"}return!0}if(o=[g?q.firstChild:q.lastChild],g&&s){m=q,l=m[u]||(m[u]={}),k=l[m.uniqueID]||(l[m.uniqueID]={}),j=k[a]||[],n=j[0]===w&&j[1],t=n&&j[2],m=n&&q.childNodes[n];while(m=++n&&m&&m[p]||(t=n=0)||o.pop())if(1===m.nodeType&&++t&&m===b){k[a]=[w,n,t];break}}else if(s&&(m=b,l=m[u]||(m[u]={}),k=l[m.uniqueID]||(l[m.uniqueID]={}),j=k[a]||[],n=j[0]===w&&j[1],t=n),t===!1)while(m=++n&&m&&m[p]||(t=n=0)||o.pop())if((h?m.nodeName.toLowerCase()===r:1===m.nodeType)&&++t&&(s&&(l=m[u]||(m[u]={}),k=l[m.uniqueID]||(l[m.uniqueID]={}),k[a]=[w,t]),m===b))break;return t-=e,t===d||t%d===0&&t/d>=0}}},PSEUDO:function(a,b){var c,e=d.pseudos[a]||d.setFilters[a.toLowerCase()]||fa.error("unsupported pseudo: "+a);return e[u]?e(b):e.length>1?(c=[a,a,"",b],d.setFilters.hasOwnProperty(a.toLowerCase())?ha(function(a,c){var d,f=e(a,b),g=f.length;while(g--)d=J(a,f[g]),a[d]=!(c[d]=f[g])}):function(a){return e(a,0,c)}):e}},pseudos:{not:ha(function(a){var b=[],c=[],d=h(a.replace(Q,"$1"));return d[u]?ha(function(a,b,c,e){var f,g=d(a,null,e,[]),h=a.length;while(h--)(f=g[h])&&(a[h]=!(b[h]=f))}):function(a,e,f){return b[0]=a,d(b,null,f,c),b[0]=null,!c.pop()}}),has:ha(function(a){return function(b){return fa(a,b).length>0}}),contains:ha(function(a){return a=a.replace(ba,ca),function(b){return(b.textContent||b.innerText||e(b)).indexOf(a)>-1}}),lang:ha(function(a){return V.test(a||"")||fa.error("unsupported lang: "+a),a=a.replace(ba,ca).toLowerCase(),function(b){var c;do if(c=p?b.lang:b.getAttribute("xml:lang")||b.getAttribute("lang"))return c=c.toLowerCase(),c===a||0===c.indexOf(a+"-");while((b=b.parentNode)&&1===b.nodeType);return!1}}),target:function(b){var c=a.location&&a.location.hash;return c&&c.slice(1)===b.id},root:function(a){return a===o},focus:function(a){return a===n.activeElement&&(!n.hasFocus||n.hasFocus())&&!!(a.type||a.href||~a.tabIndex)},enabled:function(a){return a.disabled===!1},disabled:function(a){return a.disabled===!0},checked:function(a){var b=a.nodeName.toLowerCase();return"input"===b&&!!a.checked||"option"===b&&!!a.selected},selected:function(a){return a.parentNode&&a.parentNode.selectedIndex,a.selected===!0},empty:function(a){for(a=a.firstChild;a;a=a.nextSibling)if(a.nodeType<6)return!1;return!0},parent:function(a){return!d.pseudos.empty(a)},header:function(a){return Y.test(a.nodeName)},input:function(a){return X.test(a.nodeName)},button:function(a){var b=a.nodeName.toLowerCase();return"input"===b&&"button"===a.type||"button"===b},text:function(a){var b;return"input"===a.nodeName.toLowerCase()&&"text"===a.type&&(null==(b=a.getAttribute("type"))||"text"===b.toLowerCase())},first:na(function(){return[0]}),last:na(function(a,b){return[b-1]}),eq:na(function(a,b,c){return[0>c?c+b:c]}),even:na(function(a,b){for(var c=0;b>c;c+=2)a.push(c);return a}),odd:na(function(a,b){for(var c=1;b>c;c+=2)a.push(c);return a}),lt:na(function(a,b,c){for(var d=0>c?c+b:c;--d>=0;)a.push(d);return a}),gt:na(function(a,b,c){for(var d=0>c?c+b:c;++d<b;)a.push(d);return a})}},d.pseudos.nth=d.pseudos.eq;for(b in{radio:!0,checkbox:!0,file:!0,password:!0,image:!0})d.pseudos[b]=la(b);for(b in{submit:!0,reset:!0})d.pseudos[b]=ma(b);function pa(){}pa.prototype=d.filters=d.pseudos,d.setFilters=new pa,g=fa.tokenize=function(a,b){var c,e,f,g,h,i,j,k=z[a+" "];if(k)return b?0:k.slice(0);h=a,i=[],j=d.preFilter;while(h){(!c||(e=R.exec(h)))&&(e&&(h=h.slice(e[0].length)||h),i.push(f=[])),c=!1,(e=S.exec(h))&&(c=e.shift(),f.push({value:c,type:e[0].replace(Q," ")}),h=h.slice(c.length));for(g in d.filter)!(e=W[g].exec(h))||j[g]&&!(e=j[g](e))||(c=e.shift(),f.push({value:c,type:g,matches:e}),h=h.slice(c.length));if(!c)break}return b?h.length:h?fa.error(a):z(a,i).slice(0)};function qa(a){for(var b=0,c=a.length,d="";c>b;b++)d+=a[b].value;return d}function ra(a,b,c){var d=b.dir,e=c&&"parentNode"===d,f=x++;return b.first?function(b,c,f){while(b=b[d])if(1===b.nodeType||e)return a(b,c,f)}:function(b,c,g){var h,i,j,k=[w,f];if(g){while(b=b[d])if((1===b.nodeType||e)&&a(b,c,g))return!0}else while(b=b[d])if(1===b.nodeType||e){if(j=b[u]||(b[u]={}),i=j[b.uniqueID]||(j[b.uniqueID]={}),(h=i[d])&&h[0]===w&&h[1]===f)return k[2]=h[2];if(i[d]=k,k[2]=a(b,c,g))return!0}}}function sa(a){return a.length>1?function(b,c,d){var e=a.length;while(e--)if(!a[e](b,c,d))return!1;return!0}:a[0]}function ta(a,b,c){for(var d=0,e=b.length;e>d;d++)fa(a,b[d],c);return c}function ua(a,b,c,d,e){for(var f,g=[],h=0,i=a.length,j=null!=b;i>h;h++)(f=a[h])&&(!c||c(f,d,e))&&(g.push(f),j&&b.push(h));return g}function va(a,b,c,d,e,f){return d&&!d[u]&&(d=va(d)),e&&!e[u]&&(e=va(e,f)),ha(function(f,g,h,i){var j,k,l,m=[],n=[],o=g.length,p=f||ta(b||"*",h.nodeType?[h]:h,[]),q=!a||!f&&b?p:ua(p,m,a,h,i),r=c?e||(f?a:o||d)?[]:g:q;if(c&&c(q,r,h,i),d){j=ua(r,n),d(j,[],h,i),k=j.length;while(k--)(l=j[k])&&(r[n[k]]=!(q[n[k]]=l))}if(f){if(e||a){if(e){j=[],k=r.length;while(k--)(l=r[k])&&j.push(q[k]=l);e(null,r=[],j,i)}k=r.length;while(k--)(l=r[k])&&(j=e?J(f,l):m[k])>-1&&(f[j]=!(g[j]=l))}}else r=ua(r===g?r.splice(o,r.length):r),e?e(null,g,r,i):H.apply(g,r)})}function wa(a){for(var b,c,e,f=a.length,g=d.relative[a[0].type],h=g||d.relative[" "],i=g?1:0,k=ra(function(a){return a===b},h,!0),l=ra(function(a){return J(b,a)>-1},h,!0),m=[function(a,c,d){var e=!g&&(d||c!==j)||((b=c).nodeType?k(a,c,d):l(a,c,d));return b=null,e}];f>i;i++)if(c=d.relative[a[i].type])m=[ra(sa(m),c)];else{if(c=d.filter[a[i].type].apply(null,a[i].matches),c[u]){for(e=++i;f>e;e++)if(d.relative[a[e].type])break;return va(i>1&&sa(m),i>1&&qa(a.slice(0,i-1).concat({value:" "===a[i-2].type?"*":""})).replace(Q,"$1"),c,e>i&&wa(a.slice(i,e)),f>e&&wa(a=a.slice(e)),f>e&&qa(a))}m.push(c)}return sa(m)}function xa(a,b){var c=b.length>0,e=a.length>0,f=function(f,g,h,i,k){var l,o,q,r=0,s="0",t=f&&[],u=[],v=j,x=f||e&&d.find.TAG("*",k),y=w+=null==v?1:Math.random()||.1,z=x.length;for(k&&(j=g===n||g||k);s!==z&&null!=(l=x[s]);s++){if(e&&l){o=0,g||l.ownerDocument===n||(m(l),h=!p);while(q=a[o++])if(q(l,g||n,h)){i.push(l);break}k&&(w=y)}c&&((l=!q&&l)&&r--,f&&t.push(l))}if(r+=s,c&&s!==r){o=0;while(q=b[o++])q(t,u,g,h);if(f){if(r>0)while(s--)t[s]||u[s]||(u[s]=F.call(i));u=ua(u)}H.apply(i,u),k&&!f&&u.length>0&&r+b.length>1&&fa.uniqueSort(i)}return k&&(w=y,j=v),t};return c?ha(f):f}return h=fa.compile=function(a,b){var c,d=[],e=[],f=A[a+" "];if(!f){b||(b=g(a)),c=b.length;while(c--)f=wa(b[c]),f[u]?d.push(f):e.push(f);f=A(a,xa(e,d)),f.selector=a}return f},i=fa.select=function(a,b,e,f){var i,j,k,l,m,n="function"==typeof a&&a,o=!f&&g(a=n.selector||a);if(e=e||[],1===o.length){if(j=o[0]=o[0].slice(0),j.length>2&&"ID"===(k=j[0]).type&&c.getById&&9===b.nodeType&&p&&d.relative[j[1].type]){if(b=(d.find.ID(k.matches[0].replace(ba,ca),b)||[])[0],!b)return e;n&&(b=b.parentNode),a=a.slice(j.shift().value.length)}i=W.needsContext.test(a)?0:j.length;while(i--){if(k=j[i],d.relative[l=k.type])break;if((m=d.find[l])&&(f=m(k.matches[0].replace(ba,ca),_.test(j[0].type)&&oa(b.parentNode)||b))){if(j.splice(i,1),a=f.length&&qa(j),!a)return H.apply(e,f),e;break}}}return(n||h(a,o))(f,b,!p,e,!b||_.test(a)&&oa(b.parentNode)||b),e},c.sortStable=u.split("").sort(B).join("")===u,c.detectDuplicates=!!l,m(),c.sortDetached=ia(function(a){return 1&a.compareDocumentPosition(n.createElement("div"))}),ia(function(a){return a.innerHTML="<a href='#'></a>","#"===a.firstChild.getAttribute("href")})||ja("type|href|height|width",function(a,b,c){return c?void 0:a.getAttribute(b,"type"===b.toLowerCase()?1:2)}),c.attributes&&ia(function(a){return a.innerHTML="<input/>",a.firstChild.setAttribute("value",""),""===a.firstChild.getAttribute("value")})||ja("value",function(a,b,c){return c||"input"!==a.nodeName.toLowerCase()?void 0:a.defaultValue}),ia(function(a){return null==a.getAttribute("disabled")})||ja(K,function(a,b,c){var d;return c?void 0:a[b]===!0?b.toLowerCase():(d=a.getAttributeNode(b))&&d.specified?d.value:null}),fa}(a);n.find=t,n.expr=t.selectors,n.expr[":"]=n.expr.pseudos,n.uniqueSort=n.unique=t.uniqueSort,n.text=t.getText,n.isXMLDoc=t.isXML,n.contains=t.contains;var u=function(a,b,c){var d=[],e=void 0!==c;while((a=a[b])&&9!==a.nodeType)if(1===a.nodeType){if(e&&n(a).is(c))break;d.push(a)}return d},v=function(a,b){for(var c=[];a;a=a.nextSibling)1===a.nodeType&&a!==b&&c.push(a);return c},w=n.expr.match.needsContext,x=/^<([\w-]+)\s*\/?>(?:<\/\1>|)$/,y=/^.[^:#\[\.,]*$/;function z(a,b,c){if(n.isFunction(b))return n.grep(a,function(a,d){return!!b.call(a,d,a)!==c});if(b.nodeType)return n.grep(a,function(a){return a===b!==c});if("string"==typeof b){if(y.test(b))return n.filter(b,a,c);b=n.filter(b,a)}return n.grep(a,function(a){return n.inArray(a,b)>-1!==c})}n.filter=function(a,b,c){var d=b[0];return c&&(a=":not("+a+")"),1===b.length&&1===d.nodeType?n.find.matchesSelector(d,a)?[d]:[]:n.find.matches(a,n.grep(b,function(a){return 1===a.nodeType}))},n.fn.extend({find:function(a){var b,c=[],d=this,e=d.length;if("string"!=typeof a)return this.pushStack(n(a).filter(function(){for(b=0;e>b;b++)if(n.contains(d[b],this))return!0}));for(b=0;e>b;b++)n.find(a,d[b],c);return c=this.pushStack(e>1?n.unique(c):c),c.selector=this.selector?this.selector+" "+a:a,c},filter:function(a){return this.pushStack(z(this,a||[],!1))},not:function(a){return this.pushStack(z(this,a||[],!0))},is:function(a){return!!z(this,"string"==typeof a&&w.test(a)?n(a):a||[],!1).length}});var A,B=/^(?:\s*(<[\w\W]+>)[^>]*|#([\w-]*))$/,C=n.fn.init=function(a,b,c){var e,f;if(!a)return this;if(c=c||A,"string"==typeof a){if(e="<"===a.charAt(0)&&">"===a.charAt(a.length-1)&&a.length>=3?[null,a,null]:B.exec(a),!e||!e[1]&&b)return!b||b.jquery?(b||c).find(a):this.constructor(b).find(a);if(e[1]){if(b=b instanceof n?b[0]:b,n.merge(this,n.parseHTML(e[1],b&&b.nodeType?b.ownerDocument||b:d,!0)),x.test(e[1])&&n.isPlainObject(b))for(e in b)n.isFunction(this[e])?this[e](b[e]):this.attr(e,b[e]);return this}if(f=d.getElementById(e[2]),f&&f.parentNode){if(f.id!==e[2])return A.find(a);this.length=1,this[0]=f}return this.context=d,this.selector=a,this}return a.nodeType?(this.context=this[0]=a,this.length=1,this):n.isFunction(a)?"undefined"!=typeof c.ready?c.ready(a):a(n):(void 0!==a.selector&&(this.selector=a.selector,this.context=a.context),n.makeArray(a,this))};C.prototype=n.fn,A=n(d);var D=/^(?:parents|prev(?:Until|All))/,E={children:!0,contents:!0,next:!0,prev:!0};n.fn.extend({has:function(a){var b,c=n(a,this),d=c.length;return this.filter(function(){for(b=0;d>b;b++)if(n.contains(this,c[b]))return!0})},closest:function(a,b){for(var c,d=0,e=this.length,f=[],g=w.test(a)||"string"!=typeof a?n(a,b||this.context):0;e>d;d++)for(c=this[d];c&&c!==b;c=c.parentNode)if(c.nodeType<11&&(g?g.index(c)>-1:1===c.nodeType&&n.find.matchesSelector(c,a))){f.push(c);break}return this.pushStack(f.length>1?n.uniqueSort(f):f)},index:function(a){return a?"string"==typeof a?n.inArray(this[0],n(a)):n.inArray(a.jquery?a[0]:a,this):this[0]&&this[0].parentNode?this.first().prevAll().length:-1},add:function(a,b){return this.pushStack(n.uniqueSort(n.merge(this.get(),n(a,b))))},addBack:function(a){return this.add(null==a?this.prevObject:this.prevObject.filter(a))}});function F(a,b){do a=a[b];while(a&&1!==a.nodeType);return a}n.each({parent:function(a){var b=a.parentNode;return b&&11!==b.nodeType?b:null},parents:function(a){return u(a,"parentNode")},parentsUntil:function(a,b,c){return u(a,"parentNode",c)},next:function(a){return F(a,"nextSibling")},prev:function(a){return F(a,"previousSibling")},nextAll:function(a){return u(a,"nextSibling")},prevAll:function(a){return u(a,"previousSibling")},nextUntil:function(a,b,c){return u(a,"nextSibling",c)},prevUntil:function(a,b,c){return u(a,"previousSibling",c)},siblings:function(a){return v((a.parentNode||{}).firstChild,a)},children:function(a){return v(a.firstChild)},contents:function(a){return n.nodeName(a,"iframe")?a.contentDocument||a.contentWindow.document:n.merge([],a.childNodes)}},function(a,b){n.fn[a]=function(c,d){var e=n.map(this,b,c);return"Until"!==a.slice(-5)&&(d=c),d&&"string"==typeof d&&(e=n.filter(d,e)),this.length>1&&(E[a]||(e=n.uniqueSort(e)),D.test(a)&&(e=e.reverse())),this.pushStack(e)}});var G=/\S+/g;function H(a){var b={};return n.each(a.match(G)||[],function(a,c){b[c]=!0}),b}n.Callbacks=function(a){a="string"==typeof a?H(a):n.extend({},a);var b,c,d,e,f=[],g=[],h=-1,i=function(){for(e=a.once,d=b=!0;g.length;h=-1){c=g.shift();while(++h<f.length)f[h].apply(c[0],c[1])===!1&&a.stopOnFalse&&(h=f.length,c=!1)}a.memory||(c=!1),b=!1,e&&(f=c?[]:"")},j={add:function(){return f&&(c&&!b&&(h=f.length-1,g.push(c)),function d(b){n.each(b,function(b,c){n.isFunction(c)?a.unique&&j.has(c)||f.push(c):c&&c.length&&"string"!==n.type(c)&&d(c)})}(arguments),c&&!b&&i()),this},remove:function(){return n.each(arguments,function(a,b){var c;while((c=n.inArray(b,f,c))>-1)f.splice(c,1),h>=c&&h--}),this},has:function(a){return a?n.inArray(a,f)>-1:f.length>0},empty:function(){return f&&(f=[]),this},disable:function(){return e=g=[],f=c="",this},disabled:function(){return!f},lock:function(){return e=!0,c||j.disable(),this},locked:function(){return!!e},fireWith:function(a,c){return e||(c=c||[],c=[a,c.slice?c.slice():c],g.push(c),b||i()),this},fire:function(){return j.fireWith(this,arguments),this},fired:function(){return!!d}};return j},n.extend({Deferred:function(a){var b=[["resolve","done",n.Callbacks("once memory"),"resolved"],["reject","fail",n.Callbacks("once memory"),"rejected"],["notify","progress",n.Callbacks("memory")]],c="pending",d={state:function(){return c},always:function(){return e.done(arguments).fail(arguments),this},then:function(){var a=arguments;return n.Deferred(function(c){n.each(b,function(b,f){var g=n.isFunction(a[b])&&a[b];e[f[1]](function(){var a=g&&g.apply(this,arguments);a&&n.isFunction(a.promise)?a.promise().progress(c.notify).done(c.resolve).fail(c.reject):c[f[0]+"With"](this===d?c.promise():this,g?[a]:arguments)})}),a=null}).promise()},promise:function(a){return null!=a?n.extend(a,d):d}},e={};return d.pipe=d.then,n.each(b,function(a,f){var g=f[2],h=f[3];d[f[1]]=g.add,h&&g.add(function(){c=h},b[1^a][2].disable,b[2][2].lock),e[f[0]]=function(){return e[f[0]+"With"](this===e?d:this,arguments),this},e[f[0]+"With"]=g.fireWith}),d.promise(e),a&&a.call(e,e),e},when:function(a){var b=0,c=e.call(arguments),d=c.length,f=1!==d||a&&n.isFunction(a.promise)?d:0,g=1===f?a:n.Deferred(),h=function(a,b,c){return function(d){b[a]=this,c[a]=arguments.length>1?e.call(arguments):d,c===i?g.notifyWith(b,c):--f||g.resolveWith(b,c)}},i,j,k;if(d>1)for(i=new Array(d),j=new Array(d),k=new Array(d);d>b;b++)c[b]&&n.isFunction(c[b].promise)?c[b].promise().progress(h(b,j,i)).done(h(b,k,c)).fail(g.reject):--f;return f||g.resolveWith(k,c),g.promise()}});var I;n.fn.ready=function(a){return n.ready.promise().done(a),this},n.extend({isReady:!1,readyWait:1,holdReady:function(a){a?n.readyWait++:n.ready(!0)},ready:function(a){(a===!0?--n.readyWait:n.isReady)||(n.isReady=!0,a!==!0&&--n.readyWait>0||(I.resolveWith(d,[n]),n.fn.triggerHandler&&(n(d).triggerHandler("ready"),n(d).off("ready"))))}});function J(){d.addEventListener?(d.removeEventListener("DOMContentLoaded",K),a.removeEventListener("load",K)):(d.detachEvent("onreadystatechange",K),a.detachEvent("onload",K))}function K(){(d.addEventListener||"load"===a.event.type||"complete"===d.readyState)&&(J(),n.ready())}n.ready.promise=function(b){if(!I)if(I=n.Deferred(),"complete"===d.readyState)a.setTimeout(n.ready);else if(d.addEventListener)d.addEventListener("DOMContentLoaded",K),a.addEventListener("load",K);else{d.attachEvent("onreadystatechange",K),a.attachEvent("onload",K);var c=!1;try{c=null==a.frameElement&&d.documentElement}catch(e){}c&&c.doScroll&&!function f(){if(!n.isReady){try{c.doScroll("left")}catch(b){return a.setTimeout(f,50)}J(),n.ready()}}()}return I.promise(b)},n.ready.promise();var L;for(L in n(l))break;l.ownFirst="0"===L,l.inlineBlockNeedsLayout=!1,n(function(){var a,b,c,e;c=d.getElementsByTagName("body")[0],c&&c.style&&(b=d.createElement("div"),e=d.createElement("div"),e.style.cssText="position:absolute;border:0;width:0;height:0;top:0;left:-9999px",c.appendChild(e).appendChild(b),"undefined"!=typeof b.style.zoom&&(b.style.cssText="display:inline;margin:0;border:0;padding:1px;width:1px;zoom:1",l.inlineBlockNeedsLayout=a=3===b.offsetWidth,a&&(c.style.zoom=1)),c.removeChild(e))}),function(){var a=d.createElement("div");l.deleteExpando=!0;try{delete a.test}catch(b){l.deleteExpando=!1}a=null}();var M=function(a){var b=n.noData[(a.nodeName+" ").toLowerCase()],c=+a.nodeType||1;return 1!==c&&9!==c?!1:!b||b!==!0&&a.getAttribute("classid")===b},N=/^(?:\{[\w\W]*\}|\[[\w\W]*\])$/,O=/([A-Z])/g;function P(a,b,c){if(void 0===c&&1===a.nodeType){var d="data-"+b.replace(O,"-$1").toLowerCase();if(c=a.getAttribute(d),"string"==typeof c){try{c="true"===c?!0:"false"===c?!1:"null"===c?null:+c+""===c?+c:N.test(c)?n.parseJSON(c):c}catch(e){}n.data(a,b,c)}else c=void 0}return c}function Q(a){var b;for(b in a)if(("data"!==b||!n.isEmptyObject(a[b]))&&"toJSON"!==b)return!1;
return!0}function R(a,b,d,e){if(M(a)){var f,g,h=n.expando,i=a.nodeType,j=i?n.cache:a,k=i?a[h]:a[h]&&h;if(k&&j[k]&&(e||j[k].data)||void 0!==d||"string"!=typeof b)return k||(k=i?a[h]=c.pop()||n.guid++:h),j[k]||(j[k]=i?{}:{toJSON:n.noop}),("object"==typeof b||"function"==typeof b)&&(e?j[k]=n.extend(j[k],b):j[k].data=n.extend(j[k].data,b)),g=j[k],e||(g.data||(g.data={}),g=g.data),void 0!==d&&(g[n.camelCase(b)]=d),"string"==typeof b?(f=g[b],null==f&&(f=g[n.camelCase(b)])):f=g,f}}function S(a,b,c){if(M(a)){var d,e,f=a.nodeType,g=f?n.cache:a,h=f?a[n.expando]:n.expando;if(g[h]){if(b&&(d=c?g[h]:g[h].data)){n.isArray(b)?b=b.concat(n.map(b,n.camelCase)):b in d?b=[b]:(b=n.camelCase(b),b=b in d?[b]:b.split(" ")),e=b.length;while(e--)delete d[b[e]];if(c?!Q(d):!n.isEmptyObject(d))return}(c||(delete g[h].data,Q(g[h])))&&(f?n.cleanData([a],!0):l.deleteExpando||g!=g.window?delete g[h]:g[h]=void 0)}}}n.extend({cache:{},noData:{"applet ":!0,"embed ":!0,"object ":"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"},hasData:function(a){return a=a.nodeType?n.cache[a[n.expando]]:a[n.expando],!!a&&!Q(a)},data:function(a,b,c){return R(a,b,c)},removeData:function(a,b){return S(a,b)},_data:function(a,b,c){return R(a,b,c,!0)},_removeData:function(a,b){return S(a,b,!0)}}),n.fn.extend({data:function(a,b){var c,d,e,f=this[0],g=f&&f.attributes;if(void 0===a){if(this.length&&(e=n.data(f),1===f.nodeType&&!n._data(f,"parsedAttrs"))){c=g.length;while(c--)g[c]&&(d=g[c].name,0===d.indexOf("data-")&&(d=n.camelCase(d.slice(5)),P(f,d,e[d])));n._data(f,"parsedAttrs",!0)}return e}return"object"==typeof a?this.each(function(){n.data(this,a)}):arguments.length>1?this.each(function(){n.data(this,a,b)}):f?P(f,a,n.data(f,a)):void 0},removeData:function(a){return this.each(function(){n.removeData(this,a)})}}),n.extend({queue:function(a,b,c){var d;return a?(b=(b||"fx")+"queue",d=n._data(a,b),c&&(!d||n.isArray(c)?d=n._data(a,b,n.makeArray(c)):d.push(c)),d||[]):void 0},dequeue:function(a,b){b=b||"fx";var c=n.queue(a,b),d=c.length,e=c.shift(),f=n._queueHooks(a,b),g=function(){n.dequeue(a,b)};"inprogress"===e&&(e=c.shift(),d--),e&&("fx"===b&&c.unshift("inprogress"),delete f.stop,e.call(a,g,f)),!d&&f&&f.empty.fire()},_queueHooks:function(a,b){var c=b+"queueHooks";return n._data(a,c)||n._data(a,c,{empty:n.Callbacks("once memory").add(function(){n._removeData(a,b+"queue"),n._removeData(a,c)})})}}),n.fn.extend({queue:function(a,b){var c=2;return"string"!=typeof a&&(b=a,a="fx",c--),arguments.length<c?n.queue(this[0],a):void 0===b?this:this.each(function(){var c=n.queue(this,a,b);n._queueHooks(this,a),"fx"===a&&"inprogress"!==c[0]&&n.dequeue(this,a)})},dequeue:function(a){return this.each(function(){n.dequeue(this,a)})},clearQueue:function(a){return this.queue(a||"fx",[])},promise:function(a,b){var c,d=1,e=n.Deferred(),f=this,g=this.length,h=function(){--d||e.resolveWith(f,[f])};"string"!=typeof a&&(b=a,a=void 0),a=a||"fx";while(g--)c=n._data(f[g],a+"queueHooks"),c&&c.empty&&(d++,c.empty.add(h));return h(),e.promise(b)}}),function(){var a;l.shrinkWrapBlocks=function(){if(null!=a)return a;a=!1;var b,c,e;return c=d.getElementsByTagName("body")[0],c&&c.style?(b=d.createElement("div"),e=d.createElement("div"),e.style.cssText="position:absolute;border:0;width:0;height:0;top:0;left:-9999px",c.appendChild(e).appendChild(b),"undefined"!=typeof b.style.zoom&&(b.style.cssText="-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;display:block;margin:0;border:0;padding:1px;width:1px;zoom:1",b.appendChild(d.createElement("div")).style.width="5px",a=3!==b.offsetWidth),c.removeChild(e),a):void 0}}();var T=/[+-]?(?:\d*\.|)\d+(?:[eE][+-]?\d+|)/.source,U=new RegExp("^(?:([+-])=|)("+T+")([a-z%]*)$","i"),V=["Top","Right","Bottom","Left"],W=function(a,b){return a=b||a,"none"===n.css(a,"display")||!n.contains(a.ownerDocument,a)};function X(a,b,c,d){var e,f=1,g=20,h=d?function(){return d.cur()}:function(){return n.css(a,b,"")},i=h(),j=c&&c[3]||(n.cssNumber[b]?"":"px"),k=(n.cssNumber[b]||"px"!==j&&+i)&&U.exec(n.css(a,b));if(k&&k[3]!==j){j=j||k[3],c=c||[],k=+i||1;do f=f||".5",k/=f,n.style(a,b,k+j);while(f!==(f=h()/i)&&1!==f&&--g)}return c&&(k=+k||+i||0,e=c[1]?k+(c[1]+1)*c[2]:+c[2],d&&(d.unit=j,d.start=k,d.end=e)),e}var Y=function(a,b,c,d,e,f,g){var h=0,i=a.length,j=null==c;if("object"===n.type(c)){e=!0;for(h in c)Y(a,b,h,c[h],!0,f,g)}else if(void 0!==d&&(e=!0,n.isFunction(d)||(g=!0),j&&(g?(b.call(a,d),b=null):(j=b,b=function(a,b,c){return j.call(n(a),c)})),b))for(;i>h;h++)b(a[h],c,g?d:d.call(a[h],h,b(a[h],c)));return e?a:j?b.call(a):i?b(a[0],c):f},Z=/^(?:checkbox|radio)$/i,$=/<([\w:-]+)/,_=/^$|\/(?:java|ecma)script/i,aa=/^\s+/,ba="abbr|article|aside|audio|bdi|canvas|data|datalist|details|dialog|figcaption|figure|footer|header|hgroup|main|mark|meter|nav|output|picture|progress|section|summary|template|time|video";function ca(a){var b=ba.split("|"),c=a.createDocumentFragment();if(c.createElement)while(b.length)c.createElement(b.pop());return c}!function(){var a=d.createElement("div"),b=d.createDocumentFragment(),c=d.createElement("input");a.innerHTML=" <link/><table></table><a href='/a'>a</a><input type='checkbox'/>",l.leadingWhitespace=3===a.firstChild.nodeType,l.tbody=!a.getElementsByTagName("tbody").length,l.htmlSerialize=!!a.getElementsByTagName("link").length,l.html5Clone="<:nav></:nav>"!==d.createElement("nav").cloneNode(!0).outerHTML,c.type="checkbox",c.checked=!0,b.appendChild(c),l.appendChecked=c.checked,a.innerHTML="<textarea>x</textarea>",l.noCloneChecked=!!a.cloneNode(!0).lastChild.defaultValue,b.appendChild(a),c=d.createElement("input"),c.setAttribute("type","radio"),c.setAttribute("checked","checked"),c.setAttribute("name","t"),a.appendChild(c),l.checkClone=a.cloneNode(!0).cloneNode(!0).lastChild.checked,l.noCloneEvent=!!a.addEventListener,a[n.expando]=1,l.attributes=!a.getAttribute(n.expando)}();var da={option:[1,"<select multiple='multiple'>","</select>"],legend:[1,"<fieldset>","</fieldset>"],area:[1,"<map>","</map>"],param:[1,"<object>","</object>"],thead:[1,"<table>","</table>"],tr:[2,"<table><tbody>","</tbody></table>"],col:[2,"<table><tbody></tbody><colgroup>","</colgroup></table>"],td:[3,"<table><tbody><tr>","</tr></tbody></table>"],_default:l.htmlSerialize?[0,"",""]:[1,"X<div>","</div>"]};da.optgroup=da.option,da.tbody=da.tfoot=da.colgroup=da.caption=da.thead,da.th=da.td;function ea(a,b){var c,d,e=0,f="undefined"!=typeof a.getElementsByTagName?a.getElementsByTagName(b||"*"):"undefined"!=typeof a.querySelectorAll?a.querySelectorAll(b||"*"):void 0;if(!f)for(f=[],c=a.childNodes||a;null!=(d=c[e]);e++)!b||n.nodeName(d,b)?f.push(d):n.merge(f,ea(d,b));return void 0===b||b&&n.nodeName(a,b)?n.merge([a],f):f}function fa(a,b){for(var c,d=0;null!=(c=a[d]);d++)n._data(c,"globalEval",!b||n._data(b[d],"globalEval"))}var ga=/<|&#?\w+;/,ha=/<tbody/i;function ia(a){Z.test(a.type)&&(a.defaultChecked=a.checked)}function ja(a,b,c,d,e){for(var f,g,h,i,j,k,m,o=a.length,p=ca(b),q=[],r=0;o>r;r++)if(g=a[r],g||0===g)if("object"===n.type(g))n.merge(q,g.nodeType?[g]:g);else if(ga.test(g)){i=i||p.appendChild(b.createElement("div")),j=($.exec(g)||["",""])[1].toLowerCase(),m=da[j]||da._default,i.innerHTML=m[1]+n.htmlPrefilter(g)+m[2],f=m[0];while(f--)i=i.lastChild;if(!l.leadingWhitespace&&aa.test(g)&&q.push(b.createTextNode(aa.exec(g)[0])),!l.tbody){g="table"!==j||ha.test(g)?"<table>"!==m[1]||ha.test(g)?0:i:i.firstChild,f=g&&g.childNodes.length;while(f--)n.nodeName(k=g.childNodes[f],"tbody")&&!k.childNodes.length&&g.removeChild(k)}n.merge(q,i.childNodes),i.textContent="";while(i.firstChild)i.removeChild(i.firstChild);i=p.lastChild}else q.push(b.createTextNode(g));i&&p.removeChild(i),l.appendChecked||n.grep(ea(q,"input"),ia),r=0;while(g=q[r++])if(d&&n.inArray(g,d)>-1)e&&e.push(g);else if(h=n.contains(g.ownerDocument,g),i=ea(p.appendChild(g),"script"),h&&fa(i),c){f=0;while(g=i[f++])_.test(g.type||"")&&c.push(g)}return i=null,p}!function(){var b,c,e=d.createElement("div");for(b in{submit:!0,change:!0,focusin:!0})c="on"+b,(l[b]=c in a)||(e.setAttribute(c,"t"),l[b]=e.attributes[c].expando===!1);e=null}();var ka=/^(?:input|select|textarea)$/i,la=/^key/,ma=/^(?:mouse|pointer|contextmenu|drag|drop)|click/,na=/^(?:focusinfocus|focusoutblur)$/,oa=/^([^.]*)(?:\.(.+)|)/;function pa(){return!0}function qa(){return!1}function ra(){try{return d.activeElement}catch(a){}}function sa(a,b,c,d,e,f){var g,h;if("object"==typeof b){"string"!=typeof c&&(d=d||c,c=void 0);for(h in b)sa(a,h,c,d,b[h],f);return a}if(null==d&&null==e?(e=c,d=c=void 0):null==e&&("string"==typeof c?(e=d,d=void 0):(e=d,d=c,c=void 0)),e===!1)e=qa;else if(!e)return a;return 1===f&&(g=e,e=function(a){return n().off(a),g.apply(this,arguments)},e.guid=g.guid||(g.guid=n.guid++)),a.each(function(){n.event.add(this,b,e,d,c)})}n.event={global:{},add:function(a,b,c,d,e){var f,g,h,i,j,k,l,m,o,p,q,r=n._data(a);if(r){c.handler&&(i=c,c=i.handler,e=i.selector),c.guid||(c.guid=n.guid++),(g=r.events)||(g=r.events={}),(k=r.handle)||(k=r.handle=function(a){return"undefined"==typeof n||a&&n.event.triggered===a.type?void 0:n.event.dispatch.apply(k.elem,arguments)},k.elem=a),b=(b||"").match(G)||[""],h=b.length;while(h--)f=oa.exec(b[h])||[],o=q=f[1],p=(f[2]||"").split(".").sort(),o&&(j=n.event.special[o]||{},o=(e?j.delegateType:j.bindType)||o,j=n.event.special[o]||{},l=n.extend({type:o,origType:q,data:d,handler:c,guid:c.guid,selector:e,needsContext:e&&n.expr.match.needsContext.test(e),namespace:p.join(".")},i),(m=g[o])||(m=g[o]=[],m.delegateCount=0,j.setup&&j.setup.call(a,d,p,k)!==!1||(a.addEventListener?a.addEventListener(o,k,!1):a.attachEvent&&a.attachEvent("on"+o,k))),j.add&&(j.add.call(a,l),l.handler.guid||(l.handler.guid=c.guid)),e?m.splice(m.delegateCount++,0,l):m.push(l),n.event.global[o]=!0);a=null}},remove:function(a,b,c,d,e){var f,g,h,i,j,k,l,m,o,p,q,r=n.hasData(a)&&n._data(a);if(r&&(k=r.events)){b=(b||"").match(G)||[""],j=b.length;while(j--)if(h=oa.exec(b[j])||[],o=q=h[1],p=(h[2]||"").split(".").sort(),o){l=n.event.special[o]||{},o=(d?l.delegateType:l.bindType)||o,m=k[o]||[],h=h[2]&&new RegExp("(^|\\.)"+p.join("\\.(?:.*\\.|)")+"(\\.|$)"),i=f=m.length;while(f--)g=m[f],!e&&q!==g.origType||c&&c.guid!==g.guid||h&&!h.test(g.namespace)||d&&d!==g.selector&&("**"!==d||!g.selector)||(m.splice(f,1),g.selector&&m.delegateCount--,l.remove&&l.remove.call(a,g));i&&!m.length&&(l.teardown&&l.teardown.call(a,p,r.handle)!==!1||n.removeEvent(a,o,r.handle),delete k[o])}else for(o in k)n.event.remove(a,o+b[j],c,d,!0);n.isEmptyObject(k)&&(delete r.handle,n._removeData(a,"events"))}},trigger:function(b,c,e,f){var g,h,i,j,l,m,o,p=[e||d],q=k.call(b,"type")?b.type:b,r=k.call(b,"namespace")?b.namespace.split("."):[];if(i=m=e=e||d,3!==e.nodeType&&8!==e.nodeType&&!na.test(q+n.event.triggered)&&(q.indexOf(".")>-1&&(r=q.split("."),q=r.shift(),r.sort()),h=q.indexOf(":")<0&&"on"+q,b=b[n.expando]?b:new n.Event(q,"object"==typeof b&&b),b.isTrigger=f?2:3,b.namespace=r.join("."),b.rnamespace=b.namespace?new RegExp("(^|\\.)"+r.join("\\.(?:.*\\.|)")+"(\\.|$)"):null,b.result=void 0,b.target||(b.target=e),c=null==c?[b]:n.makeArray(c,[b]),l=n.event.special[q]||{},f||!l.trigger||l.trigger.apply(e,c)!==!1)){if(!f&&!l.noBubble&&!n.isWindow(e)){for(j=l.delegateType||q,na.test(j+q)||(i=i.parentNode);i;i=i.parentNode)p.push(i),m=i;m===(e.ownerDocument||d)&&p.push(m.defaultView||m.parentWindow||a)}o=0;while((i=p[o++])&&!b.isPropagationStopped())b.type=o>1?j:l.bindType||q,g=(n._data(i,"events")||{})[b.type]&&n._data(i,"handle"),g&&g.apply(i,c),g=h&&i[h],g&&g.apply&&M(i)&&(b.result=g.apply(i,c),b.result===!1&&b.preventDefault());if(b.type=q,!f&&!b.isDefaultPrevented()&&(!l._default||l._default.apply(p.pop(),c)===!1)&&M(e)&&h&&e[q]&&!n.isWindow(e)){m=e[h],m&&(e[h]=null),n.event.triggered=q;try{e[q]()}catch(s){}n.event.triggered=void 0,m&&(e[h]=m)}return b.result}},dispatch:function(a){a=n.event.fix(a);var b,c,d,f,g,h=[],i=e.call(arguments),j=(n._data(this,"events")||{})[a.type]||[],k=n.event.special[a.type]||{};if(i[0]=a,a.delegateTarget=this,!k.preDispatch||k.preDispatch.call(this,a)!==!1){h=n.event.handlers.call(this,a,j),b=0;while((f=h[b++])&&!a.isPropagationStopped()){a.currentTarget=f.elem,c=0;while((g=f.handlers[c++])&&!a.isImmediatePropagationStopped())(!a.rnamespace||a.rnamespace.test(g.namespace))&&(a.handleObj=g,a.data=g.data,d=((n.event.special[g.origType]||{}).handle||g.handler).apply(f.elem,i),void 0!==d&&(a.result=d)===!1&&(a.preventDefault(),a.stopPropagation()))}return k.postDispatch&&k.postDispatch.call(this,a),a.result}},handlers:function(a,b){var c,d,e,f,g=[],h=b.delegateCount,i=a.target;if(h&&i.nodeType&&("click"!==a.type||isNaN(a.button)||a.button<1))for(;i!=this;i=i.parentNode||this)if(1===i.nodeType&&(i.disabled!==!0||"click"!==a.type)){for(d=[],c=0;h>c;c++)f=b[c],e=f.selector+" ",void 0===d[e]&&(d[e]=f.needsContext?n(e,this).index(i)>-1:n.find(e,this,null,[i]).length),d[e]&&d.push(f);d.length&&g.push({elem:i,handlers:d})}return h<b.length&&g.push({elem:this,handlers:b.slice(h)}),g},fix:function(a){if(a[n.expando])return a;var b,c,e,f=a.type,g=a,h=this.fixHooks[f];h||(this.fixHooks[f]=h=ma.test(f)?this.mouseHooks:la.test(f)?this.keyHooks:{}),e=h.props?this.props.concat(h.props):this.props,a=new n.Event(g),b=e.length;while(b--)c=e[b],a[c]=g[c];return a.target||(a.target=g.srcElement||d),3===a.target.nodeType&&(a.target=a.target.parentNode),a.metaKey=!!a.metaKey,h.filter?h.filter(a,g):a},props:"altKey bubbles cancelable ctrlKey currentTarget detail eventPhase metaKey relatedTarget shiftKey target timeStamp view which".split(" "),fixHooks:{},keyHooks:{props:"char charCode key keyCode".split(" "),filter:function(a,b){return null==a.which&&(a.which=null!=b.charCode?b.charCode:b.keyCode),a}},mouseHooks:{props:"button buttons clientX clientY fromElement offsetX offsetY pageX pageY screenX screenY toElement".split(" "),filter:function(a,b){var c,e,f,g=b.button,h=b.fromElement;return null==a.pageX&&null!=b.clientX&&(e=a.target.ownerDocument||d,f=e.documentElement,c=e.body,a.pageX=b.clientX+(f&&f.scrollLeft||c&&c.scrollLeft||0)-(f&&f.clientLeft||c&&c.clientLeft||0),a.pageY=b.clientY+(f&&f.scrollTop||c&&c.scrollTop||0)-(f&&f.clientTop||c&&c.clientTop||0)),!a.relatedTarget&&h&&(a.relatedTarget=h===a.target?b.toElement:h),a.which||void 0===g||(a.which=1&g?1:2&g?3:4&g?2:0),a}},special:{load:{noBubble:!0},focus:{trigger:function(){if(this!==ra()&&this.focus)try{return this.focus(),!1}catch(a){}},delegateType:"focusin"},blur:{trigger:function(){return this===ra()&&this.blur?(this.blur(),!1):void 0},delegateType:"focusout"},click:{trigger:function(){return n.nodeName(this,"input")&&"checkbox"===this.type&&this.click?(this.click(),!1):void 0},_default:function(a){return n.nodeName(a.target,"a")}},beforeunload:{postDispatch:function(a){void 0!==a.result&&a.originalEvent&&(a.originalEvent.returnValue=a.result)}}},simulate:function(a,b,c){var d=n.extend(new n.Event,c,{type:a,isSimulated:!0});n.event.trigger(d,null,b),d.isDefaultPrevented()&&c.preventDefault()}},n.removeEvent=d.removeEventListener?function(a,b,c){a.removeEventListener&&a.removeEventListener(b,c)}:function(a,b,c){var d="on"+b;a.detachEvent&&("undefined"==typeof a[d]&&(a[d]=null),a.detachEvent(d,c))},n.Event=function(a,b){return this instanceof n.Event?(a&&a.type?(this.originalEvent=a,this.type=a.type,this.isDefaultPrevented=a.defaultPrevented||void 0===a.defaultPrevented&&a.returnValue===!1?pa:qa):this.type=a,b&&n.extend(this,b),this.timeStamp=a&&a.timeStamp||n.now(),void(this[n.expando]=!0)):new n.Event(a,b)},n.Event.prototype={constructor:n.Event,isDefaultPrevented:qa,isPropagationStopped:qa,isImmediatePropagationStopped:qa,preventDefault:function(){var a=this.originalEvent;this.isDefaultPrevented=pa,a&&(a.preventDefault?a.preventDefault():a.returnValue=!1)},stopPropagation:function(){var a=this.originalEvent;this.isPropagationStopped=pa,a&&!this.isSimulated&&(a.stopPropagation&&a.stopPropagation(),a.cancelBubble=!0)},stopImmediatePropagation:function(){var a=this.originalEvent;this.isImmediatePropagationStopped=pa,a&&a.stopImmediatePropagation&&a.stopImmediatePropagation(),this.stopPropagation()}},n.each({mouseenter:"mouseover",mouseleave:"mouseout",pointerenter:"pointerover",pointerleave:"pointerout"},function(a,b){n.event.special[a]={delegateType:b,bindType:b,handle:function(a){var c,d=this,e=a.relatedTarget,f=a.handleObj;return(!e||e!==d&&!n.contains(d,e))&&(a.type=f.origType,c=f.handler.apply(this,arguments),a.type=b),c}}}),l.submit||(n.event.special.submit={setup:function(){return n.nodeName(this,"form")?!1:void n.event.add(this,"click._submit keypress._submit",function(a){var b=a.target,c=n.nodeName(b,"input")||n.nodeName(b,"button")?n.prop(b,"form"):void 0;c&&!n._data(c,"submit")&&(n.event.add(c,"submit._submit",function(a){a._submitBubble=!0}),n._data(c,"submit",!0))})},postDispatch:function(a){a._submitBubble&&(delete a._submitBubble,this.parentNode&&!a.isTrigger&&n.event.simulate("submit",this.parentNode,a))},teardown:function(){return n.nodeName(this,"form")?!1:void n.event.remove(this,"._submit")}}),l.change||(n.event.special.change={setup:function(){return ka.test(this.nodeName)?(("checkbox"===this.type||"radio"===this.type)&&(n.event.add(this,"propertychange._change",function(a){"checked"===a.originalEvent.propertyName&&(this._justChanged=!0)}),n.event.add(this,"click._change",function(a){this._justChanged&&!a.isTrigger&&(this._justChanged=!1),n.event.simulate("change",this,a)})),!1):void n.event.add(this,"beforeactivate._change",function(a){var b=a.target;ka.test(b.nodeName)&&!n._data(b,"change")&&(n.event.add(b,"change._change",function(a){!this.parentNode||a.isSimulated||a.isTrigger||n.event.simulate("change",this.parentNode,a)}),n._data(b,"change",!0))})},handle:function(a){var b=a.target;return this!==b||a.isSimulated||a.isTrigger||"radio"!==b.type&&"checkbox"!==b.type?a.handleObj.handler.apply(this,arguments):void 0},teardown:function(){return n.event.remove(this,"._change"),!ka.test(this.nodeName)}}),l.focusin||n.each({focus:"focusin",blur:"focusout"},function(a,b){var c=function(a){n.event.simulate(b,a.target,n.event.fix(a))};n.event.special[b]={setup:function(){var d=this.ownerDocument||this,e=n._data(d,b);e||d.addEventListener(a,c,!0),n._data(d,b,(e||0)+1)},teardown:function(){var d=this.ownerDocument||this,e=n._data(d,b)-1;e?n._data(d,b,e):(d.removeEventListener(a,c,!0),n._removeData(d,b))}}}),n.fn.extend({on:function(a,b,c,d){return sa(this,a,b,c,d)},one:function(a,b,c,d){return sa(this,a,b,c,d,1)},off:function(a,b,c){var d,e;if(a&&a.preventDefault&&a.handleObj)return d=a.handleObj,n(a.delegateTarget).off(d.namespace?d.origType+"."+d.namespace:d.origType,d.selector,d.handler),this;if("object"==typeof a){for(e in a)this.off(e,b,a[e]);return this}return(b===!1||"function"==typeof b)&&(c=b,b=void 0),c===!1&&(c=qa),this.each(function(){n.event.remove(this,a,c,b)})},trigger:function(a,b){return this.each(function(){n.event.trigger(a,b,this)})},triggerHandler:function(a,b){var c=this[0];return c?n.event.trigger(a,b,c,!0):void 0}});var ta=/ jQuery\d+="(?:null|\d+)"/g,ua=new RegExp("<(?:"+ba+")[\\s/>]","i"),va=/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:-]+)[^>]*)\/>/gi,wa=/<script|<style|<link/i,xa=/checked\s*(?:[^=]|=\s*.checked.)/i,ya=/^true\/(.*)/,za=/^\s*<!(?:\[CDATA\[|--)|(?:\]\]|--)>\s*$/g,Aa=ca(d),Ba=Aa.appendChild(d.createElement("div"));function Ca(a,b){return n.nodeName(a,"table")&&n.nodeName(11!==b.nodeType?b:b.firstChild,"tr")?a.getElementsByTagName("tbody")[0]||a.appendChild(a.ownerDocument.createElement("tbody")):a}function Da(a){return a.type=(null!==n.find.attr(a,"type"))+"/"+a.type,a}function Ea(a){var b=ya.exec(a.type);return b?a.type=b[1]:a.removeAttribute("type"),a}function Fa(a,b){if(1===b.nodeType&&n.hasData(a)){var c,d,e,f=n._data(a),g=n._data(b,f),h=f.events;if(h){delete g.handle,g.events={};for(c in h)for(d=0,e=h[c].length;e>d;d++)n.event.add(b,c,h[c][d])}g.data&&(g.data=n.extend({},g.data))}}function Ga(a,b){var c,d,e;if(1===b.nodeType){if(c=b.nodeName.toLowerCase(),!l.noCloneEvent&&b[n.expando]){e=n._data(b);for(d in e.events)n.removeEvent(b,d,e.handle);b.removeAttribute(n.expando)}"script"===c&&b.text!==a.text?(Da(b).text=a.text,Ea(b)):"object"===c?(b.parentNode&&(b.outerHTML=a.outerHTML),l.html5Clone&&a.innerHTML&&!n.trim(b.innerHTML)&&(b.innerHTML=a.innerHTML)):"input"===c&&Z.test(a.type)?(b.defaultChecked=b.checked=a.checked,b.value!==a.value&&(b.value=a.value)):"option"===c?b.defaultSelected=b.selected=a.defaultSelected:("input"===c||"textarea"===c)&&(b.defaultValue=a.defaultValue)}}function Ha(a,b,c,d){b=f.apply([],b);var e,g,h,i,j,k,m=0,o=a.length,p=o-1,q=b[0],r=n.isFunction(q);if(r||o>1&&"string"==typeof q&&!l.checkClone&&xa.test(q))return a.each(function(e){var f=a.eq(e);r&&(b[0]=q.call(this,e,f.html())),Ha(f,b,c,d)});if(o&&(k=ja(b,a[0].ownerDocument,!1,a,d),e=k.firstChild,1===k.childNodes.length&&(k=e),e||d)){for(i=n.map(ea(k,"script"),Da),h=i.length;o>m;m++)g=k,m!==p&&(g=n.clone(g,!0,!0),h&&n.merge(i,ea(g,"script"))),c.call(a[m],g,m);if(h)for(j=i[i.length-1].ownerDocument,n.map(i,Ea),m=0;h>m;m++)g=i[m],_.test(g.type||"")&&!n._data(g,"globalEval")&&n.contains(j,g)&&(g.src?n._evalUrl&&n._evalUrl(g.src):n.globalEval((g.text||g.textContent||g.innerHTML||"").replace(za,"")));k=e=null}return a}function Ia(a,b,c){for(var d,e=b?n.filter(b,a):a,f=0;null!=(d=e[f]);f++)c||1!==d.nodeType||n.cleanData(ea(d)),d.parentNode&&(c&&n.contains(d.ownerDocument,d)&&fa(ea(d,"script")),d.parentNode.removeChild(d));return a}n.extend({htmlPrefilter:function(a){return a.replace(va,"<$1></$2>")},clone:function(a,b,c){var d,e,f,g,h,i=n.contains(a.ownerDocument,a);if(l.html5Clone||n.isXMLDoc(a)||!ua.test("<"+a.nodeName+">")?f=a.cloneNode(!0):(Ba.innerHTML=a.outerHTML,Ba.removeChild(f=Ba.firstChild)),!(l.noCloneEvent&&l.noCloneChecked||1!==a.nodeType&&11!==a.nodeType||n.isXMLDoc(a)))for(d=ea(f),h=ea(a),g=0;null!=(e=h[g]);++g)d[g]&&Ga(e,d[g]);if(b)if(c)for(h=h||ea(a),d=d||ea(f),g=0;null!=(e=h[g]);g++)Fa(e,d[g]);else Fa(a,f);return d=ea(f,"script"),d.length>0&&fa(d,!i&&ea(a,"script")),d=h=e=null,f},cleanData:function(a,b){for(var d,e,f,g,h=0,i=n.expando,j=n.cache,k=l.attributes,m=n.event.special;null!=(d=a[h]);h++)if((b||M(d))&&(f=d[i],g=f&&j[f])){if(g.events)for(e in g.events)m[e]?n.event.remove(d,e):n.removeEvent(d,e,g.handle);j[f]&&(delete j[f],k||"undefined"==typeof d.removeAttribute?d[i]=void 0:d.removeAttribute(i),c.push(f))}}}),n.fn.extend({domManip:Ha,detach:function(a){return Ia(this,a,!0)},remove:function(a){return Ia(this,a)},text:function(a){return Y(this,function(a){return void 0===a?n.text(this):this.empty().append((this[0]&&this[0].ownerDocument||d).createTextNode(a))},null,a,arguments.length)},append:function(){return Ha(this,arguments,function(a){if(1===this.nodeType||11===this.nodeType||9===this.nodeType){var b=Ca(this,a);b.appendChild(a)}})},prepend:function(){return Ha(this,arguments,function(a){if(1===this.nodeType||11===this.nodeType||9===this.nodeType){var b=Ca(this,a);b.insertBefore(a,b.firstChild)}})},before:function(){return Ha(this,arguments,function(a){this.parentNode&&this.parentNode.insertBefore(a,this)})},after:function(){return Ha(this,arguments,function(a){this.parentNode&&this.parentNode.insertBefore(a,this.nextSibling)})},empty:function(){for(var a,b=0;null!=(a=this[b]);b++){1===a.nodeType&&n.cleanData(ea(a,!1));while(a.firstChild)a.removeChild(a.firstChild);a.options&&n.nodeName(a,"select")&&(a.options.length=0)}return this},clone:function(a,b){return a=null==a?!1:a,b=null==b?a:b,this.map(function(){return n.clone(this,a,b)})},html:function(a){return Y(this,function(a){var b=this[0]||{},c=0,d=this.length;if(void 0===a)return 1===b.nodeType?b.innerHTML.replace(ta,""):void 0;if("string"==typeof a&&!wa.test(a)&&(l.htmlSerialize||!ua.test(a))&&(l.leadingWhitespace||!aa.test(a))&&!da[($.exec(a)||["",""])[1].toLowerCase()]){a=n.htmlPrefilter(a);try{for(;d>c;c++)b=this[c]||{},1===b.nodeType&&(n.cleanData(ea(b,!1)),b.innerHTML=a);b=0}catch(e){}}b&&this.empty().append(a)},null,a,arguments.length)},replaceWith:function(){var a=[];return Ha(this,arguments,function(b){var c=this.parentNode;n.inArray(this,a)<0&&(n.cleanData(ea(this)),c&&c.replaceChild(b,this))},a)}}),n.each({appendTo:"append",prependTo:"prepend",insertBefore:"before",insertAfter:"after",replaceAll:"replaceWith"},function(a,b){n.fn[a]=function(a){for(var c,d=0,e=[],f=n(a),h=f.length-1;h>=d;d++)c=d===h?this:this.clone(!0),n(f[d])[b](c),g.apply(e,c.get());return this.pushStack(e)}});var Ja,Ka={HTML:"block",BODY:"block"};function La(a,b){var c=n(b.createElement(a)).appendTo(b.body),d=n.css(c[0],"display");return c.detach(),d}function Ma(a){var b=d,c=Ka[a];return c||(c=La(a,b),"none"!==c&&c||(Ja=(Ja||n("<iframe frameborder='0' width='0' height='0'/>")).appendTo(b.documentElement),b=(Ja[0].contentWindow||Ja[0].contentDocument).document,b.write(),b.close(),c=La(a,b),Ja.detach()),Ka[a]=c),c}var Na=/^margin/,Oa=new RegExp("^("+T+")(?!px)[a-z%]+$","i"),Pa=function(a,b,c,d){var e,f,g={};for(f in b)g[f]=a.style[f],a.style[f]=b[f];e=c.apply(a,d||[]);for(f in b)a.style[f]=g[f];return e},Qa=d.documentElement;!function(){var b,c,e,f,g,h,i=d.createElement("div"),j=d.createElement("div");if(j.style){j.style.cssText="float:left;opacity:.5",l.opacity="0.5"===j.style.opacity,l.cssFloat=!!j.style.cssFloat,j.style.backgroundClip="content-box",j.cloneNode(!0).style.backgroundClip="",l.clearCloneStyle="content-box"===j.style.backgroundClip,i=d.createElement("div"),i.style.cssText="border:0;width:8px;height:0;top:0;left:-9999px;padding:0;margin-top:1px;position:absolute",j.innerHTML="",i.appendChild(j),l.boxSizing=""===j.style.boxSizing||""===j.style.MozBoxSizing||""===j.style.WebkitBoxSizing,n.extend(l,{reliableHiddenOffsets:function(){return null==b&&k(),f},boxSizingReliable:function(){return null==b&&k(),e},pixelMarginRight:function(){return null==b&&k(),c},pixelPosition:function(){return null==b&&k(),b},reliableMarginRight:function(){return null==b&&k(),g},reliableMarginLeft:function(){return null==b&&k(),h}});function k(){var k,l,m=d.documentElement;m.appendChild(i),j.style.cssText="-webkit-box-sizing:border-box;box-sizing:border-box;position:relative;display:block;margin:auto;border:1px;padding:1px;top:1%;width:50%",b=e=h=!1,c=g=!0,a.getComputedStyle&&(l=a.getComputedStyle(j),b="1%"!==(l||{}).top,h="2px"===(l||{}).marginLeft,e="4px"===(l||{width:"4px"}).width,j.style.marginRight="50%",c="4px"===(l||{marginRight:"4px"}).marginRight,k=j.appendChild(d.createElement("div")),k.style.cssText=j.style.cssText="-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;display:block;margin:0;border:0;padding:0",k.style.marginRight=k.style.width="0",j.style.width="1px",g=!parseFloat((a.getComputedStyle(k)||{}).marginRight),j.removeChild(k)),j.style.display="none",f=0===j.getClientRects().length,f&&(j.style.display="",j.innerHTML="<table><tr><td></td><td>t</td></tr></table>",k=j.getElementsByTagName("td"),k[0].style.cssText="margin:0;border:0;padding:0;display:none",f=0===k[0].offsetHeight,f&&(k[0].style.display="",k[1].style.display="none",f=0===k[0].offsetHeight)),m.removeChild(i)}}}();var Ra,Sa,Ta=/^(top|right|bottom|left)$/;a.getComputedStyle?(Ra=function(b){var c=b.ownerDocument.defaultView;return c.opener||(c=a),c.getComputedStyle(b)},Sa=function(a,b,c){var d,e,f,g,h=a.style;return c=c||Ra(a),g=c?c.getPropertyValue(b)||c[b]:void 0,c&&(""!==g||n.contains(a.ownerDocument,a)||(g=n.style(a,b)),!l.pixelMarginRight()&&Oa.test(g)&&Na.test(b)&&(d=h.width,e=h.minWidth,f=h.maxWidth,h.minWidth=h.maxWidth=h.width=g,g=c.width,h.width=d,h.minWidth=e,h.maxWidth=f)),void 0===g?g:g+""}):Qa.currentStyle&&(Ra=function(a){return a.currentStyle},Sa=function(a,b,c){var d,e,f,g,h=a.style;return c=c||Ra(a),g=c?c[b]:void 0,null==g&&h&&h[b]&&(g=h[b]),Oa.test(g)&&!Ta.test(b)&&(d=h.left,e=a.runtimeStyle,f=e&&e.left,f&&(e.left=a.currentStyle.left),h.left="fontSize"===b?"1em":g,g=h.pixelLeft+"px",h.left=d,f&&(e.left=f)),void 0===g?g:g+""||"auto"});function Ua(a,b){return{get:function(){return a()?void delete this.get:(this.get=b).apply(this,arguments)}}}var Va=/alpha\([^)]*\)/i,Wa=/opacity\s*=\s*([^)]*)/i,Xa=/^(none|table(?!-c[ea]).+)/,Ya=new RegExp("^("+T+")(.*)$","i"),Za={position:"absolute",visibility:"hidden",display:"block"},$a={letterSpacing:"0",fontWeight:"400"},_a=["Webkit","O","Moz","ms"],ab=d.createElement("div").style;function bb(a){if(a in ab)return a;var b=a.charAt(0).toUpperCase()+a.slice(1),c=_a.length;while(c--)if(a=_a[c]+b,a in ab)return a}function cb(a,b){for(var c,d,e,f=[],g=0,h=a.length;h>g;g++)d=a[g],d.style&&(f[g]=n._data(d,"olddisplay"),c=d.style.display,b?(f[g]||"none"!==c||(d.style.display=""),""===d.style.display&&W(d)&&(f[g]=n._data(d,"olddisplay",Ma(d.nodeName)))):(e=W(d),(c&&"none"!==c||!e)&&n._data(d,"olddisplay",e?c:n.css(d,"display"))));for(g=0;h>g;g++)d=a[g],d.style&&(b&&"none"!==d.style.display&&""!==d.style.display||(d.style.display=b?f[g]||"":"none"));return a}function db(a,b,c){var d=Ya.exec(b);return d?Math.max(0,d[1]-(c||0))+(d[2]||"px"):b}function eb(a,b,c,d,e){for(var f=c===(d?"border":"content")?4:"width"===b?1:0,g=0;4>f;f+=2)"margin"===c&&(g+=n.css(a,c+V[f],!0,e)),d?("content"===c&&(g-=n.css(a,"padding"+V[f],!0,e)),"margin"!==c&&(g-=n.css(a,"border"+V[f]+"Width",!0,e))):(g+=n.css(a,"padding"+V[f],!0,e),"padding"!==c&&(g+=n.css(a,"border"+V[f]+"Width",!0,e)));return g}function fb(b,c,e){var f=!0,g="width"===c?b.offsetWidth:b.offsetHeight,h=Ra(b),i=l.boxSizing&&"border-box"===n.css(b,"boxSizing",!1,h);if(d.msFullscreenElement&&a.top!==a&&b.getClientRects().length&&(g=Math.round(100*b.getBoundingClientRect()[c])),0>=g||null==g){if(g=Sa(b,c,h),(0>g||null==g)&&(g=b.style[c]),Oa.test(g))return g;f=i&&(l.boxSizingReliable()||g===b.style[c]),g=parseFloat(g)||0}return g+eb(b,c,e||(i?"border":"content"),f,h)+"px"}n.extend({cssHooks:{opacity:{get:function(a,b){if(b){var c=Sa(a,"opacity");return""===c?"1":c}}}},cssNumber:{animationIterationCount:!0,columnCount:!0,fillOpacity:!0,flexGrow:!0,flexShrink:!0,fontWeight:!0,lineHeight:!0,opacity:!0,order:!0,orphans:!0,widows:!0,zIndex:!0,zoom:!0},cssProps:{"float":l.cssFloat?"cssFloat":"styleFloat"},style:function(a,b,c,d){if(a&&3!==a.nodeType&&8!==a.nodeType&&a.style){var e,f,g,h=n.camelCase(b),i=a.style;if(b=n.cssProps[h]||(n.cssProps[h]=bb(h)||h),g=n.cssHooks[b]||n.cssHooks[h],void 0===c)return g&&"get"in g&&void 0!==(e=g.get(a,!1,d))?e:i[b];if(f=typeof c,"string"===f&&(e=U.exec(c))&&e[1]&&(c=X(a,b,e),f="number"),null!=c&&c===c&&("number"===f&&(c+=e&&e[3]||(n.cssNumber[h]?"":"px")),l.clearCloneStyle||""!==c||0!==b.indexOf("background")||(i[b]="inherit"),!(g&&"set"in g&&void 0===(c=g.set(a,c,d)))))try{i[b]=c}catch(j){}}},css:function(a,b,c,d){var e,f,g,h=n.camelCase(b);return b=n.cssProps[h]||(n.cssProps[h]=bb(h)||h),g=n.cssHooks[b]||n.cssHooks[h],g&&"get"in g&&(f=g.get(a,!0,c)),void 0===f&&(f=Sa(a,b,d)),"normal"===f&&b in $a&&(f=$a[b]),""===c||c?(e=parseFloat(f),c===!0||isFinite(e)?e||0:f):f}}),n.each(["height","width"],function(a,b){n.cssHooks[b]={get:function(a,c,d){return c?Xa.test(n.css(a,"display"))&&0===a.offsetWidth?Pa(a,Za,function(){return fb(a,b,d)}):fb(a,b,d):void 0},set:function(a,c,d){var e=d&&Ra(a);return db(a,c,d?eb(a,b,d,l.boxSizing&&"border-box"===n.css(a,"boxSizing",!1,e),e):0)}}}),l.opacity||(n.cssHooks.opacity={get:function(a,b){return Wa.test((b&&a.currentStyle?a.currentStyle.filter:a.style.filter)||"")?.01*parseFloat(RegExp.$1)+"":b?"1":""},set:function(a,b){var c=a.style,d=a.currentStyle,e=n.isNumeric(b)?"alpha(opacity="+100*b+")":"",f=d&&d.filter||c.filter||"";c.zoom=1,(b>=1||""===b)&&""===n.trim(f.replace(Va,""))&&c.removeAttribute&&(c.removeAttribute("filter"),""===b||d&&!d.filter)||(c.filter=Va.test(f)?f.replace(Va,e):f+" "+e)}}),n.cssHooks.marginRight=Ua(l.reliableMarginRight,function(a,b){return b?Pa(a,{display:"inline-block"},Sa,[a,"marginRight"]):void 0}),n.cssHooks.marginLeft=Ua(l.reliableMarginLeft,function(a,b){return b?(parseFloat(Sa(a,"marginLeft"))||(n.contains(a.ownerDocument,a)?a.getBoundingClientRect().left-Pa(a,{
marginLeft:0},function(){return a.getBoundingClientRect().left}):0))+"px":void 0}),n.each({margin:"",padding:"",border:"Width"},function(a,b){n.cssHooks[a+b]={expand:function(c){for(var d=0,e={},f="string"==typeof c?c.split(" "):[c];4>d;d++)e[a+V[d]+b]=f[d]||f[d-2]||f[0];return e}},Na.test(a)||(n.cssHooks[a+b].set=db)}),n.fn.extend({css:function(a,b){return Y(this,function(a,b,c){var d,e,f={},g=0;if(n.isArray(b)){for(d=Ra(a),e=b.length;e>g;g++)f[b[g]]=n.css(a,b[g],!1,d);return f}return void 0!==c?n.style(a,b,c):n.css(a,b)},a,b,arguments.length>1)},show:function(){return cb(this,!0)},hide:function(){return cb(this)},toggle:function(a){return"boolean"==typeof a?a?this.show():this.hide():this.each(function(){W(this)?n(this).show():n(this).hide()})}});function gb(a,b,c,d,e){return new gb.prototype.init(a,b,c,d,e)}n.Tween=gb,gb.prototype={constructor:gb,init:function(a,b,c,d,e,f){this.elem=a,this.prop=c,this.easing=e||n.easing._default,this.options=b,this.start=this.now=this.cur(),this.end=d,this.unit=f||(n.cssNumber[c]?"":"px")},cur:function(){var a=gb.propHooks[this.prop];return a&&a.get?a.get(this):gb.propHooks._default.get(this)},run:function(a){var b,c=gb.propHooks[this.prop];return this.options.duration?this.pos=b=n.easing[this.easing](a,this.options.duration*a,0,1,this.options.duration):this.pos=b=a,this.now=(this.end-this.start)*b+this.start,this.options.step&&this.options.step.call(this.elem,this.now,this),c&&c.set?c.set(this):gb.propHooks._default.set(this),this}},gb.prototype.init.prototype=gb.prototype,gb.propHooks={_default:{get:function(a){var b;return 1!==a.elem.nodeType||null!=a.elem[a.prop]&&null==a.elem.style[a.prop]?a.elem[a.prop]:(b=n.css(a.elem,a.prop,""),b&&"auto"!==b?b:0)},set:function(a){n.fx.step[a.prop]?n.fx.step[a.prop](a):1!==a.elem.nodeType||null==a.elem.style[n.cssProps[a.prop]]&&!n.cssHooks[a.prop]?a.elem[a.prop]=a.now:n.style(a.elem,a.prop,a.now+a.unit)}}},gb.propHooks.scrollTop=gb.propHooks.scrollLeft={set:function(a){a.elem.nodeType&&a.elem.parentNode&&(a.elem[a.prop]=a.now)}},n.easing={linear:function(a){return a},swing:function(a){return.5-Math.cos(a*Math.PI)/2},_default:"swing"},n.fx=gb.prototype.init,n.fx.step={};var hb,ib,jb=/^(?:toggle|show|hide)$/,kb=/queueHooks$/;function lb(){return a.setTimeout(function(){hb=void 0}),hb=n.now()}function mb(a,b){var c,d={height:a},e=0;for(b=b?1:0;4>e;e+=2-b)c=V[e],d["margin"+c]=d["padding"+c]=a;return b&&(d.opacity=d.width=a),d}function nb(a,b,c){for(var d,e=(qb.tweeners[b]||[]).concat(qb.tweeners["*"]),f=0,g=e.length;g>f;f++)if(d=e[f].call(c,b,a))return d}function ob(a,b,c){var d,e,f,g,h,i,j,k,m=this,o={},p=a.style,q=a.nodeType&&W(a),r=n._data(a,"fxshow");c.queue||(h=n._queueHooks(a,"fx"),null==h.unqueued&&(h.unqueued=0,i=h.empty.fire,h.empty.fire=function(){h.unqueued||i()}),h.unqueued++,m.always(function(){m.always(function(){h.unqueued--,n.queue(a,"fx").length||h.empty.fire()})})),1===a.nodeType&&("height"in b||"width"in b)&&(c.overflow=[p.overflow,p.overflowX,p.overflowY],j=n.css(a,"display"),k="none"===j?n._data(a,"olddisplay")||Ma(a.nodeName):j,"inline"===k&&"none"===n.css(a,"float")&&(l.inlineBlockNeedsLayout&&"inline"!==Ma(a.nodeName)?p.zoom=1:p.display="inline-block")),c.overflow&&(p.overflow="hidden",l.shrinkWrapBlocks()||m.always(function(){p.overflow=c.overflow[0],p.overflowX=c.overflow[1],p.overflowY=c.overflow[2]}));for(d in b)if(e=b[d],jb.exec(e)){if(delete b[d],f=f||"toggle"===e,e===(q?"hide":"show")){if("show"!==e||!r||void 0===r[d])continue;q=!0}o[d]=r&&r[d]||n.style(a,d)}else j=void 0;if(n.isEmptyObject(o))"inline"===("none"===j?Ma(a.nodeName):j)&&(p.display=j);else{r?"hidden"in r&&(q=r.hidden):r=n._data(a,"fxshow",{}),f&&(r.hidden=!q),q?n(a).show():m.done(function(){n(a).hide()}),m.done(function(){var b;n._removeData(a,"fxshow");for(b in o)n.style(a,b,o[b])});for(d in o)g=nb(q?r[d]:0,d,m),d in r||(r[d]=g.start,q&&(g.end=g.start,g.start="width"===d||"height"===d?1:0))}}function pb(a,b){var c,d,e,f,g;for(c in a)if(d=n.camelCase(c),e=b[d],f=a[c],n.isArray(f)&&(e=f[1],f=a[c]=f[0]),c!==d&&(a[d]=f,delete a[c]),g=n.cssHooks[d],g&&"expand"in g){f=g.expand(f),delete a[d];for(c in f)c in a||(a[c]=f[c],b[c]=e)}else b[d]=e}function qb(a,b,c){var d,e,f=0,g=qb.prefilters.length,h=n.Deferred().always(function(){delete i.elem}),i=function(){if(e)return!1;for(var b=hb||lb(),c=Math.max(0,j.startTime+j.duration-b),d=c/j.duration||0,f=1-d,g=0,i=j.tweens.length;i>g;g++)j.tweens[g].run(f);return h.notifyWith(a,[j,f,c]),1>f&&i?c:(h.resolveWith(a,[j]),!1)},j=h.promise({elem:a,props:n.extend({},b),opts:n.extend(!0,{specialEasing:{},easing:n.easing._default},c),originalProperties:b,originalOptions:c,startTime:hb||lb(),duration:c.duration,tweens:[],createTween:function(b,c){var d=n.Tween(a,j.opts,b,c,j.opts.specialEasing[b]||j.opts.easing);return j.tweens.push(d),d},stop:function(b){var c=0,d=b?j.tweens.length:0;if(e)return this;for(e=!0;d>c;c++)j.tweens[c].run(1);return b?(h.notifyWith(a,[j,1,0]),h.resolveWith(a,[j,b])):h.rejectWith(a,[j,b]),this}}),k=j.props;for(pb(k,j.opts.specialEasing);g>f;f++)if(d=qb.prefilters[f].call(j,a,k,j.opts))return n.isFunction(d.stop)&&(n._queueHooks(j.elem,j.opts.queue).stop=n.proxy(d.stop,d)),d;return n.map(k,nb,j),n.isFunction(j.opts.start)&&j.opts.start.call(a,j),n.fx.timer(n.extend(i,{elem:a,anim:j,queue:j.opts.queue})),j.progress(j.opts.progress).done(j.opts.done,j.opts.complete).fail(j.opts.fail).always(j.opts.always)}n.Animation=n.extend(qb,{tweeners:{"*":[function(a,b){var c=this.createTween(a,b);return X(c.elem,a,U.exec(b),c),c}]},tweener:function(a,b){n.isFunction(a)?(b=a,a=["*"]):a=a.match(G);for(var c,d=0,e=a.length;e>d;d++)c=a[d],qb.tweeners[c]=qb.tweeners[c]||[],qb.tweeners[c].unshift(b)},prefilters:[ob],prefilter:function(a,b){b?qb.prefilters.unshift(a):qb.prefilters.push(a)}}),n.speed=function(a,b,c){var d=a&&"object"==typeof a?n.extend({},a):{complete:c||!c&&b||n.isFunction(a)&&a,duration:a,easing:c&&b||b&&!n.isFunction(b)&&b};return d.duration=n.fx.off?0:"number"==typeof d.duration?d.duration:d.duration in n.fx.speeds?n.fx.speeds[d.duration]:n.fx.speeds._default,(null==d.queue||d.queue===!0)&&(d.queue="fx"),d.old=d.complete,d.complete=function(){n.isFunction(d.old)&&d.old.call(this),d.queue&&n.dequeue(this,d.queue)},d},n.fn.extend({fadeTo:function(a,b,c,d){return this.filter(W).css("opacity",0).show().end().animate({opacity:b},a,c,d)},animate:function(a,b,c,d){var e=n.isEmptyObject(a),f=n.speed(b,c,d),g=function(){var b=qb(this,n.extend({},a),f);(e||n._data(this,"finish"))&&b.stop(!0)};return g.finish=g,e||f.queue===!1?this.each(g):this.queue(f.queue,g)},stop:function(a,b,c){var d=function(a){var b=a.stop;delete a.stop,b(c)};return"string"!=typeof a&&(c=b,b=a,a=void 0),b&&a!==!1&&this.queue(a||"fx",[]),this.each(function(){var b=!0,e=null!=a&&a+"queueHooks",f=n.timers,g=n._data(this);if(e)g[e]&&g[e].stop&&d(g[e]);else for(e in g)g[e]&&g[e].stop&&kb.test(e)&&d(g[e]);for(e=f.length;e--;)f[e].elem!==this||null!=a&&f[e].queue!==a||(f[e].anim.stop(c),b=!1,f.splice(e,1));(b||!c)&&n.dequeue(this,a)})},finish:function(a){return a!==!1&&(a=a||"fx"),this.each(function(){var b,c=n._data(this),d=c[a+"queue"],e=c[a+"queueHooks"],f=n.timers,g=d?d.length:0;for(c.finish=!0,n.queue(this,a,[]),e&&e.stop&&e.stop.call(this,!0),b=f.length;b--;)f[b].elem===this&&f[b].queue===a&&(f[b].anim.stop(!0),f.splice(b,1));for(b=0;g>b;b++)d[b]&&d[b].finish&&d[b].finish.call(this);delete c.finish})}}),n.each(["toggle","show","hide"],function(a,b){var c=n.fn[b];n.fn[b]=function(a,d,e){return null==a||"boolean"==typeof a?c.apply(this,arguments):this.animate(mb(b,!0),a,d,e)}}),n.each({slideDown:mb("show"),slideUp:mb("hide"),slideToggle:mb("toggle"),fadeIn:{opacity:"show"},fadeOut:{opacity:"hide"},fadeToggle:{opacity:"toggle"}},function(a,b){n.fn[a]=function(a,c,d){return this.animate(b,a,c,d)}}),n.timers=[],n.fx.tick=function(){var a,b=n.timers,c=0;for(hb=n.now();c<b.length;c++)a=b[c],a()||b[c]!==a||b.splice(c--,1);b.length||n.fx.stop(),hb=void 0},n.fx.timer=function(a){n.timers.push(a),a()?n.fx.start():n.timers.pop()},n.fx.interval=13,n.fx.start=function(){ib||(ib=a.setInterval(n.fx.tick,n.fx.interval))},n.fx.stop=function(){a.clearInterval(ib),ib=null},n.fx.speeds={slow:600,fast:200,_default:400},n.fn.delay=function(b,c){return b=n.fx?n.fx.speeds[b]||b:b,c=c||"fx",this.queue(c,function(c,d){var e=a.setTimeout(c,b);d.stop=function(){a.clearTimeout(e)}})},function(){var a,b=d.createElement("input"),c=d.createElement("div"),e=d.createElement("select"),f=e.appendChild(d.createElement("option"));c=d.createElement("div"),c.setAttribute("className","t"),c.innerHTML=" <link/><table></table><a href='/a'>a</a><input type='checkbox'/>",a=c.getElementsByTagName("a")[0],b.setAttribute("type","checkbox"),c.appendChild(b),a=c.getElementsByTagName("a")[0],a.style.cssText="top:1px",l.getSetAttribute="t"!==c.className,l.style=/top/.test(a.getAttribute("style")),l.hrefNormalized="/a"===a.getAttribute("href"),l.checkOn=!!b.value,l.optSelected=f.selected,l.enctype=!!d.createElement("form").enctype,e.disabled=!0,l.optDisabled=!f.disabled,b=d.createElement("input"),b.setAttribute("value",""),l.input=""===b.getAttribute("value"),b.value="t",b.setAttribute("type","radio"),l.radioValue="t"===b.value}();var rb=/\r/g;n.fn.extend({val:function(a){var b,c,d,e=this[0];{if(arguments.length)return d=n.isFunction(a),this.each(function(c){var e;1===this.nodeType&&(e=d?a.call(this,c,n(this).val()):a,null==e?e="":"number"==typeof e?e+="":n.isArray(e)&&(e=n.map(e,function(a){return null==a?"":a+""})),b=n.valHooks[this.type]||n.valHooks[this.nodeName.toLowerCase()],b&&"set"in b&&void 0!==b.set(this,e,"value")||(this.value=e))});if(e)return b=n.valHooks[e.type]||n.valHooks[e.nodeName.toLowerCase()],b&&"get"in b&&void 0!==(c=b.get(e,"value"))?c:(c=e.value,"string"==typeof c?c.replace(rb,""):null==c?"":c)}}}),n.extend({valHooks:{option:{get:function(a){var b=n.find.attr(a,"value");return null!=b?b:n.trim(n.text(a))}},select:{get:function(a){for(var b,c,d=a.options,e=a.selectedIndex,f="select-one"===a.type||0>e,g=f?null:[],h=f?e+1:d.length,i=0>e?h:f?e:0;h>i;i++)if(c=d[i],(c.selected||i===e)&&(l.optDisabled?!c.disabled:null===c.getAttribute("disabled"))&&(!c.parentNode.disabled||!n.nodeName(c.parentNode,"optgroup"))){if(b=n(c).val(),f)return b;g.push(b)}return g},set:function(a,b){var c,d,e=a.options,f=n.makeArray(b),g=e.length;while(g--)if(d=e[g],n.inArray(n.valHooks.option.get(d),f)>=0)try{d.selected=c=!0}catch(h){d.scrollHeight}else d.selected=!1;return c||(a.selectedIndex=-1),e}}}}),n.each(["radio","checkbox"],function(){n.valHooks[this]={set:function(a,b){return n.isArray(b)?a.checked=n.inArray(n(a).val(),b)>-1:void 0}},l.checkOn||(n.valHooks[this].get=function(a){return null===a.getAttribute("value")?"on":a.value})});var sb,tb,ub=n.expr.attrHandle,vb=/^(?:checked|selected)$/i,wb=l.getSetAttribute,xb=l.input;n.fn.extend({attr:function(a,b){return Y(this,n.attr,a,b,arguments.length>1)},removeAttr:function(a){return this.each(function(){n.removeAttr(this,a)})}}),n.extend({attr:function(a,b,c){var d,e,f=a.nodeType;if(3!==f&&8!==f&&2!==f)return"undefined"==typeof a.getAttribute?n.prop(a,b,c):(1===f&&n.isXMLDoc(a)||(b=b.toLowerCase(),e=n.attrHooks[b]||(n.expr.match.bool.test(b)?tb:sb)),void 0!==c?null===c?void n.removeAttr(a,b):e&&"set"in e&&void 0!==(d=e.set(a,c,b))?d:(a.setAttribute(b,c+""),c):e&&"get"in e&&null!==(d=e.get(a,b))?d:(d=n.find.attr(a,b),null==d?void 0:d))},attrHooks:{type:{set:function(a,b){if(!l.radioValue&&"radio"===b&&n.nodeName(a,"input")){var c=a.value;return a.setAttribute("type",b),c&&(a.value=c),b}}}},removeAttr:function(a,b){var c,d,e=0,f=b&&b.match(G);if(f&&1===a.nodeType)while(c=f[e++])d=n.propFix[c]||c,n.expr.match.bool.test(c)?xb&&wb||!vb.test(c)?a[d]=!1:a[n.camelCase("default-"+c)]=a[d]=!1:n.attr(a,c,""),a.removeAttribute(wb?c:d)}}),tb={set:function(a,b,c){return b===!1?n.removeAttr(a,c):xb&&wb||!vb.test(c)?a.setAttribute(!wb&&n.propFix[c]||c,c):a[n.camelCase("default-"+c)]=a[c]=!0,c}},n.each(n.expr.match.bool.source.match(/\w+/g),function(a,b){var c=ub[b]||n.find.attr;xb&&wb||!vb.test(b)?ub[b]=function(a,b,d){var e,f;return d||(f=ub[b],ub[b]=e,e=null!=c(a,b,d)?b.toLowerCase():null,ub[b]=f),e}:ub[b]=function(a,b,c){return c?void 0:a[n.camelCase("default-"+b)]?b.toLowerCase():null}}),xb&&wb||(n.attrHooks.value={set:function(a,b,c){return n.nodeName(a,"input")?void(a.defaultValue=b):sb&&sb.set(a,b,c)}}),wb||(sb={set:function(a,b,c){var d=a.getAttributeNode(c);return d||a.setAttributeNode(d=a.ownerDocument.createAttribute(c)),d.value=b+="","value"===c||b===a.getAttribute(c)?b:void 0}},ub.id=ub.name=ub.coords=function(a,b,c){var d;return c?void 0:(d=a.getAttributeNode(b))&&""!==d.value?d.value:null},n.valHooks.button={get:function(a,b){var c=a.getAttributeNode(b);return c&&c.specified?c.value:void 0},set:sb.set},n.attrHooks.contenteditable={set:function(a,b,c){sb.set(a,""===b?!1:b,c)}},n.each(["width","height"],function(a,b){n.attrHooks[b]={set:function(a,c){return""===c?(a.setAttribute(b,"auto"),c):void 0}}})),l.style||(n.attrHooks.style={get:function(a){return a.style.cssText||void 0},set:function(a,b){return a.style.cssText=b+""}});var yb=/^(?:input|select|textarea|button|object)$/i,zb=/^(?:a|area)$/i;n.fn.extend({prop:function(a,b){return Y(this,n.prop,a,b,arguments.length>1)},removeProp:function(a){return a=n.propFix[a]||a,this.each(function(){try{this[a]=void 0,delete this[a]}catch(b){}})}}),n.extend({prop:function(a,b,c){var d,e,f=a.nodeType;if(3!==f&&8!==f&&2!==f)return 1===f&&n.isXMLDoc(a)||(b=n.propFix[b]||b,e=n.propHooks[b]),void 0!==c?e&&"set"in e&&void 0!==(d=e.set(a,c,b))?d:a[b]=c:e&&"get"in e&&null!==(d=e.get(a,b))?d:a[b]},propHooks:{tabIndex:{get:function(a){var b=n.find.attr(a,"tabindex");return b?parseInt(b,10):yb.test(a.nodeName)||zb.test(a.nodeName)&&a.href?0:-1}}},propFix:{"for":"htmlFor","class":"className"}}),l.hrefNormalized||n.each(["href","src"],function(a,b){n.propHooks[b]={get:function(a){return a.getAttribute(b,4)}}}),l.optSelected||(n.propHooks.selected={get:function(a){var b=a.parentNode;return b&&(b.selectedIndex,b.parentNode&&b.parentNode.selectedIndex),null}}),n.each(["tabIndex","readOnly","maxLength","cellSpacing","cellPadding","rowSpan","colSpan","useMap","frameBorder","contentEditable"],function(){n.propFix[this.toLowerCase()]=this}),l.enctype||(n.propFix.enctype="encoding");var Ab=/[\t\r\n\f]/g;function Bb(a){return n.attr(a,"class")||""}n.fn.extend({addClass:function(a){var b,c,d,e,f,g,h,i=0;if(n.isFunction(a))return this.each(function(b){n(this).addClass(a.call(this,b,Bb(this)))});if("string"==typeof a&&a){b=a.match(G)||[];while(c=this[i++])if(e=Bb(c),d=1===c.nodeType&&(" "+e+" ").replace(Ab," ")){g=0;while(f=b[g++])d.indexOf(" "+f+" ")<0&&(d+=f+" ");h=n.trim(d),e!==h&&n.attr(c,"class",h)}}return this},removeClass:function(a){var b,c,d,e,f,g,h,i=0;if(n.isFunction(a))return this.each(function(b){n(this).removeClass(a.call(this,b,Bb(this)))});if(!arguments.length)return this.attr("class","");if("string"==typeof a&&a){b=a.match(G)||[];while(c=this[i++])if(e=Bb(c),d=1===c.nodeType&&(" "+e+" ").replace(Ab," ")){g=0;while(f=b[g++])while(d.indexOf(" "+f+" ")>-1)d=d.replace(" "+f+" "," ");h=n.trim(d),e!==h&&n.attr(c,"class",h)}}return this},toggleClass:function(a,b){var c=typeof a;return"boolean"==typeof b&&"string"===c?b?this.addClass(a):this.removeClass(a):n.isFunction(a)?this.each(function(c){n(this).toggleClass(a.call(this,c,Bb(this),b),b)}):this.each(function(){var b,d,e,f;if("string"===c){d=0,e=n(this),f=a.match(G)||[];while(b=f[d++])e.hasClass(b)?e.removeClass(b):e.addClass(b)}else(void 0===a||"boolean"===c)&&(b=Bb(this),b&&n._data(this,"__className__",b),n.attr(this,"class",b||a===!1?"":n._data(this,"__className__")||""))})},hasClass:function(a){var b,c,d=0;b=" "+a+" ";while(c=this[d++])if(1===c.nodeType&&(" "+Bb(c)+" ").replace(Ab," ").indexOf(b)>-1)return!0;return!1}}),n.each("blur focus focusin focusout load resize scroll unload click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select submit keydown keypress keyup error contextmenu".split(" "),function(a,b){n.fn[b]=function(a,c){return arguments.length>0?this.on(b,null,a,c):this.trigger(b)}}),n.fn.extend({hover:function(a,b){return this.mouseenter(a).mouseleave(b||a)}});var Cb=a.location,Db=n.now(),Eb=/\?/,Fb=/(,)|(\[|{)|(}|])|"(?:[^"\\\r\n]|\\["\\\/bfnrt]|\\u[\da-fA-F]{4})*"\s*:?|true|false|null|-?(?!0\d)\d+(?:\.\d+|)(?:[eE][+-]?\d+|)/g;n.parseJSON=function(b){if(a.JSON&&a.JSON.parse)return a.JSON.parse(b+"");var c,d=null,e=n.trim(b+"");return e&&!n.trim(e.replace(Fb,function(a,b,e,f){return c&&b&&(d=0),0===d?a:(c=e||b,d+=!f-!e,"")}))?Function("return "+e)():n.error("Invalid JSON: "+b)},n.parseXML=function(b){var c,d;if(!b||"string"!=typeof b)return null;try{a.DOMParser?(d=new a.DOMParser,c=d.parseFromString(b,"text/xml")):(c=new a.ActiveXObject("Microsoft.XMLDOM"),c.async="false",c.loadXML(b))}catch(e){c=void 0}return c&&c.documentElement&&!c.getElementsByTagName("parsererror").length||n.error("Invalid XML: "+b),c};var Gb=/#.*$/,Hb=/([?&])_=[^&]*/,Ib=/^(.*?):[ \t]*([^\r\n]*)\r?$/gm,Jb=/^(?:about|app|app-storage|.+-extension|file|res|widget):$/,Kb=/^(?:GET|HEAD)$/,Lb=/^\/\//,Mb=/^([\w.+-]+:)(?:\/\/(?:[^\/?#]*@|)([^\/?#:]*)(?::(\d+)|)|)/,Nb={},Ob={},Pb="*/".concat("*"),Qb=Cb.href,Rb=Mb.exec(Qb.toLowerCase())||[];function Sb(a){return function(b,c){"string"!=typeof b&&(c=b,b="*");var d,e=0,f=b.toLowerCase().match(G)||[];if(n.isFunction(c))while(d=f[e++])"+"===d.charAt(0)?(d=d.slice(1)||"*",(a[d]=a[d]||[]).unshift(c)):(a[d]=a[d]||[]).push(c)}}function Tb(a,b,c,d){var e={},f=a===Ob;function g(h){var i;return e[h]=!0,n.each(a[h]||[],function(a,h){var j=h(b,c,d);return"string"!=typeof j||f||e[j]?f?!(i=j):void 0:(b.dataTypes.unshift(j),g(j),!1)}),i}return g(b.dataTypes[0])||!e["*"]&&g("*")}function Ub(a,b){var c,d,e=n.ajaxSettings.flatOptions||{};for(d in b)void 0!==b[d]&&((e[d]?a:c||(c={}))[d]=b[d]);return c&&n.extend(!0,a,c),a}function Vb(a,b,c){var d,e,f,g,h=a.contents,i=a.dataTypes;while("*"===i[0])i.shift(),void 0===e&&(e=a.mimeType||b.getResponseHeader("Content-Type"));if(e)for(g in h)if(h[g]&&h[g].test(e)){i.unshift(g);break}if(i[0]in c)f=i[0];else{for(g in c){if(!i[0]||a.converters[g+" "+i[0]]){f=g;break}d||(d=g)}f=f||d}return f?(f!==i[0]&&i.unshift(f),c[f]):void 0}function Wb(a,b,c,d){var e,f,g,h,i,j={},k=a.dataTypes.slice();if(k[1])for(g in a.converters)j[g.toLowerCase()]=a.converters[g];f=k.shift();while(f)if(a.responseFields[f]&&(c[a.responseFields[f]]=b),!i&&d&&a.dataFilter&&(b=a.dataFilter(b,a.dataType)),i=f,f=k.shift())if("*"===f)f=i;else if("*"!==i&&i!==f){if(g=j[i+" "+f]||j["* "+f],!g)for(e in j)if(h=e.split(" "),h[1]===f&&(g=j[i+" "+h[0]]||j["* "+h[0]])){g===!0?g=j[e]:j[e]!==!0&&(f=h[0],k.unshift(h[1]));break}if(g!==!0)if(g&&a["throws"])b=g(b);else try{b=g(b)}catch(l){return{state:"parsererror",error:g?l:"No conversion from "+i+" to "+f}}}return{state:"success",data:b}}n.extend({active:0,lastModified:{},etag:{},ajaxSettings:{url:Qb,type:"GET",isLocal:Jb.test(Rb[1]),global:!0,processData:!0,async:!0,contentType:"application/x-www-form-urlencoded; charset=UTF-8",accepts:{"*":Pb,text:"text/plain",html:"text/html",xml:"application/xml, text/xml",json:"application/json, text/javascript"},contents:{xml:/\bxml\b/,html:/\bhtml/,json:/\bjson\b/},responseFields:{xml:"responseXML",text:"responseText",json:"responseJSON"},converters:{"* text":String,"text html":!0,"text json":n.parseJSON,"text xml":n.parseXML},flatOptions:{url:!0,context:!0}},ajaxSetup:function(a,b){return b?Ub(Ub(a,n.ajaxSettings),b):Ub(n.ajaxSettings,a)},ajaxPrefilter:Sb(Nb),ajaxTransport:Sb(Ob),ajax:function(b,c){"object"==typeof b&&(c=b,b=void 0),c=c||{};var d,e,f,g,h,i,j,k,l=n.ajaxSetup({},c),m=l.context||l,o=l.context&&(m.nodeType||m.jquery)?n(m):n.event,p=n.Deferred(),q=n.Callbacks("once memory"),r=l.statusCode||{},s={},t={},u=0,v="canceled",w={readyState:0,getResponseHeader:function(a){var b;if(2===u){if(!k){k={};while(b=Ib.exec(g))k[b[1].toLowerCase()]=b[2]}b=k[a.toLowerCase()]}return null==b?null:b},getAllResponseHeaders:function(){return 2===u?g:null},setRequestHeader:function(a,b){var c=a.toLowerCase();return u||(a=t[c]=t[c]||a,s[a]=b),this},overrideMimeType:function(a){return u||(l.mimeType=a),this},statusCode:function(a){var b;if(a)if(2>u)for(b in a)r[b]=[r[b],a[b]];else w.always(a[w.status]);return this},abort:function(a){var b=a||v;return j&&j.abort(b),y(0,b),this}};if(p.promise(w).complete=q.add,w.success=w.done,w.error=w.fail,l.url=((b||l.url||Qb)+"").replace(Gb,"").replace(Lb,Rb[1]+"//"),l.type=c.method||c.type||l.method||l.type,l.dataTypes=n.trim(l.dataType||"*").toLowerCase().match(G)||[""],null==l.crossDomain&&(d=Mb.exec(l.url.toLowerCase()),l.crossDomain=!(!d||d[1]===Rb[1]&&d[2]===Rb[2]&&(d[3]||("http:"===d[1]?"80":"443"))===(Rb[3]||("http:"===Rb[1]?"80":"443")))),l.data&&l.processData&&"string"!=typeof l.data&&(l.data=n.param(l.data,l.traditional)),Tb(Nb,l,c,w),2===u)return w;i=n.event&&l.global,i&&0===n.active++&&n.event.trigger("ajaxStart"),l.type=l.type.toUpperCase(),l.hasContent=!Kb.test(l.type),f=l.url,l.hasContent||(l.data&&(f=l.url+=(Eb.test(f)?"&":"?")+l.data,delete l.data),l.cache===!1&&(l.url=Hb.test(f)?f.replace(Hb,"$1_="+Db++):f+(Eb.test(f)?"&":"?")+"_="+Db++)),l.ifModified&&(n.lastModified[f]&&w.setRequestHeader("If-Modified-Since",n.lastModified[f]),n.etag[f]&&w.setRequestHeader("If-None-Match",n.etag[f])),(l.data&&l.hasContent&&l.contentType!==!1||c.contentType)&&w.setRequestHeader("Content-Type",l.contentType),w.setRequestHeader("Accept",l.dataTypes[0]&&l.accepts[l.dataTypes[0]]?l.accepts[l.dataTypes[0]]+("*"!==l.dataTypes[0]?", "+Pb+"; q=0.01":""):l.accepts["*"]);for(e in l.headers)w.setRequestHeader(e,l.headers[e]);if(l.beforeSend&&(l.beforeSend.call(m,w,l)===!1||2===u))return w.abort();v="abort";for(e in{success:1,error:1,complete:1})w[e](l[e]);if(j=Tb(Ob,l,c,w)){if(w.readyState=1,i&&o.trigger("ajaxSend",[w,l]),2===u)return w;l.async&&l.timeout>0&&(h=a.setTimeout(function(){w.abort("timeout")},l.timeout));try{u=1,j.send(s,y)}catch(x){if(!(2>u))throw x;y(-1,x)}}else y(-1,"No Transport");function y(b,c,d,e){var k,s,t,v,x,y=c;2!==u&&(u=2,h&&a.clearTimeout(h),j=void 0,g=e||"",w.readyState=b>0?4:0,k=b>=200&&300>b||304===b,d&&(v=Vb(l,w,d)),v=Wb(l,v,w,k),k?(l.ifModified&&(x=w.getResponseHeader("Last-Modified"),x&&(n.lastModified[f]=x),x=w.getResponseHeader("etag"),x&&(n.etag[f]=x)),204===b||"HEAD"===l.type?y="nocontent":304===b?y="notmodified":(y=v.state,s=v.data,t=v.error,k=!t)):(t=y,(b||!y)&&(y="error",0>b&&(b=0))),w.status=b,w.statusText=(c||y)+"",k?p.resolveWith(m,[s,y,w]):p.rejectWith(m,[w,y,t]),w.statusCode(r),r=void 0,i&&o.trigger(k?"ajaxSuccess":"ajaxError",[w,l,k?s:t]),q.fireWith(m,[w,y]),i&&(o.trigger("ajaxComplete",[w,l]),--n.active||n.event.trigger("ajaxStop")))}return w},getJSON:function(a,b,c){return n.get(a,b,c,"json")},getScript:function(a,b){return n.get(a,void 0,b,"script")}}),n.each(["get","post"],function(a,b){n[b]=function(a,c,d,e){return n.isFunction(c)&&(e=e||d,d=c,c=void 0),n.ajax(n.extend({url:a,type:b,dataType:e,data:c,success:d},n.isPlainObject(a)&&a))}}),n._evalUrl=function(a){return n.ajax({url:a,type:"GET",dataType:"script",cache:!0,async:!1,global:!1,"throws":!0})},n.fn.extend({wrapAll:function(a){if(n.isFunction(a))return this.each(function(b){n(this).wrapAll(a.call(this,b))});if(this[0]){var b=n(a,this[0].ownerDocument).eq(0).clone(!0);this[0].parentNode&&b.insertBefore(this[0]),b.map(function(){var a=this;while(a.firstChild&&1===a.firstChild.nodeType)a=a.firstChild;return a}).append(this)}return this},wrapInner:function(a){return n.isFunction(a)?this.each(function(b){n(this).wrapInner(a.call(this,b))}):this.each(function(){var b=n(this),c=b.contents();c.length?c.wrapAll(a):b.append(a)})},wrap:function(a){var b=n.isFunction(a);return this.each(function(c){n(this).wrapAll(b?a.call(this,c):a)})},unwrap:function(){return this.parent().each(function(){n.nodeName(this,"body")||n(this).replaceWith(this.childNodes)}).end()}});function Xb(a){return a.style&&a.style.display||n.css(a,"display")}function Yb(a){while(a&&1===a.nodeType){if("none"===Xb(a)||"hidden"===a.type)return!0;a=a.parentNode}return!1}n.expr.filters.hidden=function(a){return l.reliableHiddenOffsets()?a.offsetWidth<=0&&a.offsetHeight<=0&&!a.getClientRects().length:Yb(a)},n.expr.filters.visible=function(a){return!n.expr.filters.hidden(a)};var Zb=/%20/g,$b=/\[\]$/,_b=/\r?\n/g,ac=/^(?:submit|button|image|reset|file)$/i,bc=/^(?:input|select|textarea|keygen)/i;function cc(a,b,c,d){var e;if(n.isArray(b))n.each(b,function(b,e){c||$b.test(a)?d(a,e):cc(a+"["+("object"==typeof e&&null!=e?b:"")+"]",e,c,d)});else if(c||"object"!==n.type(b))d(a,b);else for(e in b)cc(a+"["+e+"]",b[e],c,d)}n.param=function(a,b){var c,d=[],e=function(a,b){b=n.isFunction(b)?b():null==b?"":b,d[d.length]=encodeURIComponent(a)+"="+encodeURIComponent(b)};if(void 0===b&&(b=n.ajaxSettings&&n.ajaxSettings.traditional),n.isArray(a)||a.jquery&&!n.isPlainObject(a))n.each(a,function(){e(this.name,this.value)});else for(c in a)cc(c,a[c],b,e);return d.join("&").replace(Zb,"+")},n.fn.extend({serialize:function(){return n.param(this.serializeArray())},serializeArray:function(){return this.map(function(){var a=n.prop(this,"elements");return a?n.makeArray(a):this}).filter(function(){var a=this.type;return this.name&&!n(this).is(":disabled")&&bc.test(this.nodeName)&&!ac.test(a)&&(this.checked||!Z.test(a))}).map(function(a,b){var c=n(this).val();return null==c?null:n.isArray(c)?n.map(c,function(a){return{name:b.name,value:a.replace(_b,"\r\n")}}):{name:b.name,value:c.replace(_b,"\r\n")}}).get()}}),n.ajaxSettings.xhr=void 0!==a.ActiveXObject?function(){return this.isLocal?hc():d.documentMode>8?gc():/^(get|post|head|put|delete|options)$/i.test(this.type)&&gc()||hc()}:gc;var dc=0,ec={},fc=n.ajaxSettings.xhr();a.attachEvent&&a.attachEvent("onunload",function(){for(var a in ec)ec[a](void 0,!0)}),l.cors=!!fc&&"withCredentials"in fc,fc=l.ajax=!!fc,fc&&n.ajaxTransport(function(b){if(!b.crossDomain||l.cors){var c;return{send:function(d,e){var f,g=b.xhr(),h=++dc;if(g.open(b.type,b.url,b.async,b.username,b.password),b.xhrFields)for(f in b.xhrFields)g[f]=b.xhrFields[f];b.mimeType&&g.overrideMimeType&&g.overrideMimeType(b.mimeType),b.crossDomain||d["X-Requested-With"]||(d["X-Requested-With"]="XMLHttpRequest");for(f in d)void 0!==d[f]&&g.setRequestHeader(f,d[f]+"");g.send(b.hasContent&&b.data||null),c=function(a,d){var f,i,j;if(c&&(d||4===g.readyState))if(delete ec[h],c=void 0,g.onreadystatechange=n.noop,d)4!==g.readyState&&g.abort();else{j={},f=g.status,"string"==typeof g.responseText&&(j.text=g.responseText);try{i=g.statusText}catch(k){i=""}f||!b.isLocal||b.crossDomain?1223===f&&(f=204):f=j.text?200:404}j&&e(f,i,j,g.getAllResponseHeaders())},b.async?4===g.readyState?a.setTimeout(c):g.onreadystatechange=ec[h]=c:c()},abort:function(){c&&c(void 0,!0)}}}});function gc(){try{return new a.XMLHttpRequest}catch(b){}}function hc(){try{return new a.ActiveXObject("Microsoft.XMLHTTP")}catch(b){}}n.ajaxPrefilter(function(a){a.crossDomain&&(a.contents.script=!1)}),n.ajaxSetup({accepts:{script:"text/javascript, application/javascript, application/ecmascript, application/x-ecmascript"},contents:{script:/\b(?:java|ecma)script\b/},converters:{"text script":function(a){return n.globalEval(a),a}}}),n.ajaxPrefilter("script",function(a){void 0===a.cache&&(a.cache=!1),a.crossDomain&&(a.type="GET",a.global=!1)}),n.ajaxTransport("script",function(a){if(a.crossDomain){var b,c=d.head||n("head")[0]||d.documentElement;return{send:function(e,f){b=d.createElement("script"),b.async=!0,a.scriptCharset&&(b.charset=a.scriptCharset),b.src=a.url,b.onload=b.onreadystatechange=function(a,c){(c||!b.readyState||/loaded|complete/.test(b.readyState))&&(b.onload=b.onreadystatechange=null,b.parentNode&&b.parentNode.removeChild(b),b=null,c||f(200,"success"))},c.insertBefore(b,c.firstChild)},abort:function(){b&&b.onload(void 0,!0)}}}});var ic=[],jc=/(=)\?(?=&|$)|\?\?/;n.ajaxSetup({jsonp:"callback",jsonpCallback:function(){var a=ic.pop()||n.expando+"_"+Db++;return this[a]=!0,a}}),n.ajaxPrefilter("json jsonp",function(b,c,d){var e,f,g,h=b.jsonp!==!1&&(jc.test(b.url)?"url":"string"==typeof b.data&&0===(b.contentType||"").indexOf("application/x-www-form-urlencoded")&&jc.test(b.data)&&"data");return h||"jsonp"===b.dataTypes[0]?(e=b.jsonpCallback=n.isFunction(b.jsonpCallback)?b.jsonpCallback():b.jsonpCallback,h?b[h]=b[h].replace(jc,"$1"+e):b.jsonp!==!1&&(b.url+=(Eb.test(b.url)?"&":"?")+b.jsonp+"="+e),b.converters["script json"]=function(){return g||n.error(e+" was not called"),g[0]},b.dataTypes[0]="json",f=a[e],a[e]=function(){g=arguments},d.always(function(){void 0===f?n(a).removeProp(e):a[e]=f,b[e]&&(b.jsonpCallback=c.jsonpCallback,ic.push(e)),g&&n.isFunction(f)&&f(g[0]),g=f=void 0}),"script"):void 0}),l.createHTMLDocument=function(){if(!d.implementation.createHTMLDocument)return!1;var a=d.implementation.createHTMLDocument("");return a.body.innerHTML="<form></form><form></form>",2===a.body.childNodes.length}(),n.parseHTML=function(a,b,c){if(!a||"string"!=typeof a)return null;"boolean"==typeof b&&(c=b,b=!1),b=b||(l.createHTMLDocument?d.implementation.createHTMLDocument(""):d);var e=x.exec(a),f=!c&&[];return e?[b.createElement(e[1])]:(e=ja([a],b,f),f&&f.length&&n(f).remove(),n.merge([],e.childNodes))};var kc=n.fn.load;n.fn.load=function(a,b,c){if("string"!=typeof a&&kc)return kc.apply(this,arguments);var d,e,f,g=this,h=a.indexOf(" ");return h>-1&&(d=n.trim(a.slice(h,a.length)),a=a.slice(0,h)),n.isFunction(b)?(c=b,b=void 0):b&&"object"==typeof b&&(e="POST"),g.length>0&&n.ajax({url:a,type:e||"GET",dataType:"html",data:b}).done(function(a){f=arguments,g.html(d?n("<div>").append(n.parseHTML(a)).find(d):a)}).always(c&&function(a,b){g.each(function(){c.apply(g,f||[a.responseText,b,a])})}),this},n.each(["ajaxStart","ajaxStop","ajaxComplete","ajaxError","ajaxSuccess","ajaxSend"],function(a,b){n.fn[b]=function(a){return this.on(b,a)}}),n.expr.filters.animated=function(a){return n.grep(n.timers,function(b){return a===b.elem}).length};function lc(a){return n.isWindow(a)?a:9===a.nodeType?a.defaultView||a.parentWindow:!1}n.offset={setOffset:function(a,b,c){var d,e,f,g,h,i,j,k=n.css(a,"position"),l=n(a),m={};"static"===k&&(a.style.position="relative"),h=l.offset(),f=n.css(a,"top"),i=n.css(a,"left"),j=("absolute"===k||"fixed"===k)&&n.inArray("auto",[f,i])>-1,j?(d=l.position(),g=d.top,e=d.left):(g=parseFloat(f)||0,e=parseFloat(i)||0),n.isFunction(b)&&(b=b.call(a,c,n.extend({},h))),null!=b.top&&(m.top=b.top-h.top+g),null!=b.left&&(m.left=b.left-h.left+e),"using"in b?b.using.call(a,m):l.css(m)}},n.fn.extend({offset:function(a){if(arguments.length)return void 0===a?this:this.each(function(b){n.offset.setOffset(this,a,b)});var b,c,d={top:0,left:0},e=this[0],f=e&&e.ownerDocument;if(f)return b=f.documentElement,n.contains(b,e)?("undefined"!=typeof e.getBoundingClientRect&&(d=e.getBoundingClientRect()),c=lc(f),{top:d.top+(c.pageYOffset||b.scrollTop)-(b.clientTop||0),left:d.left+(c.pageXOffset||b.scrollLeft)-(b.clientLeft||0)}):d},position:function(){if(this[0]){var a,b,c={top:0,left:0},d=this[0];return"fixed"===n.css(d,"position")?b=d.getBoundingClientRect():(a=this.offsetParent(),b=this.offset(),n.nodeName(a[0],"html")||(c=a.offset()),c.top+=n.css(a[0],"borderTopWidth",!0)-a.scrollTop(),c.left+=n.css(a[0],"borderLeftWidth",!0)-a.scrollLeft()),{top:b.top-c.top-n.css(d,"marginTop",!0),left:b.left-c.left-n.css(d,"marginLeft",!0)}}},offsetParent:function(){return this.map(function(){var a=this.offsetParent;while(a&&!n.nodeName(a,"html")&&"static"===n.css(a,"position"))a=a.offsetParent;return a||Qa})}}),n.each({scrollLeft:"pageXOffset",scrollTop:"pageYOffset"},function(a,b){var c=/Y/.test(b);n.fn[a]=function(d){return Y(this,function(a,d,e){var f=lc(a);return void 0===e?f?b in f?f[b]:f.document.documentElement[d]:a[d]:void(f?f.scrollTo(c?n(f).scrollLeft():e,c?e:n(f).scrollTop()):a[d]=e)},a,d,arguments.length,null)}}),n.each(["top","left"],function(a,b){
n.cssHooks[b]=Ua(l.pixelPosition,function(a,c){return c?(c=Sa(a,b),Oa.test(c)?n(a).position()[b]+"px":c):void 0})}),n.each({Height:"height",Width:"width"},function(a,b){n.each({padding:"inner"+a,content:b,"":"outer"+a},function(c,d){n.fn[d]=function(d,e){var f=arguments.length&&(c||"boolean"!=typeof d),g=c||(d===!0||e===!0?"margin":"border");return Y(this,function(b,c,d){var e;return n.isWindow(b)?b.document.documentElement["client"+a]:9===b.nodeType?(e=b.documentElement,Math.max(b.body["scroll"+a],e["scroll"+a],b.body["offset"+a],e["offset"+a],e["client"+a])):void 0===d?n.css(b,c,g):n.style(b,c,d,g)},b,f?d:void 0,f,null)}})}),n.fn.extend({bind:function(a,b,c){return this.on(a,null,b,c)},unbind:function(a,b){return this.off(a,null,b)},delegate:function(a,b,c,d){return this.on(b,a,c,d)},undelegate:function(a,b,c){return 1===arguments.length?this.off(a,"**"):this.off(b,a||"**",c)}}),n.fn.size=function(){return this.length},n.fn.andSelf=n.fn.addBack,"function"==typeof define&&define.amd&&define("jquery",[],function(){return n});var mc=a.jQuery,nc=a.$;return n.noConflict=function(b){return a.$===n&&(a.$=nc),b&&a.jQuery===n&&(a.jQuery=mc),n},b||(a.jQuery=a.$=n),n});
/*!
* Less - Leaner CSS v2.5.3
* http://lesscss.org
*
* Copyright (c) 2009-2015, Alexis Sellier <self@cloudhead.net>
* Licensed under the License.
*
*/
/** * @license
*/
!function(a){if("object"==typeof exports&&"undefined"!=typeof module)module.exports=a();else if("function"==typeof define&&define.amd)define([],a);else{var b;b="undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:this,b.less=a()}}(function(){return function a(b,c,d){function e(g,h){if(!c[g]){if(!b[g]){var i="function"==typeof require&&require;if(!h&&i)return i(g,!0);if(f)return f(g,!0);var j=new Error("Cannot find module '"+g+"'");throw j.code="MODULE_NOT_FOUND",j}var k=c[g]={exports:{}};b[g][0].call(k.exports,function(a){var c=b[g][1][a];return e(c?c:a)},k,k.exports,a,b,c,d)}return c[g].exports}for(var f="function"==typeof require&&require,g=0;d.length>g;g++)e(d[g]);return e}({1:[function(a,b){var c=a("./utils").addDataAttr,d=a("./browser");b.exports=function(a,b){c(b,d.currentScript(a)),void 0===b.isFileProtocol&&(b.isFileProtocol=/^(file|(chrome|safari)(-extension)?|resource|qrc|app):/.test(a.location.protocol)),b.async=b.async||!1,b.fileAsync=b.fileAsync||!1,b.poll=b.poll||(b.isFileProtocol?1e3:1500),b.env=b.env||("127.0.0.1"==a.location.hostname||"0.0.0.0"==a.location.hostname||"localhost"==a.location.hostname||a.location.port&&a.location.port.length>0||b.isFileProtocol?"development":"production");var e=/!dumpLineNumbers:(comments|mediaquery|all)/.exec(a.location.hash);e&&(b.dumpLineNumbers=e[1]),void 0===b.useFileCache&&(b.useFileCache=!0),void 0===b.onReady&&(b.onReady=!0)}},{"./browser":3,"./utils":9}],2:[function(a,b){a("promise/polyfill.js");var c=window.less||{};a("./add-default-options")(window,c);var d=b.exports=a("./index")(window,c);window.less=d,c.onReady&&(/!watch/.test(window.location.hash)&&d.watch(),d.registerStylesheetsImmediately(),d.pageLoadFinished=d.refresh("development"===d.env))},{"./add-default-options":1,"./index":7,"promise/polyfill.js":95}],3:[function(a,b){var c=a("./utils");b.exports={createCSS:function(a,b,d){var e=d.href||"",f="less:"+(d.title||c.extractId(e)),g=a.getElementById(f),h=!1,i=a.createElement("style");i.setAttribute("type","text/css"),d.media&&i.setAttribute("media",d.media),i.id=f,i.styleSheet||(i.appendChild(a.createTextNode(b)),h=null!==g&&g.childNodes.length>0&&i.childNodes.length>0&&g.firstChild.nodeValue===i.firstChild.nodeValue);var j=a.getElementsByTagName("head")[0];if(null===g||h===!1){var k=d&&d.nextSibling||null;k?k.parentNode.insertBefore(i,k):j.appendChild(i)}if(g&&h===!1&&g.parentNode.removeChild(g),i.styleSheet)try{i.styleSheet.cssText=b}catch(l){throw new Error("Couldn't reassign styleSheet.cssText.")}},currentScript:function(a){var b=a.document;return b.currentScript||function(){var a=b.getElementsByTagName("script");return a[a.length-1]}()}}},{"./utils":9}],4:[function(a,b){b.exports=function(a,b,c){var d=null;if("development"!==b.env)try{d="undefined"==typeof a.localStorage?null:a.localStorage}catch(e){}return{setCSS:function(a,b,e){if(d){c.info("saving "+a+" to cache.");try{d.setItem(a,e),d.setItem(a+":timestamp",b)}catch(f){c.error('failed to save "'+a+'" to local storage for caching.')}}},getCSS:function(a,b){var c=d&&d.getItem(a),e=d&&d.getItem(a+":timestamp");return e&&b.lastModified&&new Date(b.lastModified).valueOf()===new Date(e).valueOf()?c:void 0}}}},{}],5:[function(a,b){var c=a("./utils"),d=a("./browser");b.exports=function(a,b,e){function f(b,f){var g,h,i="less-error-message:"+c.extractId(f||""),j='<li><label>{line}</label><pre class="{class}">{content}</pre></li>',k=a.document.createElement("div"),l=[],m=b.filename||f,n=m.match(/([^\/]+(\?.*)?)$/)[1];k.id=i,k.className="less-error-message",h="<h3>"+(b.type||"Syntax")+"Error: "+(b.message||"There is an error in your .less file")+'</h3><p>in <a href="'+m+'">'+n+"</a> ";var o=function(a,b,c){void 0!==a.extract[b]&&l.push(j.replace(/\{line\}/,(parseInt(a.line,10)||0)+(b-1)).replace(/\{class\}/,c).replace(/\{content\}/,a.extract[b]))};b.extract&&(o(b,0,""),o(b,1,"line"),o(b,2,""),h+="on line "+b.line+", column "+(b.column+1)+":</p><ul>"+l.join("")+"</ul>"),b.stack&&(b.extract||e.logLevel>=4)&&(h+="<br/>Stack Trace</br />"+b.stack.split("\n").slice(1).join("<br/>")),k.innerHTML=h,d.createCSS(a.document,[".less-error-message ul, .less-error-message li {","list-style-type: none;","margin-right: 15px;","padding: 4px 0;","margin: 0;","}",".less-error-message label {","font-size: 12px;","margin-right: 15px;","padding: 4px 0;","color: #cc7777;","}",".less-error-message pre {","color: #dd6666;","padding: 4px 0;","margin: 0;","display: inline-block;","}",".less-error-message pre.line {","color: #ff0000;","}",".less-error-message h3 {","font-size: 20px;","font-weight: bold;","padding: 15px 0 5px 0;","margin: 0;","}",".less-error-message a {","color: #10a","}",".less-error-message .error {","color: red;","font-weight: bold;","padding-bottom: 2px;","border-bottom: 1px dashed red;","}"].join("\n"),{title:"error-message"}),k.style.cssText=["font-family: Arial, sans-serif","border: 1px solid #e00","background-color: #eee","border-radius: 5px","-webkit-border-radius: 5px","-moz-border-radius: 5px","color: #e00","padding: 15px","margin-bottom: 15px"].join(";"),"development"===e.env&&(g=setInterval(function(){var b=a.document,c=b.body;c&&(b.getElementById(i)?c.replaceChild(k,b.getElementById(i)):c.insertBefore(k,c.firstChild),clearInterval(g))},10))}function g(a,b){e.errorReporting&&"html"!==e.errorReporting?"console"===e.errorReporting?k(a,b):"function"==typeof e.errorReporting&&e.errorReporting("add",a,b):f(a,b)}function h(b){var d=a.document.getElementById("less-error-message:"+c.extractId(b));d&&d.parentNode.removeChild(d)}function i(){}function j(a){e.errorReporting&&"html"!==e.errorReporting?"console"===e.errorReporting?i(a):"function"==typeof e.errorReporting&&e.errorReporting("remove",a):h(a)}function k(a,c){var d="{line} {content}",f=a.filename||c,g=[],h=(a.type||"Syntax")+"Error: "+(a.message||"There is an error in your .less file")+" in "+f+" ",i=function(a,b,c){void 0!==a.extract[b]&&g.push(d.replace(/\{line\}/,(parseInt(a.line,10)||0)+(b-1)).replace(/\{class\}/,c).replace(/\{content\}/,a.extract[b]))};a.extract&&(i(a,0,""),i(a,1,"line"),i(a,2,""),h+="on line "+a.line+", column "+(a.column+1)+":\n"+g.join("\n")),a.stack&&(a.extract||e.logLevel>=4)&&(h+="\nStack Trace\n"+a.stack),b.logger.error(h)}return{add:g,remove:j}}},{"./browser":3,"./utils":9}],6:[function(a,b){b.exports=function(b,c){function d(){if(window.XMLHttpRequest&&!("file:"===window.location.protocol&&"ActiveXObject"in window))return new XMLHttpRequest;try{return new ActiveXObject("Microsoft.XMLHTTP")}catch(a){return c.error("browser doesn't support AJAX."),null}}var e=a("../less/environment/abstract-file-manager.js"),f={},g=function(){};return g.prototype=new e,g.prototype.alwaysMakePathsAbsolute=function(){return!0},g.prototype.join=function(a,b){return a?this.extractUrlParts(b,a).path:b},g.prototype.doXHR=function(a,e,f,g){function h(b,c,d){b.status>=200&&300>b.status?c(b.responseText,b.getResponseHeader("Last-Modified")):"function"==typeof d&&d(b.status,a)}var i=d(),j=b.isFileProtocol?b.fileAsync:b.async;"function"==typeof i.overrideMimeType&&i.overrideMimeType("text/css"),c.debug("XHR: Getting '"+a+"'"),i.open("GET",a,j),i.setRequestHeader("Accept",e||"text/x-less, text/css; q=0.9, */*; q=0.5"),i.send(null),b.isFileProtocol&&!b.fileAsync?0===i.status||i.status>=200&&300>i.status?f(i.responseText):g(i.status,a):j?i.onreadystatechange=function(){4==i.readyState&&h(i,f,g)}:h(i,f,g)},g.prototype.supports=function(){return!0},g.prototype.clearFileCache=function(){f={}},g.prototype.loadFile=function(a,b,c,d,e){b&&!this.isPathAbsolute(a)&&(a=b+a),c=c||{};var g=this.extractUrlParts(a,window.location.href),h=g.url;if(c.useFileCache&&f[h])try{var i=f[h];e(null,{contents:i,filename:h,webInfo:{lastModified:new Date}})}catch(j){e({filename:h,message:"Error loading file "+h+" error was "+j.message})}else this.doXHR(h,c.mime,function(a,b){f[h]=a,e(null,{contents:a,filename:h,webInfo:{lastModified:b}})},function(a,b){e({type:"File",message:"'"+b+"' wasn't found ("+a+")",href:h})})},g}},{"../less/environment/abstract-file-manager.js":14}],7:[function(a,b){var c=a("./utils").addDataAttr,d=a("./browser");b.exports=function(b,e){function f(a){return e.postProcessor&&"function"==typeof e.postProcessor&&(a=e.postProcessor.call(a,a)||a),a}function g(a){var b={};for(var c in a)a.hasOwnProperty(c)&&(b[c]=a[c]);return b}function h(a,b){var c=Array.prototype.slice.call(arguments,2);return function(){var d=c.concat(Array.prototype.slice.call(arguments,0));return a.apply(b,d)}}function i(a){for(var b,c=m.getElementsByTagName("style"),d=0;c.length>d;d++)if(b=c[d],b.type.match(t)){var f=g(e);f.modifyVars=a;var i=b.innerHTML||"";f.filename=m.location.href.replace(/#.*$/,""),n.render(i,f,h(function(a,b,c){b?r.add(b,"inline"):(a.type="text/css",a.styleSheet?a.styleSheet.cssText=c.css:a.innerHTML=c.css)},null,b))}}function j(a,b,d,h,i){function j(c){var e=c.contents,g=c.filename,i=c.webInfo,j={currentDirectory:q.getPath(g),filename:g,rootFilename:g,relativeUrls:k.relativeUrls};if(j.entryPath=j.currentDirectory,j.rootpath=k.rootpath||j.currentDirectory,i&&(i.remaining=h,!k.modifyVars)){var l=s.getCSS(g,i);if(!d&&l)return i.local=!0,void b(null,l,e,a,i,g)}r.remove(g),k.rootFileInfo=j,n.render(e,k,function(c,d){c?(c.href=g,b(c)):(d.css=f(d.css),k.modifyVars||s.setCSS(a.href,i.lastModified,d.css),b(null,d.css,e,a,i,g))})}var k=g(e);c(k,a),k.mime=a.type,i&&(k.modifyVars=i),q.loadFile(a.href,null,k,o,function(a,c){return a?void b(a):void j(c)})}function k(a,b,c){for(var d=0;n.sheets.length>d;d++)j(n.sheets[d],a,b,n.sheets.length-(d+1),c)}function l(){"development"===n.env&&(n.watchTimer=setInterval(function(){n.watchMode&&(q.clearFileCache(),k(function(a,c,e,f){a?r.add(a,a.href||f.href):c&&d.createCSS(b.document,c,f)}))},e.poll))}var m=b.document,n=a("../less")();n.options=e;var o=n.environment,p=a("./file-manager")(e,n.logger),q=new p;o.addFileManager(q),n.FileManager=p,a("./log-listener")(n,e);var r=a("./error-reporting")(b,n,e),s=n.cache=e.cache||a("./cache")(b,e,n.logger);e.functions&&n.functions.functionRegistry.addMultiple(e.functions);var t=/^text\/(x-)?less$/;return n.watch=function(){return n.watchMode||(n.env="development",l()),this.watchMode=!0,!0},n.unwatch=function(){return clearInterval(n.watchTimer),this.watchMode=!1,!1},n.registerStylesheetsImmediately=function(){var a=m.getElementsByTagName("link");n.sheets=[];for(var b=0;a.length>b;b++)("stylesheet/less"===a[b].rel||a[b].rel.match(/stylesheet/)&&a[b].type.match(t))&&n.sheets.push(a[b])},n.registerStylesheets=function(){return new Promise(function(a){n.registerStylesheetsImmediately(),a()})},n.modifyVars=function(a){return n.refresh(!0,a,!1)},n.refresh=function(a,c,e){return(a||e)&&e!==!1&&q.clearFileCache(),new Promise(function(e,f){var g,h,j;g=h=new Date,k(function(a,c,i,k,l){return a?(r.add(a,a.href||k.href),void f(a)):(n.logger.info(l.local?"loading "+k.href+" from cache.":"rendered "+k.href+" successfully."),d.createCSS(b.document,c,k),n.logger.info("css for "+k.href+" generated in "+(new Date-h)+"ms"),0===l.remaining&&(j=new Date-g,n.logger.info("less has finished. css generated in "+j+"ms"),e({startTime:g,endTime:h,totalMilliseconds:j,sheets:n.sheets.length})),void(h=new Date))},a,c),i(c)})},n.refreshStyles=i,n}},{"../less":30,"./browser":3,"./cache":4,"./error-reporting":5,"./file-manager":6,"./log-listener":8,"./utils":9}],8:[function(a,b){b.exports=function(a,b){var c=4,d=3,e=2,f=1;b.logLevel="undefined"!=typeof b.logLevel?b.logLevel:"development"===b.env?d:f,b.loggers||(b.loggers=[{debug:function(a){b.logLevel>=c&&console.log(a)},info:function(a){b.logLevel>=d&&console.log(a)},warn:function(a){b.logLevel>=e&&console.warn(a)},error:function(a){b.logLevel>=f&&console.error(a)}}]);for(var g=0;b.loggers.length>g;g++)a.logger.addListener(b.loggers[g])}},{}],9:[function(a,b){b.exports={extractId:function(a){return a.replace(/^[a-z-]+:\/+?[^\/]+/,"").replace(/[\?\&]livereload=\w+/,"").replace(/^\//,"").replace(/\.[a-zA-Z]+$/,"").replace(/[^\.\w-]+/g,"-").replace(/\./g,":")},addDataAttr:function(a,b){for(var c in b.dataset)if(b.dataset.hasOwnProperty(c))if("env"===c||"dumpLineNumbers"===c||"rootpath"===c||"errorReporting"===c)a[c]=b.dataset[c];else try{a[c]=JSON.parse(b.dataset[c])}catch(d){}}}},{}],10:[function(a,b){var c={};b.exports=c;var d=function(a,b,c){if(a)for(var d=0;c.length>d;d++)a.hasOwnProperty(c[d])&&(b[c[d]]=a[c[d]])},e=["paths","relativeUrls","rootpath","strictImports","insecure","dumpLineNumbers","compress","syncImport","chunkInput","mime","useFileCache","processImports","reference","pluginManager"];c.Parse=function(a){d(a,this,e),"string"==typeof this.paths&&(this.paths=[this.paths])};var f=["paths","compress","ieCompat","strictMath","strictUnits","sourceMap","importMultiple","urlArgs","javascriptEnabled","pluginManager","importantScope"];c.Eval=function(a,b){d(a,this,f),"string"==typeof this.paths&&(this.paths=[this.paths]),this.frames=b||[],this.importantScope=this.importantScope||[]},c.Eval.prototype.inParenthesis=function(){this.parensStack||(this.parensStack=[]),this.parensStack.push(!0)},c.Eval.prototype.outOfParenthesis=function(){this.parensStack.pop()},c.Eval.prototype.isMathOn=function(){return this.strictMath?this.parensStack&&this.parensStack.length:!0},c.Eval.prototype.isPathRelative=function(a){return!/^(?:[a-z-]+:|\/|#)/i.test(a)},c.Eval.prototype.normalizePath=function(a){var b,c=a.split("/").reverse();for(a=[];0!==c.length;)switch(b=c.pop()){case".":break;case"..":0===a.length||".."===a[a.length-1]?a.push(b):a.pop();break;default:a.push(b)}return a.join("/")}},{}],11:[function(a,b){b.exports={aliceblue:"#f0f8ff",antiquewhite:"#faebd7",aqua:"#00ffff",aquamarine:"#7fffd4",azure:"#f0ffff",beige:"#f5f5dc",bisque:"#ffe4c4",black:"#000000",blanchedalmond:"#ffebcd",blue:"#0000ff",blueviolet:"#8a2be2",brown:"#a52a2a",burlywood:"#deb887",cadetblue:"#5f9ea0",chartreuse:"#7fff00",chocolate:"#d2691e",coral:"#ff7f50",cornflowerblue:"#6495ed",cornsilk:"#fff8dc",crimson:"#dc143c",cyan:"#00ffff",darkblue:"#00008b",darkcyan:"#008b8b",darkgoldenrod:"#b8860b",darkgray:"#a9a9a9",darkgrey:"#a9a9a9",darkgreen:"#006400",darkkhaki:"#bdb76b",darkmagenta:"#8b008b",darkolivegreen:"#556b2f",darkorange:"#ff8c00",darkorchid:"#9932cc",darkred:"#8b0000",darksalmon:"#e9967a",darkseagreen:"#8fbc8f",darkslateblue:"#483d8b",darkslategray:"#2f4f4f",darkslategrey:"#2f4f4f",darkturquoise:"#00ced1",darkviolet:"#9400d3",deeppink:"#ff1493",deepskyblue:"#00bfff",dimgray:"#696969",dimgrey:"#696969",dodgerblue:"#1e90ff",firebrick:"#b22222",floralwhite:"#fffaf0",forestgreen:"#228b22",fuchsia:"#ff00ff",gainsboro:"#dcdcdc",ghostwhite:"#f8f8ff",gold:"#ffd700",goldenrod:"#daa520",gray:"#808080",grey:"#808080",green:"#008000",greenyellow:"#adff2f",honeydew:"#f0fff0",hotpink:"#ff69b4",indianred:"#cd5c5c",indigo:"#4b0082",ivory:"#fffff0",khaki:"#f0e68c",lavender:"#e6e6fa",lavenderblush:"#fff0f5",lawngreen:"#7cfc00",lemonchiffon:"#fffacd",lightblue:"#add8e6",lightcoral:"#f08080",lightcyan:"#e0ffff",lightgoldenrodyellow:"#fafad2",lightgray:"#d3d3d3",lightgrey:"#d3d3d3",lightgreen:"#90ee90",lightpink:"#ffb6c1",lightsalmon:"#ffa07a",lightseagreen:"#20b2aa",lightskyblue:"#87cefa",lightslategray:"#778899",lightslategrey:"#778899",lightsteelblue:"#b0c4de",lightyellow:"#ffffe0",lime:"#00ff00",limegreen:"#32cd32",linen:"#faf0e6",magenta:"#ff00ff",maroon:"#800000",mediumaquamarine:"#66cdaa",mediumblue:"#0000cd",mediumorchid:"#ba55d3",mediumpurple:"#9370d8",mediumseagreen:"#3cb371",mediumslateblue:"#7b68ee",mediumspringgreen:"#00fa9a",mediumturquoise:"#48d1cc",mediumvioletred:"#c71585",midnightblue:"#191970",mintcream:"#f5fffa",mistyrose:"#ffe4e1",moccasin:"#ffe4b5",navajowhite:"#ffdead",navy:"#000080",oldlace:"#fdf5e6",olive:"#808000",olivedrab:"#6b8e23",orange:"#ffa500",orangered:"#ff4500",orchid:"#da70d6",palegoldenrod:"#eee8aa",palegreen:"#98fb98",paleturquoise:"#afeeee",palevioletred:"#d87093",papayawhip:"#ffefd5",peachpuff:"#ffdab9",peru:"#cd853f",pink:"#ffc0cb",plum:"#dda0dd",powderblue:"#b0e0e6",purple:"#800080",rebeccapurple:"#663399",red:"#ff0000",rosybrown:"#bc8f8f",royalblue:"#4169e1",saddlebrown:"#8b4513",salmon:"#fa8072",sandybrown:"#f4a460",seagreen:"#2e8b57",seashell:"#fff5ee",sienna:"#a0522d",silver:"#c0c0c0",skyblue:"#87ceeb",slateblue:"#6a5acd",slategray:"#708090",slategrey:"#708090",snow:"#fffafa",springgreen:"#00ff7f",steelblue:"#4682b4",tan:"#d2b48c",teal:"#008080",thistle:"#d8bfd8",tomato:"#ff6347",turquoise:"#40e0d0",violet:"#ee82ee",wheat:"#f5deb3",white:"#ffffff",whitesmoke:"#f5f5f5",yellow:"#ffff00",yellowgreen:"#9acd32"}},{}],12:[function(a,b){b.exports={colors:a("./colors"),unitConversions:a("./unit-conversions")}},{"./colors":11,"./unit-conversions":13}],13:[function(a,b){b.exports={length:{m:1,cm:.01,mm:.001,"in":.0254,px:.0254/96,pt:.0254/72,pc:.0254/72*12},duration:{s:1,ms:.001},angle:{rad:1/(2*Math.PI),deg:1/360,grad:.0025,turn:1}}},{}],14:[function(a,b){var c=function(){};c.prototype.getPath=function(a){var b=a.lastIndexOf("?");return b>0&&(a=a.slice(0,b)),b=a.lastIndexOf("/"),0>b&&(b=a.lastIndexOf("\\")),0>b?"":a.slice(0,b+1)},c.prototype.tryAppendExtension=function(a,b){return/(\.[a-z]*$)|([\?;].*)$/.test(a)?a:a+b},c.prototype.tryAppendLessExtension=function(a){return this.tryAppendExtension(a,".less")},c.prototype.supportsSync=function(){return!1},c.prototype.alwaysMakePathsAbsolute=function(){return!1},c.prototype.isPathAbsolute=function(a){return/^(?:[a-z-]+:|\/|\\|#)/i.test(a)},c.prototype.join=function(a,b){return a?a+b:b},c.prototype.pathDiff=function(a,b){var c,d,e,f,g=this.extractUrlParts(a),h=this.extractUrlParts(b),i="";if(g.hostPart!==h.hostPart)return"";for(d=Math.max(h.directories.length,g.directories.length),c=0;d>c&&h.directories[c]===g.directories[c];c++);for(f=h.directories.slice(c),e=g.directories.slice(c),c=0;f.length-1>c;c++)i+="../";for(c=0;e.length-1>c;c++)i+=e[c]+"/";return i},c.prototype.extractUrlParts=function(a,b){var c,d,e=/^((?:[a-z-]+:)?\/+?(?:[^\/\?#]*\/)|([\/\\]))?((?:[^\/\\\?#]*[\/\\])*)([^\/\\\?#]*)([#\?].*)?$/i,f=a.match(e),g={},h=[];if(!f)throw new Error("Could not parse sheet href - '"+a+"'");if(b&&(!f[1]||f[2])){if(d=b.match(e),!d)throw new Error("Could not parse page url - '"+b+"'");f[1]=f[1]||d[1]||"",f[2]||(f[3]=d[3]+f[3])}if(f[3]){for(h=f[3].replace(/\\/g,"/").split("/"),c=0;h.length>c;c++)"."===h[c]&&(h.splice(c,1),c-=1);for(c=0;h.length>c;c++)".."===h[c]&&c>0&&(h.splice(c-1,2),c-=2)}return g.hostPart=f[1],g.directories=h,g.path=(f[1]||"")+h.join("/"),g.fileUrl=g.path+(f[4]||""),g.url=g.fileUrl+(f[5]||""),g},b.exports=c},{}],15:[function(a,b){var c=a("../logger"),d=function(a,b){this.fileManagers=b||[],a=a||{};for(var c=["encodeBase64","mimeLookup","charsetLookup","getSourceMapGenerator"],d=[],e=d.concat(c),f=0;e.length>f;f++){var g=e[f],h=a[g];h?this[g]=h.bind(a):d.length>f&&this.warn("missing required function in environment - "+g)}};d.prototype.getFileManager=function(a,b,d,e,f){a||c.warn("getFileManager called with no filename.. Please report this issue. continuing."),null==b&&c.warn("getFileManager called with null directory.. Please report this issue. continuing.");var g=this.fileManagers;d.pluginManager&&(g=[].concat(g).concat(d.pluginManager.getFileManagers()));for(var h=g.length-1;h>=0;h--){var i=g[h];if(i[f?"supportsSync":"supports"](a,b,d,e))return i}return null},d.prototype.addFileManager=function(a){this.fileManagers.push(a)},d.prototype.clearFileManagers=function(){this.fileManagers=[]},b.exports=d},{"../logger":32}],16:[function(a){function b(a,b,d){var e,f,g,h,i=b.alpha,j=d.alpha,k=[];g=j+i*(1-j);for(var l=0;3>l;l++)e=b.rgb[l]/255,f=d.rgb[l]/255,h=a(e,f),g&&(h=(j*f+i*(e-j*(e+f-h)))/g),k[l]=255*h;return new c(k,g)}var c=a("../tree/color"),d=a("./function-registry"),e={multiply:function(a,b){return a*b},screen:function(a,b){return a+b-a*b},overlay:function(a,b){return a*=2,1>=a?e.multiply(a,b):e.screen(a-1,b)},softlight:function(a,b){var c=1,d=a;return b>.5&&(d=1,c=a>.25?Math.sqrt(a):((16*a-12)*a+4)*a),a-(1-2*b)*d*(c-a)},hardlight:function(a,b){return e.overlay(b,a)},difference:function(a,b){return Math.abs(a-b)},exclusion:function(a,b){return a+b-2*a*b},average:function(a,b){return(a+b)/2},negation:function(a,b){return 1-Math.abs(a+b-1)}};for(var f in e)e.hasOwnProperty(f)&&(b[f]=b.bind(null,e[f]));d.addMultiple(b)},{"../tree/color":49,"./function-registry":21}],17:[function(a){function b(a){return Math.min(1,Math.max(0,a))}function c(a){return f.hsla(a.h,a.s,a.l,a.a)}function d(a){if(a instanceof g)return parseFloat(a.unit.is("%")?a.value/100:a.value);if("number"==typeof a)return a;throw{type:"Argument",message:"color functions take numbers as parameters"}}function e(a,b){return a instanceof g&&a.unit.is("%")?parseFloat(a.value*b/100):d(a)}var f,g=a("../tree/dimension"),h=a("../tree/color"),i=a("../tree/quoted"),j=a("../tree/anonymous"),k=a("./function-registry");f={rgb:function(a,b,c){return f.rgba(a,b,c,1)},rgba:function(a,b,c,f){var g=[a,b,c].map(function(a){return e(a,255)});return f=d(f),new h(g,f)},hsl:function(a,b,c){return f.hsla(a,b,c,1)},hsla:function(a,c,e,g){function h(a){return a=0>a?a+1:a>1?a-1:a,1>6*a?j+(i-j)*a*6:1>2*a?i:2>3*a?j+(i-j)*(2/3-a)*6:j}a=d(a)%360/360,c=b(d(c)),e=b(d(e)),g=b(d(g));var i=.5>=e?e*(c+1):e+c-e*c,j=2*e-i;return f.rgba(255*h(a+1/3),255*h(a),255*h(a-1/3),g)},hsv:function(a,b,c){return f.hsva(a,b,c,1)},hsva:function(a,b,c,e){a=d(a)%360/360*360,b=d(b),c=d(c),e=d(e);var g,h;g=Math.floor(a/60%6),h=a/60-g;var i=[c,c*(1-b),c*(1-h*b),c*(1-(1-h)*b)],j=[[0,3,1],[2,0,1],[1,0,3],[1,2,0],[3,1,0],[0,1,2]];return f.rgba(255*i[j[g][0]],255*i[j[g][1]],255*i[j[g][2]],e)},hue:function(a){return new g(a.toHSL().h)},saturation:function(a){return new g(100*a.toHSL().s,"%")},lightness:function(a){return new g(100*a.toHSL().l,"%")},hsvhue:function(a){return new g(a.toHSV().h)},hsvsaturation:function(a){return new g(100*a.toHSV().s,"%")},hsvvalue:function(a){return new g(100*a.toHSV().v,"%")},red:function(a){return new g(a.rgb[0])},green:function(a){return new g(a.rgb[1])},blue:function(a){return new g(a.rgb[2])},alpha:function(a){return new g(a.toHSL().a)},luma:function(a){return new g(a.luma()*a.alpha*100,"%")},luminance:function(a){var b=.2126*a.rgb[0]/255+.7152*a.rgb[1]/255+.0722*a.rgb[2]/255;return new g(b*a.alpha*100,"%")},saturate:function(a,d,e){if(!a.rgb)return null;var f=a.toHSL();return f.s+="undefined"!=typeof e&&"relative"===e.value?f.s*d.value/100:d.value/100,f.s=b(f.s),c(f)},desaturate:function(a,d,e){var f=a.toHSL();return f.s-="undefined"!=typeof e&&"relative"===e.value?f.s*d.value/100:d.value/100,f.s=b(f.s),c(f)},lighten:function(a,d,e){var f=a.toHSL();return f.l+="undefined"!=typeof e&&"relative"===e.value?f.l*d.value/100:d.value/100,f.l=b(f.l),c(f)},darken:function(a,d,e){var f=a.toHSL();return f.l-="undefined"!=typeof e&&"relative"===e.value?f.l*d.value/100:d.value/100,f.l=b(f.l),c(f)},fadein:function(a,d,e){var f=a.toHSL();return f.a+="undefined"!=typeof e&&"relative"===e.value?f.a*d.value/100:d.value/100,f.a=b(f.a),c(f)},fadeout:function(a,d,e){var f=a.toHSL();return f.a-="undefined"!=typeof e&&"relative"===e.value?f.a*d.value/100:d.value/100,f.a=b(f.a),c(f)},fade:function(a,d){var e=a.toHSL();return e.a=d.value/100,e.a=b(e.a),c(e)},spin:function(a,b){var d=a.toHSL(),e=(d.h+b.value)%360;return d.h=0>e?360+e:e,c(d)},mix:function(a,b,c){a.toHSL&&b.toHSL||(console.log(b.type),console.dir(b)),c||(c=new g(50));var d=c.value/100,e=2*d-1,f=a.toHSL().a-b.toHSL().a,i=((e*f==-1?e:(e+f)/(1+e*f))+1)/2,j=1-i,k=[a.rgb[0]*i+b.rgb[0]*j,a.rgb[1]*i+b.rgb[1]*j,a.rgb[2]*i+b.rgb[2]*j],l=a.alpha*d+b.alpha*(1-d);return new h(k,l)},greyscale:function(a){return f.desaturate(a,new g(100))},contrast:function(a,b,c,e){if(!a.rgb)return null;if("undefined"==typeof c&&(c=f.rgba(255,255,255,1)),"undefined"==typeof b&&(b=f.rgba(0,0,0,1)),b.luma()>c.luma()){var g=c;c=b,b=g}return e="undefined"==typeof e?.43:d(e),a.luma()<e?c:b},argb:function(a){return new j(a.toARGB())},color:function(a){if(a instanceof i&&/^#([a-f0-9]{6}|[a-f0-9]{3})$/i.test(a.value))return new h(a.value.slice(1));if(a instanceof h||(a=h.fromKeyword(a.value)))return a.value=void 0,a;throw{type:"Argument",message:"argument must be a color keyword or 3/6 digit hex e.g. #FFF"}},tint:function(a,b){return f.mix(f.rgb(255,255,255),a,b)},shade:function(a,b){return f.mix(f.rgb(0,0,0),a,b)}},k.addMultiple(f)},{"../tree/anonymous":45,"../tree/color":49,"../tree/dimension":55,"../tree/quoted":72,"./function-registry":21}],18:[function(a,b){b.exports=function(b){var c=a("../tree/quoted"),d=a("../tree/url"),e=a("./function-registry"),f=function(a,b){return new d(b,a.index,a.currentFileInfo).eval(a.context)},g=a("../logger");e.add("data-uri",function(a,e){e||(e=a,a=null);var h=a&&a.value,i=e.value,j=this.currentFileInfo,k=j.relativeUrls?j.currentDirectory:j.entryPath,l=i.indexOf("#"),m="";-1!==l&&(m=i.slice(l),i=i.slice(0,l));var n=b.getFileManager(i,k,this.context,b,!0);if(!n)return f(this,e);var o=!1;if(a)o=/;base64$/.test(h);else{if(h=b.mimeLookup(i),"image/svg+xml"===h)o=!1;else{var p=b.charsetLookup(h);o=["US-ASCII","UTF-8"].indexOf(p)<0}o&&(h+=";base64")}var q=n.loadFileSync(i,k,this.context,b);if(!q.contents)return g.warn("Skipped data-uri embedding of "+i+" because file not found"),f(this,e||a);var r=q.contents;if(o&&!b.encodeBase64)return f(this,e);r=o?b.encodeBase64(r):encodeURIComponent(r);var s="data:"+h+","+r+m,t=32768;return s.length>=t&&this.context.ieCompat!==!1?(g.warn("Skipped data-uri embedding of "+i+" because its size ("+s.length+" characters) exceeds IE8-safe "+t+" characters!"),f(this,e||a)):new d(new c('"'+s+'"',s,!1,this.index,this.currentFileInfo),this.index,this.currentFileInfo)})}},{"../logger":32,"../tree/quoted":72,"../tree/url":79,"./function-registry":21}],19:[function(a,b){var c=a("../tree/keyword"),d=a("./function-registry"),e={eval:function(){var a=this.value_,b=this.error_;if(b)throw b;return null!=a?a?c.True:c.False:void 0},value:function(a){this.value_=a},error:function(a){this.error_=a},reset:function(){this.value_=this.error_=null}};d.add("default",e.eval.bind(e)),b.exports=e},{"../tree/keyword":64,"./function-registry":21}],20:[function(a,b){var c=a("../tree/expression"),d=function(a,b,c,d){this.name=a.toLowerCase(),this.index=c,this.context=b,this.currentFileInfo=d,this.func=b.frames[0].functionRegistry.get(this.name)};d.prototype.isValid=function(){return Boolean(this.func)},d.prototype.call=function(a){return Array.isArray(a)&&(a=a.filter(function(a){return"Comment"===a.type?!1:!0}).map(function(a){if("Expression"===a.type){var b=a.value.filter(function(a){return"Comment"===a.type?!1:!0});return 1===b.length?b[0]:new c(b)}return a})),this.func.apply(this,a)},b.exports=d},{"../tree/expression":58}],21:[function(a,b){function c(a){return{_data:{},add:function(a,b){a=a.toLowerCase(),this._data.hasOwnProperty(a),this._data[a]=b},addMultiple:function(a){Object.keys(a).forEach(function(b){this.add(b,a[b])}.bind(this))},get:function(b){return this._data[b]||a&&a.get(b)},inherit:function(){return c(this)}}}b.exports=c(null)},{}],22:[function(a,b){b.exports=function(b){var c={functionRegistry:a("./function-registry"),functionCaller:a("./function-caller")};return a("./default"),a("./color"),a("./color-blending"),a("./data-uri")(b),a("./math"),a("./number"),a("./string"),a("./svg")(b),a("./types"),c}},{"./color":17,"./color-blending":16,"./data-uri":18,"./default":19,"./function-caller":20,"./function-registry":21,"./math":24,"./number":25,"./string":26,"./svg":27,"./types":28}],23:[function(a,b){var c=a("../tree/dimension"),d=function(){};d._math=function(a,b,d){if(!(d instanceof c))throw{type:"Argument",message:"argument must be a number"};return null==b?b=d.unit:d=d.unify(),new c(a(parseFloat(d.value)),b)},b.exports=d},{"../tree/dimension":55}],24:[function(a){var b=a("./function-registry"),c=a("./math-helper.js"),d={ceil:null,floor:null,sqrt:null,abs:null,tan:"",sin:"",cos:"",atan:"rad",asin:"rad",acos:"rad"};for(var e in d)d.hasOwnProperty(e)&&(d[e]=c._math.bind(null,Math[e],d[e]));d.round=function(a,b){var d="undefined"==typeof b?0:b.value;return c._math(function(a){return a.toFixed(d)},null,a)},b.addMultiple(d)},{"./function-registry":21,"./math-helper.js":23}],25:[function(a){var b=a("../tree/dimension"),c=a("../tree/anonymous"),d=a("./function-registry"),e=a("./math-helper.js"),f=function(a,d){switch(d=Array.prototype.slice.call(d),d.length){case 0:throw{type:"Argument",message:"one or more arguments required"}}var e,f,g,h,i,j,k,l,m=[],n={};for(e=0;d.length>e;e++)if(g=d[e],g instanceof b)if(h=""===g.unit.toString()&&void 0!==l?new b(g.value,l).unify():g.unify(),j=""===h.unit.toString()&&void 0!==k?k:h.unit.toString(),k=""!==j&&void 0===k||""!==j&&""===m[0].unify().unit.toString()?j:k,l=""!==j&&void 0===l?g.unit.toString():l,f=void 0!==n[""]&&""!==j&&j===k?n[""]:n[j],void 0!==f)i=""===m[f].unit.toString()&&void 0!==l?new b(m[f].value,l).unify():m[f].unify(),(a&&i.value>h.value||!a&&h.value>i.value)&&(m[f]=g);else{if(void 0!==k&&j!==k)throw{type:"Argument",message:"incompatible types"};n[j]=m.length,m.push(g)}else Array.isArray(d[e].value)&&Array.prototype.push.apply(d,Array.prototype.slice.call(d[e].value));return 1==m.length?m[0]:(d=m.map(function(a){return a.toCSS(this.context)}).join(this.context.compress?",":", "),new c((a?"min":"max")+"("+d+")"))};d.addMultiple({min:function(){return f(!0,arguments)},max:function(){return f(!1,arguments)},convert:function(a,b){return a.convertTo(b.value)},pi:function(){return new b(Math.PI)},mod:function(a,c){return new b(a.value%c.value,a.unit)},pow:function(a,c){if("number"==typeof a&&"number"==typeof c)a=new b(a),c=new b(c);else if(!(a instanceof b&&c instanceof b))throw{type:"Argument",message:"arguments must be numbers"};return new b(Math.pow(a.value,c.value),a.unit)},percentage:function(a){var b=e._math(function(a){return 100*a},"%",a);return b}})},{"../tree/anonymous":45,"../tree/dimension":55,"./function-registry":21,"./math-helper.js":23}],26:[function(a){var b=a("../tree/quoted"),c=a("../tree/anonymous"),d=a("../tree/javascript"),e=a("./function-registry");e.addMultiple({e:function(a){return new c(a instanceof d?a.evaluated:a.value)},escape:function(a){return new c(encodeURI(a.value).replace(/=/g,"%3D").replace(/:/g,"%3A").replace(/#/g,"%23").replace(/;/g,"%3B").replace(/\(/g,"%28").replace(/\)/g,"%29"))},replace:function(a,c,d,e){var f=a.value;return d="Quoted"===d.type?d.value:d.toCSS(),f=f.replace(new RegExp(c.value,e?e.value:""),d),new b(a.quote||"",f,a.escaped)},"%":function(a){for(var c=Array.prototype.slice.call(arguments,1),d=a.value,e=0;c.length>e;e++)d=d.replace(/%[sda]/i,function(a){var b="Quoted"===c[e].type&&a.match(/s/i)?c[e].value:c[e].toCSS();return a.match(/[A-Z]$/)?encodeURIComponent(b):b});return d=d.replace(/%%/g,"%"),new b(a.quote||"",d,a.escaped)}})},{"../tree/anonymous":45,"../tree/javascript":62,"../tree/quoted":72,"./function-registry":21}],27:[function(a,b){b.exports=function(){var b=a("../tree/dimension"),c=a("../tree/color"),d=a("../tree/expression"),e=a("../tree/quoted"),f=a("../tree/url"),g=a("./function-registry");g.add("svg-gradient",function(a){function g(){throw{type:"Argument",message:"svg-gradient expects direction, start_color [start_position], [color position,]..., end_color [end_position] or direction, color list"}}var h,i,j,k,l,m,n,o,p="linear",q='x="0" y="0" width="1" height="1"',r={compress:!1},s=a.toCSS(r);switch(2==arguments.length?(arguments[1].value.length<2&&g(),h=arguments[1].value):arguments.length<3?g():h=Array.prototype.slice.call(arguments,1),s){case"to bottom":i='x1="0%" y1="0%" x2="0%" y2="100%"';break;case"to right":i='x1="0%" y1="0%" x2="100%" y2="0%"';break;case"to bottom right":i='x1="0%" y1="0%" x2="100%" y2="100%"';break;case"to top right":i='x1="0%" y1="100%" x2="100%" y2="0%"';break;case"ellipse":case"ellipse at center":p="radial",i='cx="50%" cy="50%" r="75%"',q='x="-50" y="-50" width="101" height="101"';break;default:throw{type:"Argument",message:"svg-gradient direction must be 'to bottom', 'to right', 'to bottom right', 'to top right' or 'ellipse at center'"
}}for(j='<?xml version="1.0" ?><svg xmlns="http://www.w3.org/2000/svg" version="1.1" width="100%" height="100%" viewBox="0 0 1 1" preserveAspectRatio="none"><'+p+'Gradient id="gradient" gradientUnits="userSpaceOnUse" '+i+">",k=0;h.length>k;k+=1)h[k]instanceof d?(l=h[k].value[0],m=h[k].value[1]):(l=h[k],m=void 0),l instanceof c&&((0===k||k+1===h.length)&&void 0===m||m instanceof b)||g(),n=m?m.toCSS(r):0===k?"0%":"100%",o=l.alpha,j+='<stop offset="'+n+'" stop-color="'+l.toRGB()+'"'+(1>o?' stop-opacity="'+o+'"':"")+"/>";return j+="</"+p+"Gradient><rect "+q+' fill="url(#gradient)" /></svg>',j=encodeURIComponent(j),j="data:image/svg+xml,"+j,new f(new e("'"+j+"'",j,!1,this.index,this.currentFileInfo),this.index,this.currentFileInfo)})}},{"../tree/color":49,"../tree/dimension":55,"../tree/expression":58,"../tree/quoted":72,"../tree/url":79,"./function-registry":21}],28:[function(a){var b=a("../tree/keyword"),c=a("../tree/detached-ruleset"),d=a("../tree/dimension"),e=a("../tree/color"),f=a("../tree/quoted"),g=a("../tree/anonymous"),h=a("../tree/url"),i=a("../tree/operation"),j=a("./function-registry"),k=function(a,c){return a instanceof c?b.True:b.False},l=function(a,c){if(void 0===c)throw{type:"Argument",message:"missing the required second argument to isunit."};if(c="string"==typeof c.value?c.value:c,"string"!=typeof c)throw{type:"Argument",message:"Second argument to isunit should be a unit or a string."};return a instanceof d&&a.unit.is(c)?b.True:b.False},m=function(a){var b=Array.isArray(a.value)?a.value:Array(a);return b};j.addMultiple({isruleset:function(a){return k(a,c)},iscolor:function(a){return k(a,e)},isnumber:function(a){return k(a,d)},isstring:function(a){return k(a,f)},iskeyword:function(a){return k(a,b)},isurl:function(a){return k(a,h)},ispixel:function(a){return l(a,"px")},ispercentage:function(a){return l(a,"%")},isem:function(a){return l(a,"em")},isunit:l,unit:function(a,c){if(!(a instanceof d))throw{type:"Argument",message:"the first argument to unit must be a number"+(a instanceof i?". Have you forgotten parenthesis?":"")};return c=c?c instanceof b?c.value:c.toCSS():"",new d(a.value,c)},"get-unit":function(a){return new g(a.unit)},extract:function(a,b){return b=b.value-1,m(a)[b]},length:function(a){return new d(m(a).length)}})},{"../tree/anonymous":45,"../tree/color":49,"../tree/detached-ruleset":54,"../tree/dimension":55,"../tree/keyword":64,"../tree/operation":70,"../tree/quoted":72,"../tree/url":79,"./function-registry":21}],29:[function(a,b){var c=a("./contexts"),d=a("./parser/parser"),e=a("./plugins/function-importer");b.exports=function(a){var b=function(a,b){this.rootFilename=b.filename,this.paths=a.paths||[],this.contents={},this.contentsIgnoredChars={},this.mime=a.mime,this.error=null,this.context=a,this.queue=[],this.files={}};return b.prototype.push=function(b,f,g,h,i){var j=this;this.queue.push(b);var k=function(a,c,d){j.queue.splice(j.queue.indexOf(b),1);var e=d===j.rootFilename;h.optional&&a?i(null,{rules:[]},!1,null):(j.files[d]=c,a&&!j.error&&(j.error=a),i(a,c,e,d))},l={relativeUrls:this.context.relativeUrls,entryPath:g.entryPath,rootpath:g.rootpath,rootFilename:g.rootFilename},m=a.getFileManager(b,g.currentDirectory,this.context,a);if(!m)return void k({message:"Could not find a file-manager for "+b});f&&(b=m.tryAppendExtension(b,h.plugin?".js":".less"));var n=function(a){var b=a.filename,f=a.contents.replace(/^\uFEFF/,"");l.currentDirectory=m.getPath(b),l.relativeUrls&&(l.rootpath=m.join(j.context.rootpath||"",m.pathDiff(l.currentDirectory,l.entryPath)),!m.isPathAbsolute(l.rootpath)&&m.alwaysMakePathsAbsolute()&&(l.rootpath=m.join(l.entryPath,l.rootpath))),l.filename=b;var i=new c.Parse(j.context);i.processImports=!1,j.contents[b]=f,(g.reference||h.reference)&&(l.reference=!0),h.plugin?new e(i,l).eval(f,function(a,c){k(a,c,b)}):h.inline?k(null,f,b):new d(i,j,l).parse(f,function(a,c){k(a,c,b)})},o=m.loadFile(b,g.currentDirectory,this.context,a,function(a,b){a?k(a):n(b)});o&&o.then(n,k)},b}},{"./contexts":10,"./parser/parser":37,"./plugins/function-importer":39}],30:[function(a,b){b.exports=function(b,c){var d,e,f,g,h,i={version:[2,5,3],data:a("./data"),tree:a("./tree"),Environment:h=a("./environment/environment"),AbstractFileManager:a("./environment/abstract-file-manager"),environment:b=new h(b,c),visitors:a("./visitors"),Parser:a("./parser/parser"),functions:a("./functions")(b),contexts:a("./contexts"),SourceMapOutput:d=a("./source-map-output")(b),SourceMapBuilder:e=a("./source-map-builder")(d,b),ParseTree:f=a("./parse-tree")(e),ImportManager:g=a("./import-manager")(b),render:a("./render")(b,f,g),parse:a("./parse")(b,f,g),LessError:a("./less-error"),transformTree:a("./transform-tree"),utils:a("./utils"),PluginManager:a("./plugin-manager"),logger:a("./logger")};return i}},{"./contexts":10,"./data":12,"./environment/abstract-file-manager":14,"./environment/environment":15,"./functions":22,"./import-manager":29,"./less-error":31,"./logger":32,"./parse":34,"./parse-tree":33,"./parser/parser":37,"./plugin-manager":38,"./render":40,"./source-map-builder":41,"./source-map-output":42,"./transform-tree":43,"./tree":61,"./utils":82,"./visitors":86}],31:[function(a,b){var c=a("./utils"),d=b.exports=function(a,b,d){Error.call(this);var e=a.filename||d;if(b&&e){var f=b.contents[e],g=c.getLocation(a.index,f),h=g.line,i=g.column,j=a.call&&c.getLocation(a.call,f).line,k=f.split("\n");this.type=a.type||"Syntax",this.filename=e,this.index=a.index,this.line="number"==typeof h?h+1:null,this.callLine=j+1,this.callExtract=k[j],this.column=i,this.extract=[k[h-1],k[h],k[h+1]]}this.message=a.message,this.stack=a.stack};if("undefined"==typeof Object.create){var e=function(){};e.prototype=Error.prototype,d.prototype=new e}else d.prototype=Object.create(Error.prototype);d.prototype.constructor=d},{"./utils":82}],32:[function(a,b){b.exports={error:function(a){this._fireEvent("error",a)},warn:function(a){this._fireEvent("warn",a)},info:function(a){this._fireEvent("info",a)},debug:function(a){this._fireEvent("debug",a)},addListener:function(a){this._listeners.push(a)},removeListener:function(a){for(var b=0;this._listeners.length>b;b++)if(this._listeners[b]===a)return void this._listeners.splice(b,1)},_fireEvent:function(a,b){for(var c=0;this._listeners.length>c;c++){var d=this._listeners[c][a];d&&d(b)}},_listeners:[]}},{}],33:[function(a,b){var c=a("./less-error"),d=a("./transform-tree"),e=a("./logger");b.exports=function(a){var b=function(a,b){this.root=a,this.imports=b};return b.prototype.toCSS=function(b){var f,g,h={};try{f=d(this.root,b)}catch(i){throw new c(i,this.imports)}try{var j=Boolean(b.compress);j&&e.warn("The compress option has been deprecated. We recommend you use a dedicated css minifier, for instance see less-plugin-clean-css.");var k={compress:j,dumpLineNumbers:b.dumpLineNumbers,strictUnits:Boolean(b.strictUnits),numPrecision:8};b.sourceMap?(g=new a(b.sourceMap),h.css=g.toCSS(f,k,this.imports)):h.css=f.toCSS(k)}catch(i){throw new c(i,this.imports)}if(b.pluginManager)for(var l=b.pluginManager.getPostProcessors(),m=0;l.length>m;m++)h.css=l[m].process(h.css,{sourceMap:g,options:b,imports:this.imports});b.sourceMap&&(h.map=g.getExternalSourceMap()),h.imports=[];for(var n in this.imports.files)this.imports.files.hasOwnProperty(n)&&n!==this.imports.rootFilename&&h.imports.push(n);return h},b}},{"./less-error":31,"./logger":32,"./transform-tree":43}],34:[function(a,b){var c,d=a("./contexts"),e=a("./parser/parser"),f=a("./plugin-manager");b.exports=function(b,g,h){var i=function(b,g,j){if(g=g||{},"function"==typeof g&&(j=g,g={}),!j){c||(c="undefined"==typeof Promise?a("promise"):Promise);var k=this;return new c(function(a,c){i.call(k,b,g,function(b,d){b?c(b):a(d)})})}var l,m,n=new f(this);if(n.addPlugins(g.plugins),g.pluginManager=n,l=new d.Parse(g),g.rootFileInfo)m=g.rootFileInfo;else{var o=g.filename||"input",p=o.replace(/[^\/\\]*$/,"");m={filename:o,relativeUrls:l.relativeUrls,rootpath:l.rootpath||"",currentDirectory:p,entryPath:p,rootFilename:o},m.rootpath&&"/"!==m.rootpath.slice(-1)&&(m.rootpath+="/")}var q=new h(l,m);new e(l,q,m).parse(b,function(a,b){return a?j(a):void j(null,b,q,g)},g)};return i}},{"./contexts":10,"./parser/parser":37,"./plugin-manager":38,promise:void 0}],35:[function(a,b){b.exports=function(a,b){function c(b){var c=h-q;512>c&&!b||!c||(p.push(a.slice(q,h+1)),q=h+1)}var d,e,f,g,h,i,j,k,l,m=a.length,n=0,o=0,p=[],q=0;for(h=0;m>h;h++)if(j=a.charCodeAt(h),!(j>=97&&122>=j||34>j))switch(j){case 40:o++,e=h;continue;case 41:if(--o<0)return b("missing opening `(`",h);continue;case 59:o||c();continue;case 123:n++,d=h;continue;case 125:if(--n<0)return b("missing opening `{`",h);n||o||c();continue;case 92:if(m-1>h){h++;continue}return b("unescaped `\\`",h);case 34:case 39:case 96:for(l=0,i=h,h+=1;m>h;h++)if(k=a.charCodeAt(h),!(k>96)){if(k==j){l=1;break}if(92==k){if(h==m-1)return b("unescaped `\\`",h);h++}}if(l)continue;return b("unmatched `"+String.fromCharCode(j)+"`",i);case 47:if(o||h==m-1)continue;if(k=a.charCodeAt(h+1),47==k)for(h+=2;m>h&&(k=a.charCodeAt(h),!(13>=k)||10!=k&&13!=k);h++);else if(42==k){for(f=i=h,h+=2;m-1>h&&(k=a.charCodeAt(h),125==k&&(g=h),42!=k||47!=a.charCodeAt(h+1));h++);if(h==m-1)return b("missing closing `*/`",i);h++}continue;case 42:if(m-1>h&&47==a.charCodeAt(h+1))return b("unmatched `/*`",h);continue}return 0!==n?f>d&&g>f?b("missing closing `}` or `*/`",d):b("missing closing `}`",d):0!==o?b("missing closing `)`",e):(c(!0),p)}},{}],36:[function(a,b){var c=a("./chunker");b.exports=function(){var a,b,d,e,f,g,h,i=[],j={};j.save=function(){h=j.i,i.push({current:g,i:j.i,j:b})},j.restore=function(a){(j.i>d||j.i===d&&a&&!e)&&(d=j.i,e=a);var c=i.pop();g=c.current,h=j.i=c.i,b=c.j},j.forget=function(){i.pop()},j.isWhitespace=function(b){var c=j.i+(b||0),d=a.charCodeAt(c);return d===k||d===n||d===l||d===m},j.$re=function(a){j.i>h&&(g=g.slice(j.i-h),h=j.i);var b=a.exec(g);return b?(s(b[0].length),"string"==typeof b?b:1===b.length?b[0]:b):null},j.$char=function(b){return a.charAt(j.i)!==b?null:(s(1),b)},j.$str=function(b){for(var c=b.length,d=0;c>d;d++)if(a.charAt(j.i+d)!==b.charAt(d))return null;return s(c),b},j.$quoted=function(){var b=a.charAt(j.i);if("'"===b||'"'===b){for(var c=a.length,d=j.i,e=1;c>e+d;e++){var f=a.charAt(e+d);switch(f){case"\\":e++;continue;case"\r":case"\n":break;case b:var g=a.substr(d,e+1);return s(e+1),g}}return null}};var k=32,l=9,m=10,n=13,o=43,p=44,q=47,r=57;j.autoCommentAbsorb=!0,j.commentStore=[],j.finished=!1;var s=function(c){for(var d,e,i,o=j.i,p=b,r=j.i-h,t=j.i+g.length-r,u=j.i+=c,v=a;t>j.i;j.i++){if(d=v.charCodeAt(j.i),j.autoCommentAbsorb&&d===q){if(e=v.charAt(j.i+1),"/"===e){i={index:j.i,isLineComment:!0};var w=v.indexOf("\n",j.i+2);0>w&&(w=t),j.i=w,i.text=v.substr(i.i,j.i-i.i),j.commentStore.push(i);continue}if("*"===e){var x=v.indexOf("*/",j.i+2);if(x>=0){i={index:j.i,text:v.substr(j.i,x+2-j.i),isLineComment:!1},j.i+=i.text.length-1,j.commentStore.push(i);continue}}break}if(d!==k&&d!==m&&d!==l&&d!==n)break}if(g=g.slice(c+j.i-u+r),h=j.i,!g.length){if(f.length-1>b)return g=f[++b],s(0),!0;j.finished=!0}return o!==j.i||p!==b};return j.peek=function(b){if("string"==typeof b){for(var c=0;b.length>c;c++)if(a.charAt(j.i+c)!==b.charAt(c))return!1;return!0}return b.test(g)},j.peekChar=function(b){return a.charAt(j.i)===b},j.currentChar=function(){return a.charAt(j.i)},j.getInput=function(){return a},j.peekNotNumeric=function(){var b=a.charCodeAt(j.i);return b>r||o>b||b===q||b===p},j.start=function(e,i,k){a=e,j.i=b=h=d=0,f=i?c(e,k):[e],g=f[0],s(0)},j.end=function(){var b,c=j.i>=a.length;return d>j.i&&(b=e,j.i=d),{isFinished:c,furthest:j.i,furthestPossibleErrorMessage:b,furthestReachedEnd:j.i>=a.length-1,furthestChar:a[j.i]}},j}},{"./chunker":35}],37:[function(a,b){var c=a("../less-error"),d=a("../tree"),e=a("../visitors"),f=a("./parser-input"),g=a("../utils"),h=function i(a,b,h){function j(a,b){var c="[object Function]"===Object.prototype.toString.call(a)?a.call(n):o.$re(a);return c?c:void l(b||("string"==typeof a?"expected '"+a+"' got '"+o.currentChar()+"'":"unexpected token"))}function k(a,b){return o.$char(a)?a:void l(b||"expected '"+a+"' got '"+o.currentChar()+"'")}function l(a,d){throw new c({index:o.i,filename:h.filename,type:d||"Syntax",message:a},b)}function m(a){var b=h.filename;return{lineNumber:g.getLocation(a,o.getInput()).line+1,fileName:b}}var n,o=f();return{parse:function(f,g,j){var k,l,m,n,p=null,q="";if(l=j&&j.globalVars?i.serializeVars(j.globalVars)+"\n":"",m=j&&j.modifyVars?"\n"+i.serializeVars(j.modifyVars):"",a.pluginManager)for(var r=a.pluginManager.getPreProcessors(),s=0;r.length>s;s++)f=r[s].process(f,{context:a,imports:b,fileInfo:h});(l||j&&j.banner)&&(q=(j&&j.banner?j.banner:"")+l,n=b.contentsIgnoredChars,n[h.filename]=n[h.filename]||0,n[h.filename]+=q.length),f=f.replace(/\r\n?/g,"\n"),f=q+f.replace(/^\uFEFF/,"")+m,b.contents[h.filename]=f;try{o.start(f,a.chunkInput,function(a,d){throw new c({index:d,type:"Parse",message:a,filename:h.filename},b)}),k=new d.Ruleset(null,this.parsers.primary()),k.root=!0,k.firstRoot=!0}catch(t){return g(new c(t,b,h.filename))}var u=o.end();if(!u.isFinished){var v=u.furthestPossibleErrorMessage;v||(v="Unrecognised input","}"===u.furthestChar?v+=". Possibly missing opening '{'":")"===u.furthestChar?v+=". Possibly missing opening '('":u.furthestReachedEnd&&(v+=". Possibly missing something")),p=new c({type:"Parse",message:v,index:u.furthest,filename:h.filename},b)}var w=function(a){return a=p||a||b.error,a?(a instanceof c||(a=new c(a,b,h.filename)),g(a)):g(null,k)};return a.processImports===!1?w():void new e.ImportVisitor(b,w).run(k)},parsers:n={primary:function(){for(var a,b=this.mixin,c=[];;){for(;;){if(a=this.comment(),!a)break;c.push(a)}if(o.finished)break;if(o.peek("}"))break;if(a=this.extendRule())c=c.concat(a);else if(a=b.definition()||this.rule()||this.ruleset()||b.call()||this.rulesetCall()||this.directive())c.push(a);else{for(var d=!1;o.$char(";");)d=!0;if(!d)break}}return c},comment:function(){if(o.commentStore.length){var a=o.commentStore.shift();return new d.Comment(a.text,a.isLineComment,a.index,h)}},entities:{quoted:function(){var a,b=o.i,c=!1;return o.save(),o.$char("~")&&(c=!0),(a=o.$quoted())?(o.forget(),new d.Quoted(a.charAt(0),a.substr(1,a.length-2),c,b,h)):void o.restore()},keyword:function(){var a=o.$char("%")||o.$re(/^[_A-Za-z-][_A-Za-z0-9-]*/);return a?d.Color.fromKeyword(a)||new d.Keyword(a):void 0},call:function(){var a,b,c,e,f=o.i;if(!o.peek(/^url\(/i))return o.save(),(a=o.$re(/^([\w-]+|%|progid:[\w\.]+)\(/))?(a=a[1],b=a.toLowerCase(),"alpha"===b&&(e=n.alpha())?(o.forget(),e):(c=this.arguments(),o.$char(")")?(o.forget(),new d.Call(a,c,f,h)):void o.restore("Could not parse call arguments or missing ')'"))):void o.forget()},arguments:function(){for(var a,b=[];;){if(a=this.assignment()||n.expression(),!a)break;if(b.push(a),!o.$char(","))break}return b},literal:function(){return this.dimension()||this.color()||this.quoted()||this.unicodeDescriptor()},assignment:function(){var a,b;return o.save(),(a=o.$re(/^\w+(?=\s?=)/i))&&o.$char("=")&&(b=n.entity())?(o.forget(),new d.Assignment(a,b)):void o.restore()},url:function(){var a,b=o.i;return o.autoCommentAbsorb=!1,o.$str("url(")?(a=this.quoted()||this.variable()||o.$re(/^(?:(?:\\[\(\)'"])|[^\(\)'"])+/)||"",o.autoCommentAbsorb=!0,k(")"),new d.URL(null!=a.value||a instanceof d.Variable?a:new d.Anonymous(a),b,h)):void(o.autoCommentAbsorb=!0)},variable:function(){var a,b=o.i;return"@"===o.currentChar()&&(a=o.$re(/^@@?[\w-]+/))?new d.Variable(a,b,h):void 0},variableCurly:function(){var a,b=o.i;return"@"===o.currentChar()&&(a=o.$re(/^@\{([\w-]+)\}/))?new d.Variable("@"+a[1],b,h):void 0},color:function(){var a;if("#"===o.currentChar()&&(a=o.$re(/^#([A-Fa-f0-9]{6}|[A-Fa-f0-9]{3})/))){var b=a.input.match(/^#([\w]+).*/);return b=b[1],b.match(/^[A-Fa-f0-9]+$/)||l("Invalid HEX color code"),new d.Color(a[1],void 0,"#"+b)}},dimension:function(){if(!o.peekNotNumeric()){var a=o.$re(/^([+-]?\d*\.?\d+)(%|[a-z]+)?/i);return a?new d.Dimension(a[1],a[2]):void 0}},unicodeDescriptor:function(){var a;return a=o.$re(/^U\+[0-9a-fA-F?]+(\-[0-9a-fA-F?]+)?/),a?new d.UnicodeDescriptor(a[0]):void 0},javascript:function(){var a,b=o.i;o.save();var c=o.$char("~"),e=o.$char("`");return e?(a=o.$re(/^[^`]*`/))?(o.forget(),new d.JavaScript(a.substr(0,a.length-1),Boolean(c),b,h)):void o.restore("invalid javascript definition"):void o.restore()}},variable:function(){var a;return"@"===o.currentChar()&&(a=o.$re(/^(@[\w-]+)\s*:/))?a[1]:void 0},rulesetCall:function(){var a;return"@"===o.currentChar()&&(a=o.$re(/^(@[\w-]+)\s*\(\s*\)\s*;/))?new d.RulesetCall(a[1]):void 0},extend:function(a){var b,c,e,f,g,h=o.i;if(o.$str(a?"&:extend(":":extend(")){do{for(e=null,b=null;!(e=o.$re(/^(all)(?=\s*(\)|,))/))&&(c=this.element());)b?b.push(c):b=[c];e=e&&e[1],b||l("Missing target selector for :extend()."),g=new d.Extend(new d.Selector(b),e,h),f?f.push(g):f=[g]}while(o.$char(","));return j(/^\)/),a&&j(/^;/),f}},extendRule:function(){return this.extend(!0)},mixin:{call:function(){var a,b,c,e,f,g,i=o.currentChar(),j=!1,l=o.i;if("."===i||"#"===i){for(o.save();;){if(a=o.i,e=o.$re(/^[#.](?:[\w-]|\\(?:[A-Fa-f0-9]{1,6} ?|[^A-Fa-f0-9]))+/),!e)break;c=new d.Element(f,e,a,h),b?b.push(c):b=[c],f=o.$char(">")}return b&&(o.$char("(")&&(g=this.args(!0).args,k(")")),n.important()&&(j=!0),n.end())?(o.forget(),new d.mixin.Call(b,g,l,h,j)):void o.restore()}},args:function(a){var b,c,e,f,g,h,i,j=n.entities,k={args:null,variadic:!1},m=[],p=[],q=[];for(o.save();;){if(a)h=n.detachedRuleset()||n.expression();else{if(o.commentStore.length=0,o.$str("...")){k.variadic=!0,o.$char(";")&&!b&&(b=!0),(b?p:q).push({variadic:!0});break}h=j.variable()||j.literal()||j.keyword()}if(!h)break;f=null,h.throwAwayComments&&h.throwAwayComments(),g=h;var r=null;if(a?h.value&&1==h.value.length&&(r=h.value[0]):r=h,r&&r instanceof d.Variable)if(o.$char(":")){if(m.length>0&&(b&&l("Cannot mix ; and , as delimiter types"),c=!0),g=n.detachedRuleset()||n.expression(),!g){if(!a)return o.restore(),k.args=[],k;l("could not understand value for named argument")}f=e=r.name}else if(o.$str("...")){if(!a){k.variadic=!0,o.$char(";")&&!b&&(b=!0),(b?p:q).push({name:h.name,variadic:!0});break}i=!0}else a||(e=f=r.name,g=null);g&&m.push(g),q.push({name:f,value:g,expand:i}),o.$char(",")||(o.$char(";")||b)&&(c&&l("Cannot mix ; and , as delimiter types"),b=!0,m.length>1&&(g=new d.Value(m)),p.push({name:e,value:g,expand:i}),e=null,m=[],c=!1)}return o.forget(),k.args=b?p:q,k},definition:function(){var a,b,c,e,f=[],g=!1;if(!("."!==o.currentChar()&&"#"!==o.currentChar()||o.peek(/^[^{]*\}/)))if(o.save(),b=o.$re(/^([#.](?:[\w-]|\\(?:[A-Fa-f0-9]{1,6} ?|[^A-Fa-f0-9]))+)\s*\(/)){a=b[1];var h=this.args(!1);if(f=h.args,g=h.variadic,!o.$char(")"))return void o.restore("Missing closing ')'");if(o.commentStore.length=0,o.$str("when")&&(e=j(n.conditions,"expected condition")),c=n.block())return o.forget(),new d.mixin.Definition(a,f,c,e,g);o.restore()}else o.forget()}},entity:function(){var a=this.entities;return this.comment()||a.literal()||a.variable()||a.url()||a.call()||a.keyword()||a.javascript()},end:function(){return o.$char(";")||o.peek("}")},alpha:function(){var a;if(o.$re(/^opacity=/i))return a=o.$re(/^\d+/),a||(a=j(this.entities.variable,"Could not parse alpha")),k(")"),new d.Alpha(a)},element:function(){var a,b,c,e=o.i;return b=this.combinator(),a=o.$re(/^(?:\d+\.\d+|\d+)%/)||o.$re(/^(?:[.#]?|:*)(?:[\w-]|[^\x00-\x9f]|\\(?:[A-Fa-f0-9]{1,6} ?|[^A-Fa-f0-9]))+/)||o.$char("*")||o.$char("&")||this.attribute()||o.$re(/^\([^&()@]+\)/)||o.$re(/^[\.#:](?=@)/)||this.entities.variableCurly(),a||(o.save(),o.$char("(")?(c=this.selector())&&o.$char(")")?(a=new d.Paren(c),o.forget()):o.restore("Missing closing ')'"):o.forget()),a?new d.Element(b,a,e,h):void 0},combinator:function(){var a=o.currentChar();if("/"===a){o.save();var b=o.$re(/^\/[a-z]+\//i);if(b)return o.forget(),new d.Combinator(b);o.restore()}if(">"===a||"+"===a||"~"===a||"|"===a||"^"===a){for(o.i++,"^"===a&&"^"===o.currentChar()&&(a="^^",o.i++);o.isWhitespace();)o.i++;return new d.Combinator(a)}return new d.Combinator(o.isWhitespace(-1)?" ":null)},lessSelector:function(){return this.selector(!0)},selector:function(a){for(var b,c,e,f,g,i,k,m=o.i;(a&&(c=this.extend())||a&&(i=o.$str("when"))||(f=this.element()))&&(i?k=j(this.conditions,"expected condition"):k?l("CSS guard can only be used at the end of selector"):c?g=g?g.concat(c):c:(g&&l("Extend can only be used at the end of selector"),e=o.currentChar(),b?b.push(f):b=[f],f=null),"{"!==e&&"}"!==e&&";"!==e&&","!==e&&")"!==e););return b?new d.Selector(b,g,k,m,h):void(g&&l("Extend must be used to extend a selector, it cannot be used on its own"))},attribute:function(){if(o.$char("[")){var a,b,c,e=this.entities;return(a=e.variableCurly())||(a=j(/^(?:[_A-Za-z0-9-\*]*\|)?(?:[_A-Za-z0-9-]|\\.)+/)),c=o.$re(/^[|~*$^]?=/),c&&(b=e.quoted()||o.$re(/^[0-9]+%/)||o.$re(/^[\w-]+/)||e.variableCurly()),k("]"),new d.Attribute(a,c,b)}},block:function(){var a;return o.$char("{")&&(a=this.primary())&&o.$char("}")?a:void 0},blockRuleset:function(){var a=this.block();return a&&(a=new d.Ruleset(null,a)),a},detachedRuleset:function(){var a=this.blockRuleset();return a?new d.DetachedRuleset(a):void 0},ruleset:function(){var b,c,e,f;for(o.save(),a.dumpLineNumbers&&(f=m(o.i));;){if(c=this.lessSelector(),!c)break;if(b?b.push(c):b=[c],o.commentStore.length=0,c.condition&&b.length>1&&l("Guards are only currently allowed on a single selector."),!o.$char(","))break;c.condition&&l("Guards are only currently allowed on a single selector."),o.commentStore.length=0}if(b&&(e=this.block())){o.forget();var g=new d.Ruleset(b,e,a.strictImports);return a.dumpLineNumbers&&(g.debugInfo=f),g}o.restore()},rule:function(b){var c,e,f,g,i,j=o.i,k=o.currentChar();if("."!==k&&"#"!==k&&"&"!==k&&":"!==k)if(o.save(),c=this.variable()||this.ruleProperty()){if(i="string"==typeof c,i&&(e=this.detachedRuleset()),o.commentStore.length=0,!e){g=!i&&c.length>1&&c.pop().value;var l=!b&&(a.compress||i);if(l&&(e=this.value()),!e&&(e=this.anonymousValue()))return o.forget(),new d.Rule(c,e,!1,g,j,h);l||e||(e=this.value()),f=this.important()}if(e&&this.end())return o.forget(),new d.Rule(c,e,f,g,j,h);if(o.restore(),e&&!b)return this.rule(!0)}else o.forget()},anonymousValue:function(){var a=o.$re(/^([^@+\/'"*`(;{}-]*);/);return a?new d.Anonymous(a[1]):void 0},"import":function(){var a,b,c=o.i,e=o.$re(/^@import?\s+/);if(e){var f=(e?this.importOptions():null)||{};if(a=this.entities.quoted()||this.entities.url())return b=this.mediaFeatures(),o.$char(";")||(o.i=c,l("missing semi-colon or unrecognised media features on import")),b=b&&new d.Value(b),new d.Import(a,b,f,c,h);o.i=c,l("malformed import statement")}},importOptions:function(){var a,b,c,d={};if(!o.$char("("))return null;do if(a=this.importOption()){switch(b=a,c=!0,b){case"css":b="less",c=!1;break;case"once":b="multiple",c=!1}if(d[b]=c,!o.$char(","))break}while(a);return k(")"),d},importOption:function(){var a=o.$re(/^(less|css|multiple|once|inline|reference|optional)/);return a?a[1]:void 0},mediaFeature:function(){var a,b,c=this.entities,e=[];o.save();do if(a=c.keyword()||c.variable())e.push(a);else if(o.$char("(")){if(b=this.property(),a=this.value(),!o.$char(")"))return o.restore("Missing closing ')'"),null;if(b&&a)e.push(new d.Paren(new d.Rule(b,a,null,null,o.i,h,!0)));else{if(!a)return o.restore("badly formed media feature definition"),null;e.push(new d.Paren(a))}}while(a);return o.forget(),e.length>0?new d.Expression(e):void 0},mediaFeatures:function(){var a,b=this.entities,c=[];do if(a=this.mediaFeature()){if(c.push(a),!o.$char(","))break}else if(a=b.variable(),a&&(c.push(a),!o.$char(",")))break;while(a);return c.length>0?c:null},media:function(){var b,c,e,f;return a.dumpLineNumbers&&(f=m(o.i)),o.save(),o.$str("@media")?(b=this.mediaFeatures(),(c=this.block())?(o.forget(),e=new d.Media(c,b,o.i,h),a.dumpLineNumbers&&(e.debugInfo=f),e):void o.restore("media definitions require block statements after any features")):void o.restore()},plugin:function(){var a,b=o.i,c=o.$re(/^@plugin?\s+/);if(c){var e={plugin:!0};if(a=this.entities.quoted()||this.entities.url())return o.$char(";")||(o.i=b,l("missing semi-colon on plugin")),new d.Import(a,null,e,b,h);o.i=b,l("malformed plugin statement")}},directive:function(){var b,c,e,f,g,i,j,k=o.i,n=!0,p=!0;if("@"===o.currentChar()){if(c=this["import"]()||this.plugin()||this.media())return c;if(o.save(),b=o.$re(/^@[a-z-]+/)){switch(f=b,"-"==b.charAt(1)&&b.indexOf("-",2)>0&&(f="@"+b.slice(b.indexOf("-",2)+1)),f){case"@counter-style":g=!0,n=!0;break;case"@charset":g=!0,n=!1;break;case"@namespace":i=!0,n=!1;break;case"@keyframes":g=!0;break;case"@host":case"@page":j=!0;break;case"@document":case"@supports":j=!0,p=!1}return o.commentStore.length=0,g?(c=this.entity(),c||l("expected "+b+" identifier")):i?(c=this.expression(),c||l("expected "+b+" expression")):j&&(c=(o.$re(/^[^{;]+/)||"").trim(),c&&(c=new d.Anonymous(c))),n&&(e=this.blockRuleset()),e||!n&&c&&o.$char(";")?(o.forget(),new d.Directive(b,c,e,k,h,a.dumpLineNumbers?m(k):null,!1,p)):void o.restore("directive options not recognised")}}},value:function(){var a,b=[];do if(a=this.expression(),a&&(b.push(a),!o.$char(",")))break;while(a);return b.length>0?new d.Value(b):void 0},important:function(){return"!"===o.currentChar()?o.$re(/^! *important/):void 0},sub:function(){var a,b;return o.save(),o.$char("(")?(a=this.addition(),a&&o.$char(")")?(o.forget(),b=new d.Expression([a]),b.parens=!0,b):void o.restore("Expected ')'")):void o.restore()},multiplication:function(){var a,b,c,e,f;if(a=this.operand()){for(f=o.isWhitespace(-1);;){if(o.peek(/^\/[*\/]/))break;if(o.save(),c=o.$char("/")||o.$char("*"),!c){o.forget();break}if(b=this.operand(),!b){o.restore();break}o.forget(),a.parensInOp=!0,b.parensInOp=!0,e=new d.Operation(c,[e||a,b],f),f=o.isWhitespace(-1)}return e||a}},addition:function(){var a,b,c,e,f;if(a=this.multiplication()){for(f=o.isWhitespace(-1);;){if(c=o.$re(/^[-+]\s+/)||!f&&(o.$char("+")||o.$char("-")),!c)break;if(b=this.multiplication(),!b)break;a.parensInOp=!0,b.parensInOp=!0,e=new d.Operation(c,[e||a,b],f),f=o.isWhitespace(-1)}return e||a}},conditions:function(){var a,b,c,e=o.i;if(a=this.condition()){for(;;){if(!o.peek(/^,\s*(not\s*)?\(/)||!o.$char(","))break;if(b=this.condition(),!b)break;c=new d.Condition("or",c||a,b,e)}return c||a}},condition:function(){var a,b,c,e,f=this.entities,g=o.i,h=!1;return o.$str("not")&&(h=!0),k("("),a=this.addition()||f.keyword()||f.quoted(),a?(o.$char(">")?e=o.$char("=")?">=":">":o.$char("<")?e=o.$char("=")?"<=":"<":o.$char("=")&&(e=o.$char(">")?"=>":o.$char("<")?"=<":"="),e?(b=this.addition()||f.keyword()||f.quoted(),b?c=new d.Condition(e,a,b,g,h):l("expected expression")):c=new d.Condition("=",a,new d.Keyword("true"),g,h),k(")"),o.$str("and")?new d.Condition("and",c,this.condition()):c):void 0},operand:function(){var a,b=this.entities;o.peek(/^-[@\(]/)&&(a=o.$char("-"));var c=this.sub()||b.dimension()||b.color()||b.variable()||b.call();return a&&(c.parensInOp=!0,c=new d.Negative(c)),c},expression:function(){var a,b,c=[];do a=this.comment(),a?c.push(a):(a=this.addition()||this.entity(),a&&(c.push(a),o.peek(/^\/[\/*]/)||(b=o.$char("/"),b&&c.push(new d.Anonymous(b)))));while(a);return c.length>0?new d.Expression(c):void 0},property:function(){var a=o.$re(/^(\*?-?[_a-zA-Z0-9-]+)\s*:/);return a?a[1]:void 0},ruleProperty:function(){function a(a){var b=o.i,c=o.$re(a);return c?(f.push(b),e.push(c[1])):void 0}var b,c,e=[],f=[];o.save();var g=o.$re(/^([_a-zA-Z0-9-]+)\s*:/);if(g)return e=[new d.Keyword(g[1])],o.forget(),e;for(a(/^(\*?)/);;)if(!a(/^((?:[\w-]+)|(?:@\{[\w-]+\}))/))break;if(e.length>1&&a(/^((?:\+_|\+)?)\s*:/)){for(o.forget(),""===e[0]&&(e.shift(),f.shift()),c=0;e.length>c;c++)b=e[c],e[c]="@"!==b.charAt(0)?new d.Keyword(b):new d.Variable("@"+b.slice(2,-1),f[c],h);return e}o.restore()}}}};h.serializeVars=function(a){var b="";for(var c in a)if(Object.hasOwnProperty.call(a,c)){var d=a[c];b+=("@"===c[0]?"":"@")+c+": "+d+(";"===String(d).slice(-1)?"":";")}return b},b.exports=h},{"../less-error":31,"../tree":61,"../utils":82,"../visitors":86,"./parser-input":36}],38:[function(a,b){var c=function(a){this.less=a,this.visitors=[],this.preProcessors=[],this.postProcessors=[],this.installedPlugins=[],this.fileManagers=[]};c.prototype.addPlugins=function(a){if(a)for(var b=0;a.length>b;b++)this.addPlugin(a[b])},c.prototype.addPlugin=function(a){this.installedPlugins.push(a),a.install(this.less,this)},c.prototype.addVisitor=function(a){this.visitors.push(a)},c.prototype.addPreProcessor=function(a,b){var c;for(c=0;this.preProcessors.length>c&&!(this.preProcessors[c].priority>=b);c++);this.preProcessors.splice(c,0,{preProcessor:a,priority:b})},c.prototype.addPostProcessor=function(a,b){var c;for(c=0;this.postProcessors.length>c&&!(this.postProcessors[c].priority>=b);c++);this.postProcessors.splice(c,0,{postProcessor:a,priority:b})},c.prototype.addFileManager=function(a){this.fileManagers.push(a)},c.prototype.getPreProcessors=function(){for(var a=[],b=0;this.preProcessors.length>b;b++)a.push(this.preProcessors[b].preProcessor);return a},c.prototype.getPostProcessors=function(){for(var a=[],b=0;this.postProcessors.length>b;b++)a.push(this.postProcessors[b].postProcessor);return a},c.prototype.getVisitors=function(){return this.visitors},c.prototype.getFileManagers=function(){return this.fileManagers},b.exports=c},{}],39:[function(a,b){var c=a("../less-error"),d=a("../tree"),e=b.exports=function(a,b){this.fileInfo=b};e.prototype.eval=function(a,b){var e,f,g={};f={add:function(a,b){g[a]=b},addMultiple:function(a){Object.keys(a).forEach(function(b){g[b]=a[b]})}};try{e=new Function("functions","tree","fileInfo",a),e(f,d,this.fileInfo)}catch(h){b(new c({message:"Plugin evaluation error: '"+h.name+": "+h.message.replace(/["]/g,"'")+"'",filename:this.fileInfo.filename}),null)}b(null,{functions:g})}},{"../less-error":31,"../tree":61}],40:[function(a,b){var c;b.exports=function(b,d){var e=function(b,f,g){if("function"==typeof f&&(g=f,f={}),!g){c||(c="undefined"==typeof Promise?a("promise"):Promise);var h=this;return new c(function(a,c){e.call(h,b,f,function(b,d){b?c(b):a(d)})})}this.parse(b,f,function(a,b,c,e){if(a)return g(a);var f;try{var h=new d(b,c);f=h.toCSS(e)}catch(a){return g(a)}g(null,f)})};return e}},{promise:void 0}],41:[function(a,b){b.exports=function(a,b){var c=function(a){this.options=a};return c.prototype.toCSS=function(b,c,d){var e=new a({contentsIgnoredCharsMap:d.contentsIgnoredChars,rootNode:b,contentsMap:d.contents,sourceMapFilename:this.options.sourceMapFilename,sourceMapURL:this.options.sourceMapURL,outputFilename:this.options.sourceMapOutputFilename,sourceMapBasepath:this.options.sourceMapBasepath,sourceMapRootpath:this.options.sourceMapRootpath,outputSourceFiles:this.options.outputSourceFiles,sourceMapGenerator:this.options.sourceMapGenerator,sourceMapFileInline:this.options.sourceMapFileInline}),f=e.toCSS(c);return this.sourceMap=e.sourceMap,this.sourceMapURL=e.sourceMapURL,this.options.sourceMapInputFilename&&(this.sourceMapInputFilename=e.normalizeFilename(this.options.sourceMapInputFilename)),f+this.getCSSAppendage()},c.prototype.getCSSAppendage=function(){var a=this.sourceMapURL;if(this.options.sourceMapFileInline){if(void 0===this.sourceMap)return"";a="data:application/json;base64,"+b.encodeBase64(this.sourceMap)}return a?"/*# sourceMappingURL="+a+" */":""},c.prototype.getExternalSourceMap=function(){return this.sourceMap},c.prototype.setExternalSourceMap=function(a){this.sourceMap=a},c.prototype.isInline=function(){return this.options.sourceMapFileInline},c.prototype.getSourceMapURL=function(){return this.sourceMapURL},c.prototype.getOutputFilename=function(){return this.options.sourceMapOutputFilename},c.prototype.getInputFilename=function(){return this.sourceMapInputFilename},c}},{}],42:[function(a,b){b.exports=function(a){var b=function(b){this._css=[],this._rootNode=b.rootNode,this._contentsMap=b.contentsMap,
this._contentsIgnoredCharsMap=b.contentsIgnoredCharsMap,b.sourceMapFilename&&(this._sourceMapFilename=b.sourceMapFilename.replace(/\\/g,"/")),this._outputFilename=b.outputFilename,this.sourceMapURL=b.sourceMapURL,b.sourceMapBasepath&&(this._sourceMapBasepath=b.sourceMapBasepath.replace(/\\/g,"/")),b.sourceMapRootpath?(this._sourceMapRootpath=b.sourceMapRootpath.replace(/\\/g,"/"),"/"!==this._sourceMapRootpath.charAt(this._sourceMapRootpath.length-1)&&(this._sourceMapRootpath+="/")):this._sourceMapRootpath="",this._outputSourceFiles=b.outputSourceFiles,this._sourceMapGeneratorConstructor=a.getSourceMapGenerator(),this._lineNumber=0,this._column=0};return b.prototype.normalizeFilename=function(a){return a=a.replace(/\\/g,"/"),this._sourceMapBasepath&&0===a.indexOf(this._sourceMapBasepath)&&(a=a.substring(this._sourceMapBasepath.length),("\\"===a.charAt(0)||"/"===a.charAt(0))&&(a=a.substring(1))),(this._sourceMapRootpath||"")+a},b.prototype.add=function(a,b,c,d){if(a){var e,f,g,h,i;if(b){var j=this._contentsMap[b.filename];this._contentsIgnoredCharsMap[b.filename]&&(c-=this._contentsIgnoredCharsMap[b.filename],0>c&&(c=0),j=j.slice(this._contentsIgnoredCharsMap[b.filename])),j=j.substring(0,c),f=j.split("\n"),h=f[f.length-1]}if(e=a.split("\n"),g=e[e.length-1],b)if(d)for(i=0;e.length>i;i++)this._sourceMapGenerator.addMapping({generated:{line:this._lineNumber+i+1,column:0===i?this._column:0},original:{line:f.length+i,column:0===i?h.length:0},source:this.normalizeFilename(b.filename)});else this._sourceMapGenerator.addMapping({generated:{line:this._lineNumber+1,column:this._column},original:{line:f.length,column:h.length},source:this.normalizeFilename(b.filename)});1===e.length?this._column+=g.length:(this._lineNumber+=e.length-1,this._column=g.length),this._css.push(a)}},b.prototype.isEmpty=function(){return 0===this._css.length},b.prototype.toCSS=function(a){if(this._sourceMapGenerator=new this._sourceMapGeneratorConstructor({file:this._outputFilename,sourceRoot:null}),this._outputSourceFiles)for(var b in this._contentsMap)if(this._contentsMap.hasOwnProperty(b)){var c=this._contentsMap[b];this._contentsIgnoredCharsMap[b]&&(c=c.slice(this._contentsIgnoredCharsMap[b])),this._sourceMapGenerator.setSourceContent(this.normalizeFilename(b),c)}if(this._rootNode.genCSS(a,this),this._css.length>0){var d,e=JSON.stringify(this._sourceMapGenerator.toJSON());this.sourceMapURL?d=this.sourceMapURL:this._sourceMapFilename&&(d=this._sourceMapFilename),this.sourceMapURL=d,this.sourceMap=e}return this._css.join("")},b}},{}],43:[function(a,b){var c=a("./contexts"),d=a("./visitors"),e=a("./tree");b.exports=function(a,b){b=b||{};var f,g=b.variables,h=new c.Eval(b);"object"!=typeof g||Array.isArray(g)||(g=Object.keys(g).map(function(a){var b=g[a];return b instanceof e.Value||(b instanceof e.Expression||(b=new e.Expression([b])),b=new e.Value([b])),new e.Rule("@"+a,b,!1,null,0)}),h.frames=[new e.Ruleset(null,g)]);var i,j=[],k=[new d.JoinSelectorVisitor,new d.ExtendVisitor,new d.ToCSSVisitor({compress:Boolean(b.compress)})];if(b.pluginManager){var l=b.pluginManager.getVisitors();for(i=0;l.length>i;i++){var m=l[i];m.isPreEvalVisitor?j.push(m):m.isPreVisitor?k.splice(0,0,m):k.push(m)}}for(i=0;j.length>i;i++)j[i].run(a);for(f=a.eval(h),i=0;k.length>i;i++)k[i].run(f);return f}},{"./contexts":10,"./tree":61,"./visitors":86}],44:[function(a,b){var c=a("./node"),d=function(a){this.value=a};d.prototype=new c,d.prototype.type="Alpha",d.prototype.accept=function(a){this.value=a.visit(this.value)},d.prototype.eval=function(a){return this.value.eval?new d(this.value.eval(a)):this},d.prototype.genCSS=function(a,b){b.add("alpha(opacity="),this.value.genCSS?this.value.genCSS(a,b):b.add(this.value),b.add(")")},b.exports=d},{"./node":69}],45:[function(a,b){var c=a("./node"),d=function(a,b,c,d,e,f){this.value=a,this.index=b,this.mapLines=d,this.currentFileInfo=c,this.rulesetLike="undefined"==typeof e?!1:e,this.isReferenced=f||!1};d.prototype=new c,d.prototype.type="Anonymous",d.prototype.eval=function(){return new d(this.value,this.index,this.currentFileInfo,this.mapLines,this.rulesetLike,this.isReferenced)},d.prototype.compare=function(a){return a.toCSS&&this.toCSS()===a.toCSS()?0:void 0},d.prototype.isRulesetLike=function(){return this.rulesetLike},d.prototype.genCSS=function(a,b){b.add(this.value,this.currentFileInfo,this.index,this.mapLines)},d.prototype.markReferenced=function(){this.isReferenced=!0},d.prototype.getIsReferenced=function(){return!this.currentFileInfo||!this.currentFileInfo.reference||this.isReferenced},b.exports=d},{"./node":69}],46:[function(a,b){var c=a("./node"),d=function(a,b){this.key=a,this.value=b};d.prototype=new c,d.prototype.type="Assignment",d.prototype.accept=function(a){this.value=a.visit(this.value)},d.prototype.eval=function(a){return this.value.eval?new d(this.key,this.value.eval(a)):this},d.prototype.genCSS=function(a,b){b.add(this.key+"="),this.value.genCSS?this.value.genCSS(a,b):b.add(this.value)},b.exports=d},{"./node":69}],47:[function(a,b){var c=a("./node"),d=function(a,b,c){this.key=a,this.op=b,this.value=c};d.prototype=new c,d.prototype.type="Attribute",d.prototype.eval=function(a){return new d(this.key.eval?this.key.eval(a):this.key,this.op,this.value&&this.value.eval?this.value.eval(a):this.value)},d.prototype.genCSS=function(a,b){b.add(this.toCSS(a))},d.prototype.toCSS=function(a){var b=this.key.toCSS?this.key.toCSS(a):this.key;return this.op&&(b+=this.op,b+=this.value.toCSS?this.value.toCSS(a):this.value),"["+b+"]"},b.exports=d},{"./node":69}],48:[function(a,b){var c=a("./node"),d=a("../functions/function-caller"),e=function(a,b,c,d){this.name=a,this.args=b,this.index=c,this.currentFileInfo=d};e.prototype=new c,e.prototype.type="Call",e.prototype.accept=function(a){this.args&&(this.args=a.visitArray(this.args))},e.prototype.eval=function(a){var b,c=this.args.map(function(b){return b.eval(a)}),f=new d(this.name,a,this.index,this.currentFileInfo);if(f.isValid())try{if(b=f.call(c),null!=b)return b}catch(g){throw{type:g.type||"Runtime",message:"error evaluating function `"+this.name+"`"+(g.message?": "+g.message:""),index:this.index,filename:this.currentFileInfo.filename}}return new e(this.name,c,this.index,this.currentFileInfo)},e.prototype.genCSS=function(a,b){b.add(this.name+"(",this.currentFileInfo,this.index);for(var c=0;this.args.length>c;c++)this.args[c].genCSS(a,b),this.args.length>c+1&&b.add(", ");b.add(")")},b.exports=e},{"../functions/function-caller":20,"./node":69}],49:[function(a,b){function c(a,b){return Math.min(Math.max(a,0),b)}function d(a){return"#"+a.map(function(a){return a=c(Math.round(a),255),(16>a?"0":"")+a.toString(16)}).join("")}var e=a("./node"),f=a("../data/colors"),g=function(a,b,c){this.rgb=Array.isArray(a)?a:6==a.length?a.match(/.{2}/g).map(function(a){return parseInt(a,16)}):a.split("").map(function(a){return parseInt(a+a,16)}),this.alpha="number"==typeof b?b:1,"undefined"!=typeof c&&(this.value=c)};g.prototype=new e,g.prototype.type="Color",g.prototype.luma=function(){var a=this.rgb[0]/255,b=this.rgb[1]/255,c=this.rgb[2]/255;return a=.03928>=a?a/12.92:Math.pow((a+.055)/1.055,2.4),b=.03928>=b?b/12.92:Math.pow((b+.055)/1.055,2.4),c=.03928>=c?c/12.92:Math.pow((c+.055)/1.055,2.4),.2126*a+.7152*b+.0722*c},g.prototype.genCSS=function(a,b){b.add(this.toCSS(a))},g.prototype.toCSS=function(a,b){var d,e,f=a&&a.compress&&!b;if(this.value)return this.value;if(e=this.fround(a,this.alpha),1>e)return"rgba("+this.rgb.map(function(a){return c(Math.round(a),255)}).concat(c(e,1)).join(","+(f?"":" "))+")";if(d=this.toRGB(),f){var g=d.split("");g[1]===g[2]&&g[3]===g[4]&&g[5]===g[6]&&(d="#"+g[1]+g[3]+g[5])}return d},g.prototype.operate=function(a,b,c){for(var d=[],e=this.alpha*(1-c.alpha)+c.alpha,f=0;3>f;f++)d[f]=this._operate(a,b,this.rgb[f],c.rgb[f]);return new g(d,e)},g.prototype.toRGB=function(){return d(this.rgb)},g.prototype.toHSL=function(){var a,b,c=this.rgb[0]/255,d=this.rgb[1]/255,e=this.rgb[2]/255,f=this.alpha,g=Math.max(c,d,e),h=Math.min(c,d,e),i=(g+h)/2,j=g-h;if(g===h)a=b=0;else{switch(b=i>.5?j/(2-g-h):j/(g+h),g){case c:a=(d-e)/j+(e>d?6:0);break;case d:a=(e-c)/j+2;break;case e:a=(c-d)/j+4}a/=6}return{h:360*a,s:b,l:i,a:f}},g.prototype.toHSV=function(){var a,b,c=this.rgb[0]/255,d=this.rgb[1]/255,e=this.rgb[2]/255,f=this.alpha,g=Math.max(c,d,e),h=Math.min(c,d,e),i=g,j=g-h;if(b=0===g?0:j/g,g===h)a=0;else{switch(g){case c:a=(d-e)/j+(e>d?6:0);break;case d:a=(e-c)/j+2;break;case e:a=(c-d)/j+4}a/=6}return{h:360*a,s:b,v:i,a:f}},g.prototype.toARGB=function(){return d([255*this.alpha].concat(this.rgb))},g.prototype.compare=function(a){return a.rgb&&a.rgb[0]===this.rgb[0]&&a.rgb[1]===this.rgb[1]&&a.rgb[2]===this.rgb[2]&&a.alpha===this.alpha?0:void 0},g.fromKeyword=function(a){var b,c=a.toLowerCase();return f.hasOwnProperty(c)?b=new g(f[c].slice(1)):"transparent"===c&&(b=new g([0,0,0],0)),b?(b.value=a,b):void 0},b.exports=g},{"../data/colors":11,"./node":69}],50:[function(a,b){var c=a("./node"),d=function(a){" "===a?(this.value=" ",this.emptyOrWhitespace=!0):(this.value=a?a.trim():"",this.emptyOrWhitespace=""===this.value)};d.prototype=new c,d.prototype.type="Combinator";var e={"":!0," ":!0,"|":!0};d.prototype.genCSS=function(a,b){var c=a.compress||e[this.value]?"":" ";b.add(c+this.value+c)},b.exports=d},{"./node":69}],51:[function(a,b){var c=a("./node"),d=a("./debug-info"),e=function(a,b,c,d){this.value=a,this.isLineComment=b,this.currentFileInfo=d};e.prototype=new c,e.prototype.type="Comment",e.prototype.genCSS=function(a,b){this.debugInfo&&b.add(d(a,this),this.currentFileInfo,this.index),b.add(this.value)},e.prototype.isSilent=function(a){var b=this.currentFileInfo&&this.currentFileInfo.reference&&!this.isReferenced,c=a.compress&&"!"!==this.value[2];return this.isLineComment||b||c},e.prototype.markReferenced=function(){this.isReferenced=!0},b.exports=e},{"./debug-info":53,"./node":69}],52:[function(a,b){var c=a("./node"),d=function(a,b,c,d,e){this.op=a.trim(),this.lvalue=b,this.rvalue=c,this.index=d,this.negate=e};d.prototype=new c,d.prototype.type="Condition",d.prototype.accept=function(a){this.lvalue=a.visit(this.lvalue),this.rvalue=a.visit(this.rvalue)},d.prototype.eval=function(a){var b=function(a,b,d){switch(a){case"and":return b&&d;case"or":return b||d;default:switch(c.compare(b,d)){case-1:return"<"===a||"=<"===a||"<="===a;case 0:return"="===a||">="===a||"=<"===a||"<="===a;case 1:return">"===a||">="===a;default:return!1}}}(this.op,this.lvalue.eval(a),this.rvalue.eval(a));return this.negate?!b:b},b.exports=d},{"./node":69}],53:[function(a,b){var c=function(a,b,d){var e="";if(a.dumpLineNumbers&&!a.compress)switch(a.dumpLineNumbers){case"comments":e=c.asComment(b);break;case"mediaquery":e=c.asMediaQuery(b);break;case"all":e=c.asComment(b)+(d||"")+c.asMediaQuery(b)}return e};c.asComment=function(a){return"/* line "+a.debugInfo.lineNumber+", "+a.debugInfo.fileName+" */\n"},c.asMediaQuery=function(a){var b=a.debugInfo.fileName;return/^[a-z]+:\/\//i.test(b)||(b="file://"+b),"@media -sass-debug-info{filename{font-family:"+b.replace(/([.:\/\\])/g,function(a){return"\\"==a&&(a="/"),"\\"+a})+"}line{font-family:\\00003"+a.debugInfo.lineNumber+"}}\n"},b.exports=c},{}],54:[function(a,b){var c=a("./node"),d=a("../contexts"),e=function(a,b){this.ruleset=a,this.frames=b};e.prototype=new c,e.prototype.type="DetachedRuleset",e.prototype.evalFirst=!0,e.prototype.accept=function(a){this.ruleset=a.visit(this.ruleset)},e.prototype.eval=function(a){var b=this.frames||a.frames.slice(0);return new e(this.ruleset,b)},e.prototype.callEval=function(a){return this.ruleset.eval(this.frames?new d.Eval(a,this.frames.concat(a.frames)):a)},b.exports=e},{"../contexts":10,"./node":69}],55:[function(a,b){var c=a("./node"),d=a("../data/unit-conversions"),e=a("./unit"),f=a("./color"),g=function(a,b){this.value=parseFloat(a),this.unit=b&&b instanceof e?b:new e(b?[b]:void 0)};g.prototype=new c,g.prototype.type="Dimension",g.prototype.accept=function(a){this.unit=a.visit(this.unit)},g.prototype.eval=function(){return this},g.prototype.toColor=function(){return new f([this.value,this.value,this.value])},g.prototype.genCSS=function(a,b){if(a&&a.strictUnits&&!this.unit.isSingular())throw new Error("Multiple units in dimension. Correct the units or use the unit function. Bad unit: "+this.unit.toString());var c=this.fround(a,this.value),d=String(c);if(0!==c&&1e-6>c&&c>-1e-6&&(d=c.toFixed(20).replace(/0+$/,"")),a&&a.compress){if(0===c&&this.unit.isLength())return void b.add(d);c>0&&1>c&&(d=d.substr(1))}b.add(d),this.unit.genCSS(a,b)},g.prototype.operate=function(a,b,c){var d=this._operate(a,b,this.value,c.value),e=this.unit.clone();if("+"===b||"-"===b)if(0===e.numerator.length&&0===e.denominator.length)e=c.unit.clone(),this.unit.backupUnit&&(e.backupUnit=this.unit.backupUnit);else if(0===c.unit.numerator.length&&0===e.denominator.length);else{if(c=c.convertTo(this.unit.usedUnits()),a.strictUnits&&c.unit.toString()!==e.toString())throw new Error("Incompatible units. Change the units or use the unit function. Bad units: '"+e.toString()+"' and '"+c.unit.toString()+"'.");d=this._operate(a,b,this.value,c.value)}else"*"===b?(e.numerator=e.numerator.concat(c.unit.numerator).sort(),e.denominator=e.denominator.concat(c.unit.denominator).sort(),e.cancel()):"/"===b&&(e.numerator=e.numerator.concat(c.unit.denominator).sort(),e.denominator=e.denominator.concat(c.unit.numerator).sort(),e.cancel());return new g(d,e)},g.prototype.compare=function(a){var b,d;if(!(a instanceof g))return void 0;if(this.unit.isEmpty()||a.unit.isEmpty())b=this,d=a;else if(b=this.unify(),d=a.unify(),0!==b.unit.compare(d.unit))return void 0;return c.numericCompare(b.value,d.value)},g.prototype.unify=function(){return this.convertTo({length:"px",duration:"s",angle:"rad"})},g.prototype.convertTo=function(a){var b,c,e,f,h,i=this.value,j=this.unit.clone(),k={};if("string"==typeof a){for(b in d)d[b].hasOwnProperty(a)&&(k={},k[b]=a);a=k}h=function(a,b){return e.hasOwnProperty(a)?(b?i/=e[a]/e[f]:i*=e[a]/e[f],f):a};for(c in a)a.hasOwnProperty(c)&&(f=a[c],e=d[c],j.map(h));return j.cancel(),new g(i,j)},b.exports=g},{"../data/unit-conversions":13,"./color":49,"./node":69,"./unit":78}],56:[function(a,b){var c=a("./node"),d=a("./selector"),e=a("./ruleset"),f=function(a,b,c,e,f,g,h,i){var j;if(this.name=a,this.value=b,c)for(Array.isArray(c)?this.rules=c:(this.rules=[c],this.rules[0].selectors=new d([],null,null,this.index,f).createEmptySelectors()),j=0;this.rules.length>j;j++)this.rules[j].allowImports=!0;this.index=e,this.currentFileInfo=f,this.debugInfo=g,this.isReferenced=h,this.isRooted=i||!1};f.prototype=new c,f.prototype.type="Directive",f.prototype.accept=function(a){var b=this.value,c=this.rules;c&&(this.rules=a.visitArray(c)),b&&(this.value=a.visit(b))},f.prototype.isRulesetLike=function(){return this.rules||!this.isCharset()},f.prototype.isCharset=function(){return"@charset"===this.name},f.prototype.genCSS=function(a,b){var c=this.value,d=this.rules;b.add(this.name,this.currentFileInfo,this.index),c&&(b.add(" "),c.genCSS(a,b)),d?this.outputRuleset(a,b,d):b.add(";")},f.prototype.eval=function(a){var b,c,d=this.value,e=this.rules;return b=a.mediaPath,c=a.mediaBlocks,a.mediaPath=[],a.mediaBlocks=[],d&&(d=d.eval(a)),e&&(e=[e[0].eval(a)],e[0].root=!0),a.mediaPath=b,a.mediaBlocks=c,new f(this.name,d,e,this.index,this.currentFileInfo,this.debugInfo,this.isReferenced,this.isRooted)},f.prototype.variable=function(a){return this.rules?e.prototype.variable.call(this.rules[0],a):void 0},f.prototype.find=function(){return this.rules?e.prototype.find.apply(this.rules[0],arguments):void 0},f.prototype.rulesets=function(){return this.rules?e.prototype.rulesets.apply(this.rules[0]):void 0},f.prototype.markReferenced=function(){var a,b;if(this.isReferenced=!0,this.rules)for(b=this.rules,a=0;b.length>a;a++)b[a].markReferenced&&b[a].markReferenced()},f.prototype.getIsReferenced=function(){return!this.currentFileInfo||!this.currentFileInfo.reference||this.isReferenced},f.prototype.outputRuleset=function(a,b,c){var d,e=c.length;if(a.tabLevel=(0|a.tabLevel)+1,a.compress){for(b.add("{"),d=0;e>d;d++)c[d].genCSS(a,b);return b.add("}"),void a.tabLevel--}var f="\n"+Array(a.tabLevel).join(" "),g=f+" ";if(e){for(b.add(" {"+g),c[0].genCSS(a,b),d=1;e>d;d++)b.add(g),c[d].genCSS(a,b);b.add(f+"}")}else b.add(" {"+f+"}");a.tabLevel--},b.exports=f},{"./node":69,"./ruleset":75,"./selector":76}],57:[function(a,b){var c=a("./node"),d=a("./paren"),e=a("./combinator"),f=function(a,b,c,d){this.combinator=a instanceof e?a:new e(a),this.value="string"==typeof b?b.trim():b?b:"",this.index=c,this.currentFileInfo=d};f.prototype=new c,f.prototype.type="Element",f.prototype.accept=function(a){var b=this.value;this.combinator=a.visit(this.combinator),"object"==typeof b&&(this.value=a.visit(b))},f.prototype.eval=function(a){return new f(this.combinator,this.value.eval?this.value.eval(a):this.value,this.index,this.currentFileInfo)},f.prototype.genCSS=function(a,b){b.add(this.toCSS(a),this.currentFileInfo,this.index)},f.prototype.toCSS=function(a){a=a||{};var b=this.value,c=a.firstSelector;return b instanceof d&&(a.firstSelector=!0),b=b.toCSS?b.toCSS(a):b,a.firstSelector=c,""===b&&"&"===this.combinator.value.charAt(0)?"":this.combinator.toCSS(a)+b},b.exports=f},{"./combinator":50,"./node":69,"./paren":71}],58:[function(a,b){var c=a("./node"),d=a("./paren"),e=a("./comment"),f=function(a){if(this.value=a,!a)throw new Error("Expression requires an array parameter")};f.prototype=new c,f.prototype.type="Expression",f.prototype.accept=function(a){this.value=a.visitArray(this.value)},f.prototype.eval=function(a){var b,c=this.parens&&!this.parensInOp,e=!1;return c&&a.inParenthesis(),this.value.length>1?b=new f(this.value.map(function(b){return b.eval(a)})):1===this.value.length?(this.value[0].parens&&!this.value[0].parensInOp&&(e=!0),b=this.value[0].eval(a)):b=this,c&&a.outOfParenthesis(),this.parens&&this.parensInOp&&!a.isMathOn()&&!e&&(b=new d(b)),b},f.prototype.genCSS=function(a,b){for(var c=0;this.value.length>c;c++)this.value[c].genCSS(a,b),this.value.length>c+1&&b.add(" ")},f.prototype.throwAwayComments=function(){this.value=this.value.filter(function(a){return!(a instanceof e)})},f.prototype.markReferenced=function(){this.value.forEach(function(a){a.markReferenced&&a.markReferenced()})},b.exports=f},{"./comment":51,"./node":69,"./paren":71}],59:[function(a,b){var c=a("./node"),d=function e(a,b,c){switch(this.selector=a,this.option=b,this.index=c,this.object_id=e.next_id++,this.parent_ids=[this.object_id],b){case"all":this.allowBefore=!0,this.allowAfter=!0;break;default:this.allowBefore=!1,this.allowAfter=!1}};d.next_id=0,d.prototype=new c,d.prototype.type="Extend",d.prototype.accept=function(a){this.selector=a.visit(this.selector)},d.prototype.eval=function(a){return new d(this.selector.eval(a),this.option,this.index)},d.prototype.clone=function(){return new d(this.selector,this.option,this.index)},d.prototype.findSelfSelectors=function(a){var b,c,d=[];for(b=0;a.length>b;b++)c=a[b].elements,b>0&&c.length&&""===c[0].combinator.value&&(c[0].combinator.value=" "),d=d.concat(a[b].elements);this.selfSelectors=[{elements:d}]},b.exports=d},{"./node":69}],60:[function(a,b){var c=a("./node"),d=a("./media"),e=a("./url"),f=a("./quoted"),g=a("./ruleset"),h=a("./anonymous"),i=function(a,b,c,d,e){if(this.options=c,this.index=d,this.path=a,this.features=b,this.currentFileInfo=e,void 0!==this.options.less||this.options.inline)this.css=!this.options.less||this.options.inline;else{var f=this.getPath();f&&/[#\.\&\?\/]css([\?;].*)?$/.test(f)&&(this.css=!0)}};i.prototype=new c,i.prototype.type="Import",i.prototype.accept=function(a){this.features&&(this.features=a.visit(this.features)),this.path=a.visit(this.path),this.options.plugin||this.options.inline||!this.root||(this.root=a.visit(this.root))},i.prototype.genCSS=function(a,b){this.css&&void 0===this.path.currentFileInfo.reference&&(b.add("@import ",this.currentFileInfo,this.index),this.path.genCSS(a,b),this.features&&(b.add(" "),this.features.genCSS(a,b)),b.add(";"))},i.prototype.getPath=function(){return this.path instanceof e?this.path.value.value:this.path.value},i.prototype.isVariableImport=function(){var a=this.path;return a instanceof e&&(a=a.value),a instanceof f?a.containsVariables():!0},i.prototype.evalForImport=function(a){var b=this.path;return b instanceof e&&(b=b.value),new i(b.eval(a),this.features,this.options,this.index,this.currentFileInfo)},i.prototype.evalPath=function(a){var b=this.path.eval(a),c=this.currentFileInfo&&this.currentFileInfo.rootpath;if(!(b instanceof e)){if(c){var d=b.value;d&&a.isPathRelative(d)&&(b.value=c+d)}b.value=a.normalizePath(b.value)}return b},i.prototype.eval=function(a){var b,c,e=this.features&&this.features.eval(a);if(this.options.plugin)return c=a.frames[0]&&a.frames[0].functionRegistry,c&&this.root&&this.root.functions&&c.addMultiple(this.root.functions),[];if(this.skip&&("function"==typeof this.skip&&(this.skip=this.skip()),this.skip))return[];if(this.options.inline){var f=new h(this.root,0,{filename:this.importedFilename,reference:this.path.currentFileInfo&&this.path.currentFileInfo.reference},!0,!0,!1);return this.features?new d([f],this.features.value):[f]}if(this.css){var j=new i(this.evalPath(a),e,this.options,this.index);if(!j.css&&this.error)throw this.error;return j}return b=new g(null,this.root.rules.slice(0)),b.evalImports(a),this.features?new d(b.rules,this.features.value):b.rules},b.exports=i},{"./anonymous":45,"./media":65,"./node":69,"./quoted":72,"./ruleset":75,"./url":79}],61:[function(a,b){var c={};c.Node=a("./node"),c.Alpha=a("./alpha"),c.Color=a("./color"),c.Directive=a("./directive"),c.DetachedRuleset=a("./detached-ruleset"),c.Operation=a("./operation"),c.Dimension=a("./dimension"),c.Unit=a("./unit"),c.Keyword=a("./keyword"),c.Variable=a("./variable"),c.Ruleset=a("./ruleset"),c.Element=a("./element"),c.Attribute=a("./attribute"),c.Combinator=a("./combinator"),c.Selector=a("./selector"),c.Quoted=a("./quoted"),c.Expression=a("./expression"),c.Rule=a("./rule"),c.Call=a("./call"),c.URL=a("./url"),c.Import=a("./import"),c.mixin={Call:a("./mixin-call"),Definition:a("./mixin-definition")},c.Comment=a("./comment"),c.Anonymous=a("./anonymous"),c.Value=a("./value"),c.JavaScript=a("./javascript"),c.Assignment=a("./assignment"),c.Condition=a("./condition"),c.Paren=a("./paren"),c.Media=a("./media"),c.UnicodeDescriptor=a("./unicode-descriptor"),c.Negative=a("./negative"),c.Extend=a("./extend"),c.RulesetCall=a("./ruleset-call"),b.exports=c},{"./alpha":44,"./anonymous":45,"./assignment":46,"./attribute":47,"./call":48,"./color":49,"./combinator":50,"./comment":51,"./condition":52,"./detached-ruleset":54,"./dimension":55,"./directive":56,"./element":57,"./expression":58,"./extend":59,"./import":60,"./javascript":62,"./keyword":64,"./media":65,"./mixin-call":66,"./mixin-definition":67,"./negative":68,"./node":69,"./operation":70,"./paren":71,"./quoted":72,"./rule":73,"./ruleset":75,"./ruleset-call":74,"./selector":76,"./unicode-descriptor":77,"./unit":78,"./url":79,"./value":80,"./variable":81}],62:[function(a,b){var c=a("./js-eval-node"),d=a("./dimension"),e=a("./quoted"),f=a("./anonymous"),g=function(a,b,c,d){this.escaped=b,this.expression=a,this.index=c,this.currentFileInfo=d};g.prototype=new c,g.prototype.type="JavaScript",g.prototype.eval=function(a){var b=this.evaluateJavaScript(this.expression,a);return"number"==typeof b?new d(b):"string"==typeof b?new e('"'+b+'"',b,this.escaped,this.index):new f(Array.isArray(b)?b.join(", "):b)},b.exports=g},{"./anonymous":45,"./dimension":55,"./js-eval-node":63,"./quoted":72}],63:[function(a,b){var c=a("./node"),d=a("./variable"),e=function(){};e.prototype=new c,e.prototype.evaluateJavaScript=function(a,b){var c,e=this,f={};if(void 0!==b.javascriptEnabled&&!b.javascriptEnabled)throw{message:"You are using JavaScript, which has been disabled.",filename:this.currentFileInfo.filename,index:this.index};a=a.replace(/@\{([\w-]+)\}/g,function(a,c){return e.jsify(new d("@"+c,e.index,e.currentFileInfo).eval(b))});try{a=new Function("return ("+a+")")}catch(g){throw{message:"JavaScript evaluation error: "+g.message+" from `"+a+"`",filename:this.currentFileInfo.filename,index:this.index}}var h=b.frames[0].variables();for(var i in h)h.hasOwnProperty(i)&&(f[i.slice(1)]={value:h[i].value,toJS:function(){return this.value.eval(b).toCSS()}});try{c=a.call(f)}catch(g){throw{message:"JavaScript evaluation error: '"+g.name+": "+g.message.replace(/["]/g,"'")+"'",filename:this.currentFileInfo.filename,index:this.index}}return c},e.prototype.jsify=function(a){return Array.isArray(a.value)&&a.value.length>1?"["+a.value.map(function(a){return a.toCSS()}).join(", ")+"]":a.toCSS()},b.exports=e},{"./node":69,"./variable":81}],64:[function(a,b){var c=a("./node"),d=function(a){this.value=a};d.prototype=new c,d.prototype.type="Keyword",d.prototype.genCSS=function(a,b){if("%"===this.value)throw{type:"Syntax",message:"Invalid % without number"};b.add(this.value)},d.True=new d("true"),d.False=new d("false"),b.exports=d},{"./node":69}],65:[function(a,b){var c=a("./ruleset"),d=a("./value"),e=a("./selector"),f=a("./anonymous"),g=a("./expression"),h=a("./directive"),i=function(a,b,f,g){this.index=f,this.currentFileInfo=g;var h=new e([],null,null,this.index,this.currentFileInfo).createEmptySelectors();this.features=new d(b),this.rules=[new c(h,a)],this.rules[0].allowImports=!0};i.prototype=new h,i.prototype.type="Media",i.prototype.isRulesetLike=!0,i.prototype.accept=function(a){this.features&&(this.features=a.visit(this.features)),this.rules&&(this.rules=a.visitArray(this.rules))},i.prototype.genCSS=function(a,b){b.add("@media ",this.currentFileInfo,this.index),this.features.genCSS(a,b),this.outputRuleset(a,b,this.rules)},i.prototype.eval=function(a){a.mediaBlocks||(a.mediaBlocks=[],a.mediaPath=[]);var b=new i(null,[],this.index,this.currentFileInfo);this.debugInfo&&(this.rules[0].debugInfo=this.debugInfo,b.debugInfo=this.debugInfo);var c=!1;a.strictMath||(c=!0,a.strictMath=!0);try{b.features=this.features.eval(a)}finally{c&&(a.strictMath=!1)}return a.mediaPath.push(b),a.mediaBlocks.push(b),this.rules[0].functionRegistry=a.frames[0].functionRegistry.inherit(),a.frames.unshift(this.rules[0]),b.rules=[this.rules[0].eval(a)],a.frames.shift(),a.mediaPath.pop(),0===a.mediaPath.length?b.evalTop(a):b.evalNested(a)},i.prototype.evalTop=function(a){var b=this;if(a.mediaBlocks.length>1){var d=new e([],null,null,this.index,this.currentFileInfo).createEmptySelectors();b=new c(d,a.mediaBlocks),b.multiMedia=!0}return delete a.mediaBlocks,delete a.mediaPath,b},i.prototype.evalNested=function(a){var b,e,h=a.mediaPath.concat([this]);for(b=0;h.length>b;b++)e=h[b].features instanceof d?h[b].features.value:h[b].features,h[b]=Array.isArray(e)?e:[e];return this.features=new d(this.permute(h).map(function(a){for(a=a.map(function(a){return a.toCSS?a:new f(a)}),b=a.length-1;b>0;b--)a.splice(b,0,new f("and"));return new g(a)})),new c([],[])},i.prototype.permute=function(a){if(0===a.length)return[];if(1===a.length)return a[0];for(var b=[],c=this.permute(a.slice(1)),d=0;c.length>d;d++)for(var e=0;a[0].length>e;e++)b.push([a[0][e]].concat(c[d]));return b},i.prototype.bubbleSelectors=function(a){a&&(this.rules=[new c(a.slice(0),[this.rules[0]])])},b.exports=i},{"./anonymous":45,"./directive":56,"./expression":58,"./ruleset":75,"./selector":76,"./value":80}],66:[function(a,b){var c=a("./node"),d=a("./selector"),e=a("./mixin-definition"),f=a("../functions/default"),g=function(a,b,c,e,f){this.selector=new d(a),this.arguments=b||[],this.index=c,this.currentFileInfo=e,this.important=f};g.prototype=new c,g.prototype.type="MixinCall",g.prototype.accept=function(a){this.selector&&(this.selector=a.visit(this.selector)),this.arguments.length&&(this.arguments=a.visitArray(this.arguments))},g.prototype.eval=function(a){function b(b,c){var d,e,g;for(d=0;2>d;d++){for(y[d]=!0,f.value(d),e=0;c.length>e&&y[d];e++)g=c[e],g.matchCondition&&(y[d]=y[d]&&g.matchCondition(null,a));b.matchCondition&&(y[d]=y[d]&&b.matchCondition(u,a))}return y[0]||y[1]?y[0]!=y[1]?y[1]?B:C:A:z}var c,d,g,h,i,j,k,l,m,n,o,p,q,r,s,t,u=[],v=[],w=!1,x=[],y=[],z=-1,A=0,B=1,C=2;for(k=0;this.arguments.length>k;k++)if(h=this.arguments[k],i=h.value.eval(a),h.expand&&Array.isArray(i.value))for(i=i.value,l=0;i.length>l;l++)u.push({value:i[l]});else u.push({name:h.name,value:i});for(t=function(b){return b.matchArgs(null,a)},k=0;a.frames.length>k;k++)if((c=a.frames[k].find(this.selector,null,t)).length>0){for(o=!0,l=0;c.length>l;l++){for(d=c[l].rule,g=c[l].path,n=!1,m=0;a.frames.length>m;m++)if(!(d instanceof e)&&d===(a.frames[m].originalRuleset||a.frames[m])){n=!0;break}n||d.matchArgs(u,a)&&(p={mixin:d,group:b(d,g)},p.group!==z&&x.push(p),w=!0)}for(f.reset(),r=[0,0,0],l=0;x.length>l;l++)r[x[l].group]++;if(r[A]>0)q=C;else if(q=B,r[B]+r[C]>1)throw{type:"Runtime",message:"Ambiguous use of `default()` found when matching for `"+this.format(u)+"`",index:this.index,filename:this.currentFileInfo.filename};for(l=0;x.length>l;l++)if(p=x[l].group,p===A||p===q)try{d=x[l].mixin,d instanceof e||(s=d.originalRuleset||d,d=new e("",[],d.rules,null,!1),d.originalRuleset=s),Array.prototype.push.apply(v,d.evalCall(a,u,this.important).rules)}catch(D){throw{message:D.message,index:this.index,filename:this.currentFileInfo.filename,stack:D.stack}}if(w){if(!this.currentFileInfo||!this.currentFileInfo.reference)for(k=0;v.length>k;k++)j=v[k],j.markReferenced&&j.markReferenced();return v}}throw o?{type:"Runtime",message:"No matching definition was found for `"+this.format(u)+"`",index:this.index,filename:this.currentFileInfo.filename}:{type:"Name",message:this.selector.toCSS().trim()+" is undefined",index:this.index,filename:this.currentFileInfo.filename}},g.prototype.format=function(a){return this.selector.toCSS().trim()+"("+(a?a.map(function(a){var b="";return a.name&&(b+=a.name+":"),b+=a.value.toCSS?a.value.toCSS():"???"}).join(", "):"")+")"},b.exports=g},{"../functions/default":19,"./mixin-definition":67,"./node":69,"./selector":76}],67:[function(a,b){var c=a("./selector"),d=a("./element"),e=a("./ruleset"),f=a("./rule"),g=a("./expression"),h=a("../contexts"),i=function(a,b,e,f,g,h){this.name=a,this.selectors=[new c([new d(null,a,this.index,this.currentFileInfo)])],this.params=b,this.condition=f,this.variadic=g,this.arity=b.length,this.rules=e,this._lookups={};var i=[];this.required=b.reduce(function(a,b){return!b.name||b.name&&!b.value?a+1:(i.push(b.name),a)},0),this.optionalParameters=i,this.frames=h};i.prototype=new e,i.prototype.type="MixinDefinition",i.prototype.evalFirst=!0,i.prototype.accept=function(a){this.params&&this.params.length&&(this.params=a.visitArray(this.params)),this.rules=a.visitArray(this.rules),this.condition&&(this.condition=a.visit(this.condition))},i.prototype.evalParams=function(a,b,c,d){var i,j,k,l,m,n,o,p,q=new e(null,null),r=this.params.slice(0),s=0;if(b.frames&&b.frames[0]&&b.frames[0].functionRegistry&&(q.functionRegistry=b.frames[0].functionRegistry.inherit()),b=new h.Eval(b,[q].concat(b.frames)),c)for(c=c.slice(0),s=c.length,k=0;s>k;k++)if(j=c[k],n=j&&j.name){for(o=!1,l=0;r.length>l;l++)if(!d[l]&&n===r[l].name){d[l]=j.value.eval(a),q.prependRule(new f(n,j.value.eval(a))),o=!0;break}if(o){c.splice(k,1),k--;continue}throw{type:"Runtime",message:"Named argument for "+this.name+" "+c[k].name+" not found"}}for(p=0,k=0;r.length>k;k++)if(!d[k]){if(j=c&&c[p],n=r[k].name)if(r[k].variadic){for(i=[],l=p;s>l;l++)i.push(c[l].value.eval(a));q.prependRule(new f(n,new g(i).eval(a)))}else{if(m=j&&j.value)m=m.eval(a);else{if(!r[k].value)throw{type:"Runtime",message:"wrong number of arguments for "+this.name+" ("+s+" for "+this.arity+")"};m=r[k].value.eval(b),q.resetCache()}q.prependRule(new f(n,m)),d[k]=m}if(r[k].variadic&&c)for(l=p;s>l;l++)d[l]=c[l].value.eval(a);p++}return q},i.prototype.makeImportant=function(){var a=this.rules?this.rules.map(function(a){return a.makeImportant?a.makeImportant(!0):a}):this.rules,b=new i(this.name,this.params,a,this.condition,this.variadic,this.frames);
return b},i.prototype.eval=function(a){return new i(this.name,this.params,this.rules,this.condition,this.variadic,this.frames||a.frames.slice(0))},i.prototype.evalCall=function(a,b,c){var d,i,j=[],k=this.frames?this.frames.concat(a.frames):a.frames,l=this.evalParams(a,new h.Eval(a,k),b,j);return l.prependRule(new f("@arguments",new g(j).eval(a))),d=this.rules.slice(0),i=new e(null,d),i.originalRuleset=this,i=i.eval(new h.Eval(a,[this,l].concat(k))),c&&(i=i.makeImportant()),i},i.prototype.matchCondition=function(a,b){return this.condition&&!this.condition.eval(new h.Eval(b,[this.evalParams(b,new h.Eval(b,this.frames?this.frames.concat(b.frames):b.frames),a,[])].concat(this.frames||[]).concat(b.frames)))?!1:!0},i.prototype.matchArgs=function(a,b){var c,d=a&&a.length||0,e=this.optionalParameters,f=a?a.reduce(function(a,b){return e.indexOf(b.name)<0?a+1:a},0):0;if(this.variadic){if(this.required-1>f)return!1}else{if(this.required>f)return!1;if(d>this.params.length)return!1}c=Math.min(f,this.arity);for(var g=0;c>g;g++)if(!this.params[g].name&&!this.params[g].variadic&&a[g].value.eval(b).toCSS()!=this.params[g].value.eval(b).toCSS())return!1;return!0},b.exports=i},{"../contexts":10,"./element":57,"./expression":58,"./rule":73,"./ruleset":75,"./selector":76}],68:[function(a,b){var c=a("./node"),d=a("./operation"),e=a("./dimension"),f=function(a){this.value=a};f.prototype=new c,f.prototype.type="Negative",f.prototype.genCSS=function(a,b){b.add("-"),this.value.genCSS(a,b)},f.prototype.eval=function(a){return a.isMathOn()?new d("*",[new e(-1),this.value]).eval(a):new f(this.value.eval(a))},b.exports=f},{"./dimension":55,"./node":69,"./operation":70}],69:[function(a,b){var c=function(){};c.prototype.toCSS=function(a){var b=[];return this.genCSS(a,{add:function(a){b.push(a)},isEmpty:function(){return 0===b.length}}),b.join("")},c.prototype.genCSS=function(a,b){b.add(this.value)},c.prototype.accept=function(a){this.value=a.visit(this.value)},c.prototype.eval=function(){return this},c.prototype._operate=function(a,b,c,d){switch(b){case"+":return c+d;case"-":return c-d;case"*":return c*d;case"/":return c/d}},c.prototype.fround=function(a,b){var c=a&&a.numPrecision;return null==c?b:Number((b+2e-16).toFixed(c))},c.compare=function(a,b){if(a.compare&&"Quoted"!==b.type&&"Anonymous"!==b.type)return a.compare(b);if(b.compare)return-b.compare(a);if(a.type!==b.type)return void 0;if(a=a.value,b=b.value,!Array.isArray(a))return a===b?0:void 0;if(a.length!==b.length)return void 0;for(var d=0;a.length>d;d++)if(0!==c.compare(a[d],b[d]))return void 0;return 0},c.numericCompare=function(a,b){return b>a?-1:a===b?0:a>b?1:void 0},b.exports=c},{}],70:[function(a,b){var c=a("./node"),d=a("./color"),e=a("./dimension"),f=function(a,b,c){this.op=a.trim(),this.operands=b,this.isSpaced=c};f.prototype=new c,f.prototype.type="Operation",f.prototype.accept=function(a){this.operands=a.visit(this.operands)},f.prototype.eval=function(a){var b=this.operands[0].eval(a),c=this.operands[1].eval(a);if(a.isMathOn()){if(b instanceof e&&c instanceof d&&(b=b.toColor()),c instanceof e&&b instanceof d&&(c=c.toColor()),!b.operate)throw{type:"Operation",message:"Operation on an invalid type"};return b.operate(a,this.op,c)}return new f(this.op,[b,c],this.isSpaced)},f.prototype.genCSS=function(a,b){this.operands[0].genCSS(a,b),this.isSpaced&&b.add(" "),b.add(this.op),this.isSpaced&&b.add(" "),this.operands[1].genCSS(a,b)},b.exports=f},{"./color":49,"./dimension":55,"./node":69}],71:[function(a,b){var c=a("./node"),d=function(a){this.value=a};d.prototype=new c,d.prototype.type="Paren",d.prototype.genCSS=function(a,b){b.add("("),this.value.genCSS(a,b),b.add(")")},d.prototype.eval=function(a){return new d(this.value.eval(a))},b.exports=d},{"./node":69}],72:[function(a,b){var c=a("./node"),d=a("./js-eval-node"),e=a("./variable"),f=function(a,b,c,d,e){this.escaped=null==c?!0:c,this.value=b||"",this.quote=a.charAt(0),this.index=d,this.currentFileInfo=e};f.prototype=new d,f.prototype.type="Quoted",f.prototype.genCSS=function(a,b){this.escaped||b.add(this.quote,this.currentFileInfo,this.index),b.add(this.value),this.escaped||b.add(this.quote)},f.prototype.containsVariables=function(){return this.value.match(/(`([^`]+)`)|@\{([\w-]+)\}/)},f.prototype.eval=function(a){function b(a,b,c){var d=a;do a=d,d=a.replace(b,c);while(a!==d);return d}var c=this,d=this.value,g=function(b,d){return String(c.evaluateJavaScript(d,a))},h=function(b,d){var g=new e("@"+d,c.index,c.currentFileInfo).eval(a,!0);return g instanceof f?g.value:g.toCSS()};return d=b(d,/`([^`]+)`/g,g),d=b(d,/@\{([\w-]+)\}/g,h),new f(this.quote+d+this.quote,d,this.escaped,this.index,this.currentFileInfo)},f.prototype.compare=function(a){return"Quoted"!==a.type||this.escaped||a.escaped?a.toCSS&&this.toCSS()===a.toCSS()?0:void 0:c.numericCompare(this.value,a.value)},b.exports=f},{"./js-eval-node":63,"./node":69,"./variable":81}],73:[function(a,b){function c(a,b){var c,d="",e=b.length,f={add:function(a){d+=a}};for(c=0;e>c;c++)b[c].eval(a).genCSS(a,f);return d}var d=a("./node"),e=a("./value"),f=a("./keyword"),g=function(a,b,c,f,g,h,i,j){this.name=a,this.value=b instanceof d?b:new e([b]),this.important=c?" "+c.trim():"",this.merge=f,this.index=g,this.currentFileInfo=h,this.inline=i||!1,this.variable=void 0!==j?j:a.charAt&&"@"===a.charAt(0)};g.prototype=new d,g.prototype.type="Rule",g.prototype.genCSS=function(a,b){b.add(this.name+(a.compress?":":": "),this.currentFileInfo,this.index);try{this.value.genCSS(a,b)}catch(c){throw c.index=this.index,c.filename=this.currentFileInfo.filename,c}b.add(this.important+(this.inline||a.lastRule&&a.compress?"":";"),this.currentFileInfo,this.index)},g.prototype.eval=function(a){var b,d=!1,e=this.name,h=this.variable;"string"!=typeof e&&(e=1===e.length&&e[0]instanceof f?e[0].value:c(a,e),h=!1),"font"!==e||a.strictMath||(d=!0,a.strictMath=!0);try{if(a.importantScope.push({}),b=this.value.eval(a),!this.variable&&"DetachedRuleset"===b.type)throw{message:"Rulesets cannot be evaluated on a property.",index:this.index,filename:this.currentFileInfo.filename};var i=this.important,j=a.importantScope.pop();return!i&&j.important&&(i=j.important),new g(e,b,i,this.merge,this.index,this.currentFileInfo,this.inline,h)}catch(k){throw"number"!=typeof k.index&&(k.index=this.index,k.filename=this.currentFileInfo.filename),k}finally{d&&(a.strictMath=!1)}},g.prototype.makeImportant=function(){return new g(this.name,this.value,"!important",this.merge,this.index,this.currentFileInfo,this.inline)};var h=function(a){Array.isArray(a)?a.forEach(function(a){h(a)}):a.markReferenced&&a.markReferenced()};g.prototype.markReferenced=function(){this.value&&h(this.value)},b.exports=g},{"./keyword":64,"./node":69,"./value":80}],74:[function(a,b){var c=a("./node"),d=a("./variable"),e=function(a){this.variable=a};e.prototype=new c,e.prototype.type="RulesetCall",e.prototype.eval=function(a){var b=new d(this.variable).eval(a);return b.callEval(a)},b.exports=e},{"./node":69,"./variable":81}],75:[function(a,b){var c=a("./node"),d=a("./rule"),e=a("./selector"),f=a("./element"),g=a("./paren"),h=a("../contexts"),i=a("../functions/function-registry"),j=a("../functions/default"),k=a("./debug-info"),l=function(a,b,c){this.selectors=a,this.rules=b,this._lookups={},this.strictImports=c};l.prototype=new c,l.prototype.type="Ruleset",l.prototype.isRuleset=!0,l.prototype.isRulesetLike=!0,l.prototype.accept=function(a){this.paths?a.visitArray(this.paths,!0):this.selectors&&(this.selectors=a.visitArray(this.selectors)),this.rules&&this.rules.length&&(this.rules=a.visitArray(this.rules))},l.prototype.eval=function(a){var b,c,e,f,g=this.selectors,h=!1;if(g&&(c=g.length)){for(b=[],j.error({type:"Syntax",message:"it is currently only allowed in parametric mixin guards,"}),f=0;c>f;f++)e=g[f].eval(a),b.push(e),e.evaldCondition&&(h=!0);j.reset()}else h=!0;var k,m,n=this.rules?this.rules.slice(0):null,o=new l(b,n,this.strictImports);o.originalRuleset=this,o.root=this.root,o.firstRoot=this.firstRoot,o.allowImports=this.allowImports,this.debugInfo&&(o.debugInfo=this.debugInfo),h||(n.length=0),o.functionRegistry=function(a){for(var b,c=0,d=a.length;c!==d;++c)if(b=a[c].functionRegistry)return b;return i}(a.frames).inherit();var p=a.frames;p.unshift(o);var q=a.selectors;q||(a.selectors=q=[]),q.unshift(this.selectors),(o.root||o.allowImports||!o.strictImports)&&o.evalImports(a);var r=o.rules,s=r?r.length:0;for(f=0;s>f;f++)r[f].evalFirst&&(r[f]=r[f].eval(a));var t=a.mediaBlocks&&a.mediaBlocks.length||0;for(f=0;s>f;f++)"MixinCall"===r[f].type?(n=r[f].eval(a).filter(function(a){return a instanceof d&&a.variable?!o.variable(a.name):!0}),r.splice.apply(r,[f,1].concat(n)),s+=n.length-1,f+=n.length-1,o.resetCache()):"RulesetCall"===r[f].type&&(n=r[f].eval(a).rules.filter(function(a){return a instanceof d&&a.variable?!1:!0}),r.splice.apply(r,[f,1].concat(n)),s+=n.length-1,f+=n.length-1,o.resetCache());for(f=0;r.length>f;f++)k=r[f],k.evalFirst||(r[f]=k=k.eval?k.eval(a):k);for(f=0;r.length>f;f++)if(k=r[f],k instanceof l&&k.selectors&&1===k.selectors.length&&k.selectors[0].isJustParentSelector()){r.splice(f--,1);for(var u=0;k.rules.length>u;u++)m=k.rules[u],m instanceof d&&m.variable||r.splice(++f,0,m)}if(p.shift(),q.shift(),a.mediaBlocks)for(f=t;a.mediaBlocks.length>f;f++)a.mediaBlocks[f].bubbleSelectors(b);return o},l.prototype.evalImports=function(a){var b,c,d=this.rules;if(d)for(b=0;d.length>b;b++)"Import"===d[b].type&&(c=d[b].eval(a),c&&c.length?(d.splice.apply(d,[b,1].concat(c)),b+=c.length-1):d.splice(b,1,c),this.resetCache())},l.prototype.makeImportant=function(){var a=new l(this.selectors,this.rules.map(function(a){return a.makeImportant?a.makeImportant():a}),this.strictImports);return a},l.prototype.matchArgs=function(a){return!a||0===a.length},l.prototype.matchCondition=function(a,b){var c=this.selectors[this.selectors.length-1];return c.evaldCondition?c.condition&&!c.condition.eval(new h.Eval(b,b.frames))?!1:!0:!1},l.prototype.resetCache=function(){this._rulesets=null,this._variables=null,this._lookups={}},l.prototype.variables=function(){return this._variables||(this._variables=this.rules?this.rules.reduce(function(a,b){if(b instanceof d&&b.variable===!0&&(a[b.name]=b),"Import"===b.type&&b.root&&b.root.variables){var c=b.root.variables();for(var e in c)c.hasOwnProperty(e)&&(a[e]=c[e])}return a},{}):{}),this._variables},l.prototype.variable=function(a){return this.variables()[a]},l.prototype.rulesets=function(){if(!this.rules)return[];var a,b,c=[],d=this.rules,e=d.length;for(a=0;e>a;a++)b=d[a],b.isRuleset&&c.push(b);return c},l.prototype.prependRule=function(a){var b=this.rules;b?b.unshift(a):this.rules=[a]},l.prototype.find=function(a,b,c){b=b||this;var d,f,g=[],h=a.toCSS();return h in this._lookups?this._lookups[h]:(this.rulesets().forEach(function(h){if(h!==b)for(var i=0;h.selectors.length>i;i++)if(d=a.match(h.selectors[i])){if(a.elements.length>d){if(!c||c(h)){f=h.find(new e(a.elements.slice(d)),b,c);for(var j=0;f.length>j;++j)f[j].path.push(h);Array.prototype.push.apply(g,f)}}else g.push({rule:h,path:[]});break}}),this._lookups[h]=g,g)},l.prototype.genCSS=function(a,b){function c(a){return"boolean"==typeof a.isRulesetLike?a.isRulesetLike:"function"==typeof a.isRulesetLike?a.isRulesetLike():!1}var d,e,f,g,h,i=[],j=[];a.tabLevel=a.tabLevel||0,this.root||a.tabLevel++;var l,m=a.compress?"":Array(a.tabLevel+1).join(" "),n=a.compress?"":Array(a.tabLevel).join(" "),o=0,p=0;for(d=0;this.rules.length>d;d++)g=this.rules[d],"Comment"===g.type?(p===d&&p++,j.push(g)):g.isCharset&&g.isCharset()?(j.splice(o,0,g),o++,p++):"Import"===g.type?(j.splice(p,0,g),p++):j.push(g);if(j=i.concat(j),!this.root){f=k(a,this,n),f&&(b.add(f),b.add(n));var q,r=this.paths,s=r.length;for(l=a.compress?",":",\n"+n,d=0;s>d;d++)if(h=r[d],q=h.length)for(d>0&&b.add(l),a.firstSelector=!0,h[0].genCSS(a,b),a.firstSelector=!1,e=1;q>e;e++)h[e].genCSS(a,b);b.add((a.compress?"{":" {\n")+m)}for(d=0;j.length>d;d++){g=j[d],d+1===j.length&&(a.lastRule=!0);var t=a.lastRule;c(g)&&(a.lastRule=!1),g.genCSS?g.genCSS(a,b):g.value&&b.add(g.value.toString()),a.lastRule=t,a.lastRule?a.lastRule=!1:b.add(a.compress?"":"\n"+m)}this.root||(b.add(a.compress?"}":"\n"+n+"}"),a.tabLevel--),b.isEmpty()||a.compress||!this.firstRoot||b.add("\n")},l.prototype.markReferenced=function(){var a;if(this.selectors)for(a=0;this.selectors.length>a;a++)this.selectors[a].markReferenced();if(this.rules)for(a=0;this.rules.length>a;a++)this.rules[a].markReferenced&&this.rules[a].markReferenced()},l.prototype.getIsReferenced=function(){var a,b,c,d;if(this.paths)for(a=0;this.paths.length>a;a++)for(c=this.paths[a],b=0;c.length>b;b++)if(c[b].getIsReferenced&&c[b].getIsReferenced())return!0;if(this.selectors)for(a=0;this.selectors.length>a;a++)if(d=this.selectors[a],d.getIsReferenced&&d.getIsReferenced())return!0;return!1},l.prototype.joinSelectors=function(a,b,c){for(var d=0;c.length>d;d++)this.joinSelector(a,b,c[d])},l.prototype.joinSelector=function(a,b,c){function d(a,b){var c,d;if(0===a.length)c=new g(a[0]);else{var h=[];for(d=0;a.length>d;d++)h.push(new f(null,a[d],b.index,b.currentFileInfo));c=new g(new e(h))}return c}function h(a,b){var c,d;return c=new f(null,a,b.index,b.currentFileInfo),d=new e([c])}function i(a,b,c){function e(a){var b;return"Paren"!==a.value.type?null:(b=a.value.value,"Selector"!==b.type?null:b)}var g,m,n,o,p,q,r,s,t,u,v=!1;for(o=[],p=[[]],g=0;c.elements.length>g;g++)if(s=c.elements[g],"&"!==s.value){var w=e(s);if(null!=w){l(o,p);var x,y=[],z=[];for(x=i(y,b,w),v=v||x,n=0;y.length>n;n++){var A=h(d(y[n],s),s);k(p,[A],s,c,z)}p=z,o=[]}else o.push(s)}else{for(v=!0,q=[],l(o,p),m=0;p.length>m;m++)if(r=p[m],0===b.length)r.length>0&&r[0].elements.push(new f(s.combinator,"",s.index,s.currentFileInfo)),q.push(r);else for(n=0;b.length>n;n++){var B=j(r,b[n],s,c);q.push(B)}p=q,o=[]}for(l(o,p),g=0;p.length>g;g++)t=p[g].length,t>0&&(a.push(p[g]),u=p[g][t-1],p[g][t-1]=u.createDerived(u.elements,c.extendList));return v}function j(a,b,c,d){var e,g,h;if(e=[],a.length>0?(e=a.slice(0),g=e.pop(),h=d.createDerived(g.elements.slice(0))):h=d.createDerived([]),b.length>0){var i=c.combinator,j=b[0].elements[0];i.emptyOrWhitespace&&!j.combinator.emptyOrWhitespace&&(i=j.combinator),h.elements.push(new f(i,j.value,c.index,c.currentFileInfo)),h.elements=h.elements.concat(b[0].elements.slice(1))}return 0!==h.elements.length&&e.push(h),b.length>1&&(e=e.concat(b.slice(1))),e}function k(a,b,c,d,e){var f;for(f=0;a.length>f;f++){var g=j(a[f],b,c,d);e.push(g)}return e}function l(a,b){var c,d;if(0!==a.length){if(0===b.length)return void b.push([new e(a)]);for(c=0;b.length>c;c++)d=b[c],d.length>0?d[d.length-1]=d[d.length-1].createDerived(d[d.length-1].elements.concat(a)):d.push(new e(a))}}var m,n,o;if(n=[],o=i(n,b,c),!o)if(b.length>0)for(n=[],m=0;b.length>m;m++)n.push(b[m].concat(c));else n=[[c]];for(m=0;n.length>m;m++)a.push(n[m])},b.exports=l},{"../contexts":10,"../functions/default":19,"../functions/function-registry":21,"./debug-info":53,"./element":57,"./node":69,"./paren":71,"./rule":73,"./selector":76}],76:[function(a,b){var c=a("./node"),d=a("./element"),e=function(a,b,c,d,e,f){this.elements=a,this.extendList=b,this.condition=c,this.currentFileInfo=e||{},this.isReferenced=f,c||(this.evaldCondition=!0)};e.prototype=new c,e.prototype.type="Selector",e.prototype.accept=function(a){this.elements&&(this.elements=a.visitArray(this.elements)),this.extendList&&(this.extendList=a.visitArray(this.extendList)),this.condition&&(this.condition=a.visit(this.condition))},e.prototype.createDerived=function(a,b,c){c=null!=c?c:this.evaldCondition;var d=new e(a,b||this.extendList,null,this.index,this.currentFileInfo,this.isReferenced);return d.evaldCondition=c,d.mediaEmpty=this.mediaEmpty,d},e.prototype.createEmptySelectors=function(){var a=new d("","&",this.index,this.currentFileInfo),b=[new e([a],null,null,this.index,this.currentFileInfo)];return b[0].mediaEmpty=!0,b},e.prototype.match=function(a){var b,c,d=this.elements,e=d.length;if(a.CacheElements(),b=a._elements.length,0===b||b>e)return 0;for(c=0;b>c;c++)if(d[c].value!==a._elements[c])return 0;return b},e.prototype.CacheElements=function(){if(!this._elements){var a=this.elements.map(function(a){return a.combinator.value+(a.value.value||a.value)}).join("").match(/[,&#\*\.\w-]([\w-]|(\\.))*/g);a?"&"===a[0]&&a.shift():a=[],this._elements=a}},e.prototype.isJustParentSelector=function(){return!this.mediaEmpty&&1===this.elements.length&&"&"===this.elements[0].value&&(" "===this.elements[0].combinator.value||""===this.elements[0].combinator.value)},e.prototype.eval=function(a){var b=this.condition&&this.condition.eval(a),c=this.elements,d=this.extendList;return c=c&&c.map(function(b){return b.eval(a)}),d=d&&d.map(function(b){return b.eval(a)}),this.createDerived(c,d,b)},e.prototype.genCSS=function(a,b){var c,d;if(a&&a.firstSelector||""!==this.elements[0].combinator.value||b.add(" ",this.currentFileInfo,this.index),!this._css)for(c=0;this.elements.length>c;c++)d=this.elements[c],d.genCSS(a,b)},e.prototype.markReferenced=function(){this.isReferenced=!0},e.prototype.getIsReferenced=function(){return!this.currentFileInfo.reference||this.isReferenced},e.prototype.getIsOutput=function(){return this.evaldCondition},b.exports=e},{"./element":57,"./node":69}],77:[function(a,b){var c=a("./node"),d=function(a){this.value=a};d.prototype=new c,d.prototype.type="UnicodeDescriptor",b.exports=d},{"./node":69}],78:[function(a,b){var c=a("./node"),d=a("../data/unit-conversions"),e=function(a,b,c){this.numerator=a?a.slice(0).sort():[],this.denominator=b?b.slice(0).sort():[],c?this.backupUnit=c:a&&a.length&&(this.backupUnit=a[0])};e.prototype=new c,e.prototype.type="Unit",e.prototype.clone=function(){return new e(this.numerator.slice(0),this.denominator.slice(0),this.backupUnit)},e.prototype.genCSS=function(a,b){var c=a&&a.strictUnits;1===this.numerator.length?b.add(this.numerator[0]):!c&&this.backupUnit?b.add(this.backupUnit):!c&&this.denominator.length&&b.add(this.denominator[0])},e.prototype.toString=function(){var a,b=this.numerator.join("*");for(a=0;this.denominator.length>a;a++)b+="/"+this.denominator[a];return b},e.prototype.compare=function(a){return this.is(a.toString())?0:void 0},e.prototype.is=function(a){return this.toString().toUpperCase()===a.toUpperCase()},e.prototype.isLength=function(){return Boolean(this.toCSS().match(/px|em|%|in|cm|mm|pc|pt|ex/))},e.prototype.isEmpty=function(){return 0===this.numerator.length&&0===this.denominator.length},e.prototype.isSingular=function(){return 1>=this.numerator.length&&0===this.denominator.length},e.prototype.map=function(a){var b;for(b=0;this.numerator.length>b;b++)this.numerator[b]=a(this.numerator[b],!1);for(b=0;this.denominator.length>b;b++)this.denominator[b]=a(this.denominator[b],!0)},e.prototype.usedUnits=function(){var a,b,c={};b=function(b){return a.hasOwnProperty(b)&&!c[e]&&(c[e]=b),b};for(var e in d)d.hasOwnProperty(e)&&(a=d[e],this.map(b));return c},e.prototype.cancel=function(){var a,b,c={};for(b=0;this.numerator.length>b;b++)a=this.numerator[b],c[a]=(c[a]||0)+1;for(b=0;this.denominator.length>b;b++)a=this.denominator[b],c[a]=(c[a]||0)-1;this.numerator=[],this.denominator=[];for(a in c)if(c.hasOwnProperty(a)){var d=c[a];if(d>0)for(b=0;d>b;b++)this.numerator.push(a);else if(0>d)for(b=0;-d>b;b++)this.denominator.push(a)}this.numerator.sort(),this.denominator.sort()},b.exports=e},{"../data/unit-conversions":13,"./node":69}],79:[function(a,b){var c=a("./node"),d=function(a,b,c,d){this.value=a,this.currentFileInfo=c,this.index=b,this.isEvald=d};d.prototype=new c,d.prototype.type="Url",d.prototype.accept=function(a){this.value=a.visit(this.value)},d.prototype.genCSS=function(a,b){b.add("url("),this.value.genCSS(a,b),b.add(")")},d.prototype.eval=function(a){var b,c=this.value.eval(a);if(!this.isEvald&&(b=this.currentFileInfo&&this.currentFileInfo.rootpath,b&&"string"==typeof c.value&&a.isPathRelative(c.value)&&(c.quote||(b=b.replace(/[\(\)'"\s]/g,function(a){return"\\"+a})),c.value=b+c.value),c.value=a.normalizePath(c.value),a.urlArgs&&!c.value.match(/^\s*data:/))){var e=-1===c.value.indexOf("?")?"?":"&",f=e+a.urlArgs;-1!==c.value.indexOf("#")?c.value=c.value.replace("#",f+"#"):c.value+=f}return new d(c,this.index,this.currentFileInfo,!0)},b.exports=d},{"./node":69}],80:[function(a,b){var c=a("./node"),d=function(a){if(this.value=a,!a)throw new Error("Value requires an array argument")};d.prototype=new c,d.prototype.type="Value",d.prototype.accept=function(a){this.value&&(this.value=a.visitArray(this.value))},d.prototype.eval=function(a){return 1===this.value.length?this.value[0].eval(a):new d(this.value.map(function(b){return b.eval(a)}))},d.prototype.genCSS=function(a,b){var c;for(c=0;this.value.length>c;c++)this.value[c].genCSS(a,b),this.value.length>c+1&&b.add(a&&a.compress?",":", ")},b.exports=d},{"./node":69}],81:[function(a,b){var c=a("./node"),d=function(a,b,c){this.name=a,this.index=b,this.currentFileInfo=c||{}};d.prototype=new c,d.prototype.type="Variable",d.prototype.eval=function(a){var b,c=this.name;if(0===c.indexOf("@@")&&(c="@"+new d(c.slice(1),this.index,this.currentFileInfo).eval(a).value),this.evaluating)throw{type:"Name",message:"Recursive variable definition for "+c,filename:this.currentFileInfo.filename,index:this.index};if(this.evaluating=!0,b=this.find(a.frames,function(b){var d=b.variable(c);if(d){if(d.important){var e=a.importantScope[a.importantScope.length-1];e.important=d.important}return d.value.eval(a)}}))return this.evaluating=!1,b;throw{type:"Name",message:"variable "+c+" is undefined",filename:this.currentFileInfo.filename,index:this.index}},d.prototype.find=function(a,b){for(var c,d=0;a.length>d;d++)if(c=b.call(a,a[d]))return c;return null},b.exports=d},{"./node":69}],82:[function(a,b){b.exports={getLocation:function(a,b){for(var c=a+1,d=null,e=-1;--c>=0&&"\n"!==b.charAt(c);)e++;return"number"==typeof a&&(d=(b.slice(0,a).match(/\n/g)||"").length),{line:d,column:e}}}},{}],83:[function(a,b){var c=a("../tree"),d=a("./visitor"),e=a("../logger"),f=function(){this._visitor=new d(this),this.contexts=[],this.allExtendsStack=[[]]};f.prototype={run:function(a){return a=this._visitor.visit(a),a.allExtends=this.allExtendsStack[0],a},visitRule:function(a,b){b.visitDeeper=!1},visitMixinDefinition:function(a,b){b.visitDeeper=!1},visitRuleset:function(a){if(!a.root){var b,d,e,f,g=[],h=a.rules,i=h?h.length:0;for(b=0;i>b;b++)a.rules[b]instanceof c.Extend&&(g.push(h[b]),a.extendOnEveryPath=!0);var j=a.paths;for(b=0;j.length>b;b++){var k=j[b],l=k[k.length-1],m=l.extendList;for(f=m?m.slice(0).concat(g):g,f&&(f=f.map(function(a){return a.clone()})),d=0;f.length>d;d++)this.foundExtends=!0,e=f[d],e.findSelfSelectors(k),e.ruleset=a,0===d&&(e.firstExtendOnThisSelectorPath=!0),this.allExtendsStack[this.allExtendsStack.length-1].push(e)}this.contexts.push(a.selectors)}},visitRulesetOut:function(a){a.root||(this.contexts.length=this.contexts.length-1)},visitMedia:function(a){a.allExtends=[],this.allExtendsStack.push(a.allExtends)},visitMediaOut:function(){this.allExtendsStack.length=this.allExtendsStack.length-1},visitDirective:function(a){a.allExtends=[],this.allExtendsStack.push(a.allExtends)},visitDirectiveOut:function(){this.allExtendsStack.length=this.allExtendsStack.length-1}};var g=function(){this._visitor=new d(this)};g.prototype={run:function(a){var b=new f;if(this.extendIndicies={},b.run(a),!b.foundExtends)return a;a.allExtends=a.allExtends.concat(this.doExtendChaining(a.allExtends,a.allExtends)),this.allExtendsStack=[a.allExtends];var c=this._visitor.visit(a);return this.checkExtendsForNonMatched(a.allExtends),c},checkExtendsForNonMatched:function(a){var b=this.extendIndicies;a.filter(function(a){return!a.hasFoundMatches&&1==a.parent_ids.length}).forEach(function(a){var c="_unknown_";try{c=a.selector.toCSS({})}catch(d){}b[a.index+" "+c]||(b[a.index+" "+c]=!0,e.warn("extend '"+c+"' has no matches"))})},doExtendChaining:function(a,b,d){var e,f,g,h,i,j,k,l,m=[],n=this;for(d=d||0,e=0;a.length>e;e++)for(f=0;b.length>f;f++)j=a[e],k=b[f],j.parent_ids.indexOf(k.object_id)>=0||(i=[k.selfSelectors[0]],g=n.findMatch(j,i),g.length&&(j.hasFoundMatches=!0,j.selfSelectors.forEach(function(a){h=n.extendSelector(g,i,a),l=new c.Extend(k.selector,k.option,0),l.selfSelectors=h,h[h.length-1].extendList=[l],m.push(l),l.ruleset=k.ruleset,l.parent_ids=l.parent_ids.concat(k.parent_ids,j.parent_ids),k.firstExtendOnThisSelectorPath&&(l.firstExtendOnThisSelectorPath=!0,k.ruleset.paths.push(h))})));if(m.length){if(this.extendChainCount++,d>100){var o="{unable to calculate}",p="{unable to calculate}";try{o=m[0].selfSelectors[0].toCSS(),p=m[0].selector.toCSS()}catch(q){}throw{message:"extend circular reference detected. One of the circular extends is currently:"+o+":extend("+p+")"}}return m.concat(n.doExtendChaining(m,b,d+1))}return m},visitRule:function(a,b){b.visitDeeper=!1},visitMixinDefinition:function(a,b){b.visitDeeper=!1},visitSelector:function(a,b){b.visitDeeper=!1},visitRuleset:function(a){if(!a.root){var b,c,d,e,f=this.allExtendsStack[this.allExtendsStack.length-1],g=[],h=this;for(d=0;f.length>d;d++)for(c=0;a.paths.length>c;c++)if(e=a.paths[c],!a.extendOnEveryPath){var i=e[e.length-1].extendList;i&&i.length||(b=this.findMatch(f[d],e),b.length&&(f[d].hasFoundMatches=!0,f[d].selfSelectors.forEach(function(a){g.push(h.extendSelector(b,e,a))})))}a.paths=a.paths.concat(g)}},findMatch:function(a,b){var c,d,e,f,g,h,i,j=this,k=a.selector.elements,l=[],m=[];for(c=0;b.length>c;c++)for(d=b[c],e=0;d.elements.length>e;e++)for(f=d.elements[e],(a.allowBefore||0===c&&0===e)&&l.push({pathIndex:c,index:e,matched:0,initialCombinator:f.combinator}),h=0;l.length>h;h++)i=l[h],g=f.combinator.value,""===g&&0===e&&(g=" "),!j.isElementValuesEqual(k[i.matched].value,f.value)||i.matched>0&&k[i.matched].combinator.value!==g?i=null:i.matched++,i&&(i.finished=i.matched===k.length,i.finished&&!a.allowAfter&&(d.elements.length>e+1||b.length>c+1)&&(i=null)),i?i.finished&&(i.length=k.length,i.endPathIndex=c,i.endPathElementIndex=e+1,l.length=0,m.push(i)):(l.splice(h,1),h--);return m},isElementValuesEqual:function(a,b){if("string"==typeof a||"string"==typeof b)return a===b;if(a instanceof c.Attribute)return a.op!==b.op||a.key!==b.key?!1:a.value&&b.value?(a=a.value.value||a.value,b=b.value.value||b.value,a===b):a.value||b.value?!1:!0;if(a=a.value,b=b.value,a instanceof c.Selector){if(!(b instanceof c.Selector)||a.elements.length!==b.elements.length)return!1;for(var d=0;a.elements.length>d;d++){if(a.elements[d].combinator.value!==b.elements[d].combinator.value&&(0!==d||(a.elements[d].combinator.value||" ")!==(b.elements[d].combinator.value||" ")))return!1;if(!this.isElementValuesEqual(a.elements[d].value,b.elements[d].value))return!1}return!0}return!1},extendSelector:function(a,b,d){var e,f,g,h,i,j=0,k=0,l=[];for(e=0;a.length>e;e++)h=a[e],f=b[h.pathIndex],g=new c.Element(h.initialCombinator,d.elements[0].value,d.elements[0].index,d.elements[0].currentFileInfo),h.pathIndex>j&&k>0&&(l[l.length-1].elements=l[l.length-1].elements.concat(b[j].elements.slice(k)),k=0,j++),i=f.elements.slice(k,h.index).concat([g]).concat(d.elements.slice(1)),j===h.pathIndex&&e>0?l[l.length-1].elements=l[l.length-1].elements.concat(i):(l=l.concat(b.slice(j,h.pathIndex)),l.push(new c.Selector(i))),j=h.endPathIndex,k=h.endPathElementIndex,k>=b[j].elements.length&&(k=0,j++);return b.length>j&&k>0&&(l[l.length-1].elements=l[l.length-1].elements.concat(b[j].elements.slice(k)),j++),l=l.concat(b.slice(j,b.length))},visitRulesetOut:function(){},visitMedia:function(a){var b=a.allExtends.concat(this.allExtendsStack[this.allExtendsStack.length-1]);b=b.concat(this.doExtendChaining(b,a.allExtends)),this.allExtendsStack.push(b)},visitMediaOut:function(){var a=this.allExtendsStack.length-1;this.allExtendsStack.length=a},visitDirective:function(a){var b=a.allExtends.concat(this.allExtendsStack[this.allExtendsStack.length-1]);b=b.concat(this.doExtendChaining(b,a.allExtends)),this.allExtendsStack.push(b)},visitDirectiveOut:function(){var a=this.allExtendsStack.length-1;this.allExtendsStack.length=a}},b.exports=g},{"../logger":32,"../tree":61,"./visitor":89}],84:[function(a,b){function c(a){this.imports=[],this.variableImports=[],this._onSequencerEmpty=a,this._currentDepth=0}c.prototype.addImport=function(a){var b=this,c={callback:a,args:null,isReady:!1};return this.imports.push(c),function(){c.args=Array.prototype.slice.call(arguments,0),c.isReady=!0,b.tryRun()}},c.prototype.addVariableImport=function(a){this.variableImports.push(a)},c.prototype.tryRun=function(){this._currentDepth++;try{for(;;){for(;this.imports.length>0;){var a=this.imports[0];if(!a.isReady)return;this.imports=this.imports.slice(1),a.callback.apply(null,a.args)}if(0===this.variableImports.length)break;var b=this.variableImports[0];this.variableImports=this.variableImports.slice(1),b()}}finally{this._currentDepth--}0===this._currentDepth&&this._onSequencerEmpty&&this._onSequencerEmpty()},b.exports=c},{}],85:[function(a,b){var c=a("../contexts"),d=a("./visitor"),e=a("./import-sequencer"),f=function(a,b){this._visitor=new d(this),this._importer=a,this._finish=b,this.context=new c.Eval,this.importCount=0,this.onceFileDetectionMap={},this.recursionDetector={},this._sequencer=new e(this._onSequencerEmpty.bind(this))};f.prototype={isReplacing:!1,run:function(a){try{this._visitor.visit(a)}catch(b){this.error=b}this.isFinished=!0,this._sequencer.tryRun()},_onSequencerEmpty:function(){this.isFinished&&this._finish(this.error)},visitImport:function(a,b){var d=a.options.inline;if(!a.css||d){var e=new c.Eval(this.context,this.context.frames.slice(0)),f=e.frames[0];this.importCount++,a.isVariableImport()?this._sequencer.addVariableImport(this.processImportNode.bind(this,a,e,f)):this.processImportNode(a,e,f)}b.visitDeeper=!1},processImportNode:function(a,b,c){var d,e=a.options.inline;try{d=a.evalForImport(b)}catch(f){f.filename||(f.index=a.index,f.filename=a.currentFileInfo.filename),a.css=!0,a.error=f}if(!d||d.css&&!e)this.importCount--,this.isFinished&&this._sequencer.tryRun();else{d.options.multiple&&(b.importMultiple=!0);for(var g=void 0===d.css,h=0;c.rules.length>h;h++)if(c.rules[h]===a){c.rules[h]=d;break}var i=this.onImported.bind(this,d,b),j=this._sequencer.addImport(i);this._importer.push(d.getPath(),g,d.currentFileInfo,d.options,j)}},onImported:function(a,b,c,d,e,f){c&&(c.filename||(c.index=a.index,c.filename=a.currentFileInfo.filename),this.error=c);var g=this,h=a.options.inline,i=a.options.plugin,j=a.options.optional,k=e||f in g.recursionDetector;if(b.importMultiple||(a.skip=k?!0:function(){return f in g.onceFileDetectionMap?!0:(g.onceFileDetectionMap[f]=!0,!1)}),!f&&j&&(a.skip=!0),d&&(a.root=d,a.importedFilename=f,!(h||i||!b.importMultiple&&k))){g.recursionDetector[f]=!0;var l=this.context;this.context=b;try{this._visitor.visit(d)}catch(c){this.error=c}this.context=l}g.importCount--,g.isFinished&&g._sequencer.tryRun()},visitRule:function(a,b){"DetachedRuleset"===a.value.type?this.context.frames.unshift(a):b.visitDeeper=!1},visitRuleOut:function(a){"DetachedRuleset"===a.value.type&&this.context.frames.shift()},visitDirective:function(a){this.context.frames.unshift(a)},visitDirectiveOut:function(){this.context.frames.shift()},visitMixinDefinition:function(a){this.context.frames.unshift(a)},visitMixinDefinitionOut:function(){this.context.frames.shift()},visitRuleset:function(a){this.context.frames.unshift(a)},visitRulesetOut:function(){this.context.frames.shift()},visitMedia:function(a){this.context.frames.unshift(a.rules[0])},visitMediaOut:function(){this.context.frames.shift()}},b.exports=f},{"../contexts":10,"./import-sequencer":84,"./visitor":89}],86:[function(a,b){var c={Visitor:a("./visitor"),ImportVisitor:a("./import-visitor"),ExtendVisitor:a("./extend-visitor"),JoinSelectorVisitor:a("./join-selector-visitor"),ToCSSVisitor:a("./to-css-visitor")};b.exports=c},{"./extend-visitor":83,"./import-visitor":85,"./join-selector-visitor":87,"./to-css-visitor":88,"./visitor":89
}],87:[function(a,b){var c=a("./visitor"),d=function(){this.contexts=[[]],this._visitor=new c(this)};d.prototype={run:function(a){return this._visitor.visit(a)},visitRule:function(a,b){b.visitDeeper=!1},visitMixinDefinition:function(a,b){b.visitDeeper=!1},visitRuleset:function(a){var b,c=this.contexts[this.contexts.length-1],d=[];this.contexts.push(d),a.root||(b=a.selectors,b&&(b=b.filter(function(a){return a.getIsOutput()}),a.selectors=b.length?b:b=null,b&&a.joinSelectors(d,c,b)),b||(a.rules=null),a.paths=d)},visitRulesetOut:function(){this.contexts.length=this.contexts.length-1},visitMedia:function(a){var b=this.contexts[this.contexts.length-1];a.rules[0].root=0===b.length||b[0].multiMedia},visitDirective:function(a){var b=this.contexts[this.contexts.length-1];a.rules&&a.rules.length&&(a.rules[0].root=a.isRooted||0===b.length||null)}},b.exports=d},{"./visitor":89}],88:[function(a,b){var c=a("../tree"),d=a("./visitor"),e=function(a){this._visitor=new d(this),this._context=a};e.prototype={isReplacing:!0,run:function(a){return this._visitor.visit(a)},visitRule:function(a){return a.variable?void 0:a},visitMixinDefinition:function(a){a.frames=[]},visitExtend:function(){},visitComment:function(a){return a.isSilent(this._context)?void 0:a},visitMedia:function(a,b){return a.accept(this._visitor),b.visitDeeper=!1,a.rules.length?a:void 0},visitImport:function(a){return void 0!==a.path.currentFileInfo.reference&&a.css?void 0:a},visitDirective:function(a,b){function d(a){var b,c=a.rules;1!==c.length||c[0].paths&&0!==c[0].paths.length||(c=c[0].rules);for(var d=0;c.length>d;d++)if(b=c[d],b.getIsReferenced&&b.getIsReferenced())return!0;return!1}if("@charset"===a.name){if(!a.getIsReferenced())return;if(this.charset){if(a.debugInfo){var e=new c.Comment("/* "+a.toCSS(this._context).replace(/\n/g,"")+" */\n");return e.debugInfo=a.debugInfo,this._visitor.visit(e)}return}this.charset=!0}if(a.rules&&a.rules.length){if(this._mergeRules(a.rules[0].rules),a.accept(this._visitor),b.visitDeeper=!1,a.getIsReferenced())return a;if(!a.rules||!a.rules.length)return;if(d(a))return a.markReferenced(),a}else if(a.getIsReferenced())return a},checkPropertiesInRoot:function(a){for(var b,d=0;a.length>d;d++)if(b=a[d],b instanceof c.Rule&&!b.variable)throw{message:"properties must be inside selector blocks, they cannot be in the root.",index:b.index,filename:b.currentFileInfo?b.currentFileInfo.filename:null}},visitRuleset:function(a,b){var d,e=[];if(a.firstRoot&&this.checkPropertiesInRoot(a.rules),a.root)a.accept(this._visitor),b.visitDeeper=!1,(a.firstRoot||a.rules&&a.rules.length>0)&&e.splice(0,0,a);else{a.paths&&(a.paths=a.paths.filter(function(a){var b;for(" "===a[0].elements[0].combinator.value&&(a[0].elements[0].combinator=new c.Combinator("")),b=0;a.length>b;b++)if(a[b].getIsReferenced()&&a[b].getIsOutput())return!0;return!1}));for(var f=a.rules,g=f?f.length:0,h=0;g>h;)d=f[h],d&&d.rules?(e.push(this._visitor.visit(d)),f.splice(h,1),g--):h++;g>0?a.accept(this._visitor):a.rules=null,b.visitDeeper=!1,f=a.rules,f&&(this._mergeRules(f),f=a.rules),f&&(this._removeDuplicateRules(f),f=a.rules),f&&f.length>0&&a.paths.length>0&&e.splice(0,0,a)}return 1===e.length?e[0]:e},_removeDuplicateRules:function(a){if(a){var b,d,e,f={};for(e=a.length-1;e>=0;e--)if(d=a[e],d instanceof c.Rule)if(f[d.name]){b=f[d.name],b instanceof c.Rule&&(b=f[d.name]=[f[d.name].toCSS(this._context)]);var g=d.toCSS(this._context);-1!==b.indexOf(g)?a.splice(e,1):b.push(g)}else f[d.name]=d}},_mergeRules:function(a){if(a){for(var b,d,e,f={},g=0;a.length>g;g++)d=a[g],d instanceof c.Rule&&d.merge&&(e=[d.name,d.important?"!":""].join(","),f[e]?a.splice(g--,1):f[e]=[],f[e].push(d));Object.keys(f).map(function(a){function e(a){return new c.Expression(a.map(function(a){return a.value}))}function g(a){return new c.Value(a.map(function(a){return a}))}if(b=f[a],b.length>1){d=b[0];var h=[],i=[];b.map(function(a){"+"===a.merge&&(i.length>0&&h.push(e(i)),i=[]),i.push(a)}),h.push(e(i)),d.value=g(h)}})}},visitAnonymous:function(a){return a.getIsReferenced()?(a.accept(this._visitor),a):void 0}},b.exports=e},{"../tree":61,"./visitor":89}],89:[function(a,b){function c(a){return a}function d(a,b){var c,e;for(c in a)if(a.hasOwnProperty(c))switch(e=a[c],typeof e){case"function":e.prototype&&e.prototype.type&&(e.prototype.typeIndex=b++);break;case"object":b=d(e,b)}return b}var e=a("../tree"),f={visitDeeper:!0},g=!1,h=function(a){this._implementation=a,this._visitFnCache=[],g||(d(e,1),g=!0)};h.prototype={visit:function(a){if(!a)return a;var b=a.typeIndex;if(!b)return a;var d,e=this._visitFnCache,g=this._implementation,h=b<<1,i=1|h,j=e[h],k=e[i],l=f;if(l.visitDeeper=!0,j||(d="visit"+a.type,j=g[d]||c,k=g[d+"Out"]||c,e[h]=j,e[i]=k),j!==c){var m=j.call(g,a,l);g.isReplacing&&(a=m)}return l.visitDeeper&&a&&a.accept&&a.accept(this),k!=c&&k.call(g,a),a},visitArray:function(a,b){if(!a)return a;var c,d=a.length;if(b||!this._implementation.isReplacing){for(c=0;d>c;c++)this.visit(a[c]);return a}var e=[];for(c=0;d>c;c++){var f=this.visit(a[c]);void 0!==f&&(f.splice?f.length&&this.flatten(f,e):e.push(f))}return e},flatten:function(a,b){b||(b=[]);var c,d,e,f,g,h;for(d=0,c=a.length;c>d;d++)if(e=a[d],void 0!==e)if(e.splice)for(g=0,f=e.length;f>g;g++)h=e[g],void 0!==h&&(h.splice?h.length&&this.flatten(h,b):b.push(h));else b.push(e);return b}},b.exports=h},{"../tree":61}],90:[function(a,b){function c(){if(!g){g=!0;for(var a,b=f.length;b;){a=f,f=[];for(var c=-1;++c<b;)a[c]();b=f.length}g=!1}}function d(){}var e=b.exports={},f=[],g=!1;e.nextTick=function(a){f.push(a),g||setTimeout(c,0)},e.title="browser",e.browser=!0,e.env={},e.argv=[],e.version="",e.versions={},e.on=d,e.addListener=d,e.once=d,e.off=d,e.removeListener=d,e.removeAllListeners=d,e.emit=d,e.binding=function(){throw new Error("process.binding is not supported")},e.cwd=function(){return"/"},e.chdir=function(){throw new Error("process.chdir is not supported")},e.umask=function(){return 0}},{}],91:[function(a,b){"use strict";function c(a){function b(a){return null===i?void k.push(a):void f(function(){var b=i?a.onFulfilled:a.onRejected;if(null===b)return void(i?a.resolve:a.reject)(j);var c;try{c=b(j)}catch(d){return void a.reject(d)}a.resolve(c)})}function c(a){try{if(a===l)throw new TypeError("A promise cannot be resolved with itself.");if(a&&("object"==typeof a||"function"==typeof a)){var b=a.then;if("function"==typeof b)return void e(b.bind(a),c,g)}i=!0,j=a,h()}catch(d){g(d)}}function g(a){i=!1,j=a,h()}function h(){for(var a=0,c=k.length;c>a;a++)b(k[a]);k=null}if("object"!=typeof this)throw new TypeError("Promises must be constructed via new");if("function"!=typeof a)throw new TypeError("not a function");var i=null,j=null,k=[],l=this;this.then=function(a,c){return new l.constructor(function(e,f){b(new d(a,c,e,f))})},e(a,c,g)}function d(a,b,c,d){this.onFulfilled="function"==typeof a?a:null,this.onRejected="function"==typeof b?b:null,this.resolve=c,this.reject=d}function e(a,b,c){var d=!1;try{a(function(a){d||(d=!0,b(a))},function(a){d||(d=!0,c(a))})}catch(e){if(d)return;d=!0,c(e)}}var f=a("asap");b.exports=c},{asap:93}],92:[function(a,b){"use strict";function c(a){this.then=function(b){return"function"!=typeof b?this:new d(function(c,d){e(function(){try{c(b(a))}catch(e){d(e)}})})}}var d=a("./core.js"),e=a("asap");b.exports=d,c.prototype=d.prototype;var f=new c(!0),g=new c(!1),h=new c(null),i=new c(void 0),j=new c(0),k=new c("");d.resolve=function(a){if(a instanceof d)return a;if(null===a)return h;if(void 0===a)return i;if(a===!0)return f;if(a===!1)return g;if(0===a)return j;if(""===a)return k;if("object"==typeof a||"function"==typeof a)try{var b=a.then;if("function"==typeof b)return new d(b.bind(a))}catch(e){return new d(function(a,b){b(e)})}return new c(a)},d.all=function(a){var b=Array.prototype.slice.call(a);return new d(function(a,c){function d(f,g){try{if(g&&("object"==typeof g||"function"==typeof g)){var h=g.then;if("function"==typeof h)return void h.call(g,function(a){d(f,a)},c)}b[f]=g,0===--e&&a(b)}catch(i){c(i)}}if(0===b.length)return a([]);for(var e=b.length,f=0;b.length>f;f++)d(f,b[f])})},d.reject=function(a){return new d(function(b,c){c(a)})},d.race=function(a){return new d(function(b,c){a.forEach(function(a){d.resolve(a).then(b,c)})})},d.prototype["catch"]=function(a){return this.then(null,a)}},{"./core.js":91,asap:93}],93:[function(a,b){(function(a){function c(){for(;e.next;){e=e.next;var a=e.task;e.task=void 0;var b=e.domain;b&&(e.domain=void 0,b.enter());try{a()}catch(d){if(i)throw b&&b.exit(),setTimeout(c,0),b&&b.enter(),d;setTimeout(function(){throw d},0)}b&&b.exit()}g=!1}function d(b){f=f.next={task:b,domain:i&&a.domain,next:null},g||(g=!0,h())}var e={task:void 0,next:null},f=e,g=!1,h=void 0,i=!1;if("undefined"!=typeof a&&a.nextTick)i=!0,h=function(){a.nextTick(c)};else if("function"==typeof setImmediate)h="undefined"!=typeof window?setImmediate.bind(window,c):function(){setImmediate(c)};else if("undefined"!=typeof MessageChannel){var j=new MessageChannel;j.port1.onmessage=c,h=function(){j.port2.postMessage(0)}}else h=function(){setTimeout(c,0)};b.exports=d}).call(this,a("_process"))},{_process:90}],94:[function(){"function"!=typeof Promise.prototype.done&&(Promise.prototype.done=function(){var a=arguments.length?this.then.apply(this,arguments):this;a.then(null,function(a){setTimeout(function(){throw a},0)})})},{}],95:[function(a){a("asap");"undefined"==typeof Promise&&(Promise=a("./lib/core.js"),a("./lib/es6-extensions.js")),a("./polyfill-done.js")},{"./lib/core.js":91,"./lib/es6-extensions.js":92,"./polyfill-done.js":94,asap:93}]},{},[2])(2)});
.DS_Store
node_modules
test/lesshat.less
language: node_js
node_js:
- 0.10
notifications:
email: false
before_install:
- "npm install -g grunt-cli"
script: "grunt test"
{
"name": "more-or-less",
"version": "1.5.1",
"homepage": "https://github.com/pixelass/more-or-less",
"authors": [
"Gregor Adams <greg@pixelass.com>"
],
"description": "smart mixins and functions for Less.js",
"main": "_more.less",
"keywords": [
"less",
"mixins"
],
"license": "MIT",
"ignore": [
"**/.*",
"node_modules",
"bower_components",
"test",
"tests"
]
}
<!DOCTYPE html>
<html>
<head>
<title>Animaless</title>
<meta charset=utf-8>
<meta name=description content="use less to describe animals">
<meta name=viewport content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="css/animaless.css">
</head>
<body>
<div id="content">
<ul>
<li class="animal alpaca"></li>
<li class="animal bat"></li>
<li class="animal bear"></li>
<li class="animal beaver"></li>
<li class="animal bee"></li>
<li class="animal cat"></li>
<li class="animal chicken"></li>
<li class="animal cow"></li>
<li class="animal crocodile"></li>
<li class="animal dog"></li>
<li class="animal duck"></li>
<li class="animal elasmosaurus"></li>
<li class="animal elephant"></li>
<li class="animal giraffe"></li>
<li class="animal lion"></li>
<li class="animal monkey"></li>
<li class="animal moose"></li>
<li class="animal mouse"></li>
<li class="animal owl"></li>
<li class="animal panda"></li>
<li class="animal peacock"></li>
<li class="animal penguin"></li>
<li class="animal pig"></li>
<li class="animal prontosaurus"></li>
<li class="animal pterodactylus"></li>
<li class="animal rabbit"></li>
<li class="animal rhino"></li>
<li class="animal sheep"></li>
<li class="animal squirrel"></li>
<li class="animal tiger"></li>
<li class="animal trex"></li>
<li class="animal triceratops"></li>
<li class="animal turkey"></li>
<li class="animal zebra"></li>
</ul>
</div>
</body>
</html>
<!DOCTYPE html>
<html>
<head>
<title>Animation keyframes</title>
<meta charset=utf-8>
<meta name=description content="batch creation of keyframe animations">
<meta name=viewport content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="css/animationframes.css">
</head>
<body>
<div id="content">
<ul>
<li class="box slidein"><div class="box-inner"></div>
</li><li class="box slideout"><div class="box-inner"></div>
</li><li class="box marquee"><div class="box-inner"></div>
</li><li class="box fadein"><div class="box-inner"></div>
</li><li class="box fadeout"><div class="box-inner"></div>
</li><li class="box colorfade"><div class="box-inner"></div>
</li><li class="box rainbow"><div class="box-inner"></div>
</li><li class="box blink"><div class="box-inner"></div>
</li><li class="box flicker"><div class="box-inner"></div>
</li><li class="box fadein-grow"><div class="box-inner"></div>
</li><li class="box fadeout-shrink"><div class="box-inner"></div>
</li><li class="box grow"><div class="box-inner"></div>
</li><li class="box shrink"><div class="box-inner"></div>
</li><li class="box drop"><div class="box-inner"></div>
</li><li class="box rise"><div class="box-inner"></div>
</li><li class="box bounce-x"><div class="box-inner"></div>
</li><li class="box bounce-y"><div class="box-inner"></div>
</li><li class="box bounce-xy"><div class="box-inner"></div>
</li><li class="box run"><div class="box-inner"></div>
</li><li class="box cross-run"><div class="box-inner"></div>
</li><li class="box diamond-run"><div class="box-inner"></div>
</li><li class="box kaleidoscope-in"><div class="box-inner"></div>
</li><li class="box kaleidoscope-out"><div class="box-inner"></div>
</li><li class="box radar"><div class="box-inner"></div></li>
</ul>
</div>
</body>
</html>
body {
background: #fff8c2;
}
*,
*:before,
*:after {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
margin: 0;
padding: 0;
}
.animal {
display: inline-block;
vertical-align: top;
white-space: nowrap;
background: #cec79c;
color: #333226;
position: relative;
font-weight: 700;
font-family: sans-serif;
font-size: 12px;
margin: 5px;
padding: 5px;
list-style: none;
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
border-radius: 3px;
-webkit-box-shadow: 2px 2px 0 0 #868692;
-moz-box-shadow: 2px 2px 0 0 #868692;
box-shadow: 2px 2px 0 0 #868692;
}
.animal:hover {
background: #868692;
-webkit-box-shadow: 2px 2px 0 0 #333226;
-moz-box-shadow: 2px 2px 0 0 #333226;
box-shadow: 2px 2px 0 0 #333226;
}
.animal:after,
.animal:before {
display: inline-block;
vertical-align: middle;
padding: 5px;
}
.animal:before {
background-image: url('../images/sprites/animaless.png');
background-size: auto 100px;
height: 50px;
width: 50px;
content: '';
}
.animal.alpaca:before {
background-position: 0px -50px;
background-position: 0px 0;
}
.animal.bat:before {
background-position: -50px -50px;
background-position: -50px 0;
}
.animal.bear:before {
background-position: -100px -50px;
background-position: -100px 0;
}
.animal.beaver:before {
background-position: -150px -50px;
background-position: -150px 0;
}
.animal.bee:before {
background-position: -200px -50px;
background-position: -200px 0;
}
.animal.cat:before {
background-position: -250px -50px;
background-position: -250px 0;
}
.animal.chicken:before {
background-position: -300px -50px;
background-position: -300px 0;
}
.animal.cow:before {
background-position: -350px -50px;
background-position: -350px 0;
}
.animal.crocodile:before {
background-position: -400px -50px;
background-position: -400px 0;
}
.animal.dog:before {
background-position: -450px -50px;
background-position: -450px 0;
}
.animal.duck:before {
background-position: -500px -50px;
background-position: -500px 0;
}
.animal.elasmosaurus:before {
background-position: -550px -50px;
background-position: -550px 0;
}
.animal.elephant:before {
background-position: -600px -50px;
background-position: -600px 0;
}
.animal.giraffe:before {
background-position: -650px -50px;
background-position: -650px 0;
}
.animal.gnu:before {
background-position: -700px -50px;
background-position: -700px 0;
}
.animal.goat:before {
background-position: -750px -50px;
background-position: -750px 0;
}
.animal.hippo:before {
background-position: -800px -50px;
background-position: -800px 0;
}
.animal.kangaroo:before {
background-position: -850px -50px;
background-position: -850px 0;
}
.animal.leopard:before {
background-position: -900px -50px;
background-position: -900px 0;
}
.animal.lion:before {
background-position: -950px -50px;
background-position: -950px 0;
}
.animal.monkey:before {
background-position: -1000px -50px;
}
.animal.moose:before {
background-position: -1050px -50px;
}
.animal.mouse:before {
background-position: -1100px -50px;
}
.animal.owl:before {
background-position: -1150px -50px;
}
.animal.panda:before {
background-position: -1200px -50px;
}
.animal.peacock:before {
background-position: -1250px -50px;
}
.animal.penguin:before {
background-position: -1300px -50px;
}
.animal.pig:before {
background-position: -1350px -50px;
}
.animal.prontosaurus:before {
background-position: -1400px -50px;
}
.animal.pterodactylus:before {
background-position: -1450px -50px;
}
.animal.rabbit:before {
background-position: -1500px -50px;
}
.animal.rhino:before {
background-position: -1550px -50px;
}
.animal.sheep:before {
background-position: -1600px -50px;
}
.animal.squirrel:before {
background-position: -1650px -50px;
}
.animal.tiger:before {
background-position: -1700px -50px;
}
.animal.trex:before {
background-position: -1750px -50px;
}
.animal.triceratops:before {
background-position: -1800px -50px;
}
.animal.turkey:before {
background-position: -1850px -50px;
}
.animal.zebra:before {
background-position: -1900px -50px;
}
.animal.alpaca:after {
content: 'The alpaca can be seen on a safari.';
}
.animal.bat:after {
content: 'The bat can fly.';
}
.animal.bear:after {
content: 'The bear lives in a forest is dangerous.';
}
.animal.beaver:after {
content: 'The beaver lives in a forest.';
}
.animal.bee:after {
content: 'The bee lives in a forest can fly.';
}
.animal.cat:after {
content: 'The cat can be held as a pet.';
}
.animal.chicken:after {
content: 'The chicken lives on a farm is a bird can fly.';
}
.animal.cow:after {
content: 'The cow lives on a farm.';
}
.animal.crocodile:after {
content: 'The crocodile is dangerous can be seen on a safari.';
}
.animal.dog:after {
content: 'The dog lives on a farm can be held as a pet.';
}
.animal.duck:after {
content: 'The duck lives on a farm is a bird can fly.';
}
.animal.elasmosaurus:after {
content: 'The elasmosaurus is dangerous is a dinosaur lives underwater is extinct.';
}
.animal.elephant:after {
content: 'The elephant is dangerous can be seen on a safari.';
}
.animal.giraffe:after {
content: 'The giraffe can be seen on a safari.';
}
.animal.gnu:after {
content: 'The gnu is dangerous can be seen on a safari.';
}
.animal.goat:after {
content: 'The goat lives on a farm.';
}
.animal.hippo:after {
content: 'The hippo is dangerous can be seen on a safari.';
}
.animal.kangaroo:after {
content: 'The kangaroo is dangerous.';
}
.animal.leopard:after {
content: 'The leopard is dangerous can be seen on a safari.';
}
.animal.lion:after {
content: 'The lion is dangerous can be seen on a safari.';
}
.animal.monkey:after {
content: 'The monkey can be seen on a safari.';
}
.animal.moose:after {
content: 'The moose can be seen on a safari.';
}
.animal.mouse:after {
content: 'The mouse lives in a forest lives on a farm can be held as a pet.';
}
.animal.owl:after {
content: 'The owl lives in a forest is a bird can fly.';
}
.animal.panda:after {
content: 'The panda is dangerous.';
}
.animal.peacock:after {
content: 'The peacock is a bird.';
}
.animal.penguin:after {
content: 'The penguin is a bird.';
}
.animal.pig:after {
content: 'The pig lives on a farm.';
}
.animal.prontosaurus:after {
content: 'The prontosaurus is dangerous is a dinosaur is extinct.';
}
.animal.pterodactylus:after {
content: 'The pterodactylus is dangerous is a dinosaur can fly is extinct.';
}
.animal.rabbit:after {
content: 'The rabbit lives in a forest lives on a farm can be held as a pet.';
}
.animal.rhino:after {
content: 'The rhino is dangerous can be seen on a safari.';
}
.animal.sheep:after {
content: 'The sheep lives on a farm.';
}
.animal.squirrel:after {
content: 'The squirrel lives in a forest.';
}
.animal.tiger:after {
content: 'The tiger is dangerous can be seen on a safari.';
}
.animal.trex:after {
content: 'The trex is dangerous is a dinosaur is extinct.';
}
.animal.triceratops:after {
content: 'The triceratops is dangerous is a dinosaur is extinct.';
}
.animal.turkey:after {
content: 'The turkey lives on a farm is a bird can fly.';
}
.animal.zebra:after {
content: 'The zebra can be seen on a safari.';
}
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-moz-min-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2/1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
.animal:before {
background-image: url('../images/sprites/animaless@2x.png');
}
}
*,
*:before,
*:after {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
background: #fff8c2;
}
#content {
max-width: 960px;
margin: 0 auto;
}
.box {
height: 140px;
width: 140px;
margin: 10px;
background: #cec79c;
position: relative;
list-style: none;
display: inline-block;
-webkit-border-radius: 9px;
-moz-border-radius: 9px;
border-radius: 9px;
overflow: hidden;
}
.box:before {
position: absolute;
bottom: 0;
left: 0;
z-index: 2;
height: 30px;
width: 140px;
line-height: 30px;
text-align: center;
color: #333226;
font-family: sans-serif;
font-weight: 700;
font-size: 12px;
}
.box-inner {
height: 70px;
width: 70px;
background: #868692;
position: absolute;
display: block;
-webkit-border-radius: 9px;
-moz-border-radius: 9px;
border-radius: 9px;
z-index: 0;
}
.fadein .box-inner,
.fadein-grow .box-inner {
opacity: 0;
}
.rise .box-inner {
top: 70px;
}
.kaleidoscope-in .box-inner {
background: none;
border: 0 dashed #868692;
}
.kaleidoscope-out .box-inner {
background: none;
border: 70px dashed #868692;
}
.radar .box-inner {
background: none;
border: 0 double #868692;
height: 280px;
width: 280px;
top: -70px;
left: -70px;
-webkit-border-radius: 140px;
-moz-border-radius: 140px;
border-radius: 140px;
}
.slidein .box-inner,
.marquee .box-inner {
left: 100%;
}
.diamond-run .box-inner,
.cross-run .box-inner {
left: 35px;
}
.shrink .box-inner,
.fadeout-shrink .box-inner,
.slidein .box-inner,
.slideout .box-inner,
.marquee .box-inner,
.fadein .box-inner,
.fadeout .box-inner,
.kaleidoscope-in .box-inner,
.kaleidoscope-out .box-inner,
.blink .box-inner,
.colorfade .box-inner,
.rainbow .box-inner,
.flicker .box-inner {
height: 140px;
width: 140px;
}
.box.slideout:hover .box-inner {
-webkit-animation: slideout 500ms linear 1;
-moz-animation: slideout 500ms linear 1;
animation: slideout 500ms linear 1;
-webkit-animation-fill-mode: forwards;
-moz-animation-fill-mode: forwards;
animation-fill-mode: forwards;
}
.box.slideout:before {
content: 'slideout';
}
.box.slidein:hover .box-inner {
-webkit-animation: slidein 500ms linear 1;
-moz-animation: slidein 500ms linear 1;
animation: slidein 500ms linear 1;
-webkit-animation-fill-mode: forwards;
-moz-animation-fill-mode: forwards;
animation-fill-mode: forwards;
}
.box.slidein:before {
content: 'slidein';
}
.box.marquee:hover .box-inner {
-webkit-animation: marquee 1000ms linear infinite;
-moz-animation: marquee 1000ms linear infinite;
animation: marquee 1000ms linear infinite;
-webkit-animation-fill-mode: none;
-moz-animation-fill-mode: none;
animation-fill-mode: none;
}
.box.marquee:before {
content: 'marquee';
}
.box.fadeout:hover .box-inner {
-webkit-animation: fadeout 500ms linear 1;
-moz-animation: fadeout 500ms linear 1;
animation: fadeout 500ms linear 1;
-webkit-animation-fill-mode: forwards;
-moz-animation-fill-mode: forwards;
animation-fill-mode: forwards;
}
.box.fadeout:before {
content: 'fadeout';
}
.box.fadein:hover .box-inner {
-webkit-animation: fadein 500ms linear 1;
-moz-animation: fadein 500ms linear 1;
animation: fadein 500ms linear 1;
-webkit-animation-fill-mode: forwards;
-moz-animation-fill-mode: forwards;
animation-fill-mode: forwards;
}
.box.fadein:before {
content: 'fadein';
}
.box.colorfade:hover .box-inner {
-webkit-animation: colorfade 500ms linear 1;
-moz-animation: colorfade 500ms linear 1;
animation: colorfade 500ms linear 1;
-webkit-animation-fill-mode: forwards;
-moz-animation-fill-mode: forwards;
animation-fill-mode: forwards;
}
.box.colorfade:before {
content: 'colorfade';
}
.box.rainbow:hover .box-inner {
-webkit-animation: rainbow 3000ms linear infinite;
-moz-animation: rainbow 3000ms linear infinite;
animation: rainbow 3000ms linear infinite;
-webkit-animation-fill-mode: none;
-moz-animation-fill-mode: none;
animation-fill-mode: none;
}
.box.rainbow:before {
content: 'rainbow';
}
.box.blink:hover .box-inner {
-webkit-animation: blink 500ms linear infinite;
-moz-animation: blink 500ms linear infinite;
animation: blink 500ms linear infinite;
-webkit-animation-fill-mode: none;
-moz-animation-fill-mode: none;
animation-fill-mode: none;
}
.box.blink:before {
content: 'blink';
}
.box.flicker:hover .box-inner {
-webkit-animation: flicker 500ms linear infinite;
-moz-animation: flicker 500ms linear infinite;
animation: flicker 500ms linear infinite;
-webkit-animation-fill-mode: none;
-moz-animation-fill-mode: none;
animation-fill-mode: none;
}
.box.flicker:before {
content: 'flicker';
}
.box.grow:hover .box-inner {
-webkit-animation: grow 500ms linear 1;
-moz-animation: grow 500ms linear 1;
animation: grow 500ms linear 1;
-webkit-animation-fill-mode: forwards;
-moz-animation-fill-mode: forwards;
animation-fill-mode: forwards;
}
.box.grow:before {
content: 'grow';
}
.box.shrink:hover .box-inner {
-webkit-animation: shrink 500ms linear 1;
-moz-animation: shrink 500ms linear 1;
animation: shrink 500ms linear 1;
-webkit-animation-fill-mode: forwards;
-moz-animation-fill-mode: forwards;
animation-fill-mode: forwards;
}
.box.shrink:before {
content: 'shrink';
}
.box.fadein-grow:hover .box-inner {
-webkit-animation: fadein-grow 500ms linear 1;
-moz-animation: fadein-grow 500ms linear 1;
animation: fadein-grow 500ms linear 1;
-webkit-animation-fill-mode: forwards;
-moz-animation-fill-mode: forwards;
animation-fill-mode: forwards;
}
.box.fadein-grow:before {
content: 'fadein-grow';
}
.box.fadeout-shrink:hover .box-inner {
-webkit-animation: fadeout-shrink 500ms linear 1;
-moz-animation: fadeout-shrink 500ms linear 1;
animation: fadeout-shrink 500ms linear 1;
-webkit-animation-fill-mode: forwards;
-moz-animation-fill-mode: forwards;
animation-fill-mode: forwards;
}
.box.fadeout-shrink:before {
content: 'fadeout-shrink';
}
.box.bounce-y:hover .box-inner {
-webkit-animation: bounce-y 1000ms linear infinite;
-moz-animation: bounce-y 1000ms linear infinite;
animation: bounce-y 1000ms linear infinite;
-webkit-animation-fill-mode: none;
-moz-animation-fill-mode: none;
animation-fill-mode: none;
}
.box.bounce-y:before {
content: 'bounce-y';
}
.box.bounce-x:hover .box-inner {
-webkit-animation: bounce-x 1000ms linear infinite;
-moz-animation: bounce-x 1000ms linear infinite;
animation: bounce-x 1000ms linear infinite;
-webkit-animation-fill-mode: none;
-moz-animation-fill-mode: none;
animation-fill-mode: none;
}
.box.bounce-x:before {
content: 'bounce-x';
}
.box.bounce-xy:hover .box-inner {
-webkit-animation: bounce-xy 1000ms linear infinite;
-moz-animation: bounce-xy 1000ms linear infinite;
animation: bounce-xy 1000ms linear infinite;
-webkit-animation-fill-mode: none;
-moz-animation-fill-mode: none;
animation-fill-mode: none;
}
.box.bounce-xy:before {
content: 'bounce-xy';
}
.box.drop:hover .box-inner {
-webkit-animation: drop 500ms linear 1;
-moz-animation: drop 500ms linear 1;
animation: drop 500ms linear 1;
-webkit-animation-fill-mode: forwards;
-moz-animation-fill-mode: forwards;
animation-fill-mode: forwards;
}
.box.drop:before {
content: 'drop';
}
.box.rise:hover .box-inner {
-webkit-animation: rise 500ms linear 1;
-moz-animation: rise 500ms linear 1;
animation: rise 500ms linear 1;
-webkit-animation-fill-mode: forwards;
-moz-animation-fill-mode: forwards;
animation-fill-mode: forwards;
}
.box.rise:before {
content: 'rise';
}
.box.kaleidoscope-in:hover .box-inner {
-webkit-animation: kaleidoscope-in 500ms linear 1;
-moz-animation: kaleidoscope-in 500ms linear 1;
animation: kaleidoscope-in 500ms linear 1;
-webkit-animation-fill-mode: forwards;
-moz-animation-fill-mode: forwards;
animation-fill-mode: forwards;
}
.box.kaleidoscope-in:before {
content: 'kaleidoscope-in';
}
.box.kaleidoscope-out:hover .box-inner {
-webkit-animation: kaleidoscope-out 500ms linear 1;
-moz-animation: kaleidoscope-out 500ms linear 1;
animation: kaleidoscope-out 500ms linear 1;
-webkit-animation-fill-mode: forwards;
-moz-animation-fill-mode: forwards;
animation-fill-mode: forwards;
}
.box.kaleidoscope-out:before {
content: 'kaleidoscope-out';
}
.box.radar:hover .box-inner {
-webkit-animation: radar 1000ms linear infinite;
-moz-animation: radar 1000ms linear infinite;
animation: radar 1000ms linear infinite;
-webkit-animation-fill-mode: none;
-moz-animation-fill-mode: none;
animation-fill-mode: none;
}
.box.radar:before {
content: 'radar';
}
.box.run:hover .box-inner {
-webkit-animation: run 2000ms linear infinite;
-moz-animation: run 2000ms linear infinite;
animation: run 2000ms linear infinite;
-webkit-animation-fill-mode: none;
-moz-animation-fill-mode: none;
animation-fill-mode: none;
}
.box.run:before {
content: 'run';
}
.box.cross-run:hover .box-inner {
-webkit-animation: cross-run 4000ms linear infinite;
-moz-animation: cross-run 4000ms linear infinite;
animation: cross-run 4000ms linear infinite;
-webkit-animation-fill-mode: none;
-moz-animation-fill-mode: none;
animation-fill-mode: none;
}
.box.cross-run:before {
content: 'cross-run';
}
.box.diamond-run:hover .box-inner {
-webkit-animation: diamond-run 2000ms linear infinite;
-moz-animation: diamond-run 2000ms linear infinite;
animation: diamond-run 2000ms linear infinite;
-webkit-animation-fill-mode: none;
-moz-animation-fill-mode: none;
animation-fill-mode: none;
}
.box.diamond-run:before {
content: 'diamond-run';
}
/* {
: */
@-webkit-keyframes slideout {
0%{left:0}100%{left:100%}
}
/*;
}
/**/
/* {
: */
@-moz-keyframes slideout {
0%{left:0}100%{left:100%}
}
/*;
}
/**/
/* {
: */
@keyframes slideout {
0%{left:0}100%{left:100%}
}
/*;
}
/**/
/* {
: */
@-webkit-keyframes slidein {
0%{left:100%}100%{left:0}
}
/*;
}
/**/
/* {
: */
@-moz-keyframes slidein {
0%{left:100%}100%{left:0}
}
/*;
}
/**/
/* {
: */
@keyframes slidein {
0%{left:100%}100%{left:0}
}
/*;
}
/**/
/* {
: */
@-webkit-keyframes marquee {
0%{left:100%}100%{left:-100%}
}
/*;
}
/**/
/* {
: */
@-moz-keyframes marquee {
0%{left:100%}100%{left:-100%}
}
/*;
}
/**/
/* {
: */
@keyframes marquee {
0%{left:100%}100%{left:-100%}
}
/*;
}
/**/
/* {
: */
@-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 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 colorfade {
0%{background-color:#605d48}100%{background-color:#92646c}
}
/*;
}
/**/
/* {
: */
@-moz-keyframes colorfade {
0%{background-color:#605d48}100%{background-color:#92646c}
}
/*;
}
/**/
/* {
: */
@keyframes colorfade {
0%{background-color:#605d48}100%{background-color:#92646c}
}
/*;
}
/**/
/* {
: */
@-webkit-keyframes rainbow {
0%,100%{background:#868692}16.66%{background:#6f927f}33.33%{background:#928974}49.99%{background:#927169}66.66%{background:#92646c}73.33%{background:#926d8e}
}
/*;
}
/**/
/* {
: */
@-moz-keyframes rainbow {
0%,100%{background:#868692}16.66%{background:#6f927f}33.33%{background:#928974}49.99%{background:#927169}66.66%{background:#92646c}73.33%{background:#926d8e}
}
/*;
}
/**/
/* {
: */
@keyframes rainbow {
0%,100%{background:#868692}16.66%{background:#6f927f}33.33%{background:#928974}49.99%{background:#927169}66.66%{background:#92646c}73.33%{background:#926d8e}
}
/*;
}
/**/
/* {
: */
@-webkit-keyframes blink {
0%,50%,100%{opacity:0}50.01%,99.99%{opacity:1}
}
/*;
}
/**/
/* {
: */
@-moz-keyframes blink {
0%,50%,100%{opacity:0}50.01%,99.99%{opacity:1}
}
/*;
}
/**/
/* {
: */
@keyframes blink {
0%,50%,100%{opacity:0}50.01%,99.99%{opacity:1}
}
/*;
}
/**/
/* {
: */
@-webkit-keyframes flicker {
0%,5%,20%,25%,100%{opacity:0}5.01%,19.99%,25.01%,99.99%{opacity:1}
}
/*;
}
/**/
/* {
: */
@-moz-keyframes flicker {
0%,5%,20%,25%,100%{opacity:0}5.01%,19.99%,25.01%,99.99%{opacity:1}
}
/*;
}
/**/
/* {
: */
@keyframes flicker {
0%,5%,20%,25%,100%{opacity:0}5.01%,19.99%,25.01%,99.99%{opacity:1}
}
/*;
}
/**/
/* {
: */
@-webkit-keyframes grow {
0%{height:70px;width:70px}100%{height:140px;width:140px}
}
/*;
}
/**/
/* {
: */
@-moz-keyframes grow {
0%{height:70px;width:70px}100%{height:140px;width:140px}
}
/*;
}
/**/
/* {
: */
@keyframes grow {
0%{height:70px;width:70px}100%{height:140px;width:140px}
}
/*;
}
/**/
/* {
: */
@-webkit-keyframes shrink {
0%{height:140px;width:140px}100%{height:70px;width:70px}
}
/*;
}
/**/
/* {
: */
@-moz-keyframes shrink {
0%{height:140px;width:140px}100%{height:70px;width:70px}
}
/*;
}
/**/
/* {
: */
@keyframes shrink {
0%{height:140px;width:140px}100%{height:70px;width:70px}
}
/*;
}
/**/
/* {
: */
@-webkit-keyframes fadein-grow {
0%{opacity:0;height:70px;width:70px}100%{opacity:1;height:140px;width:140px}
}
/*;
}
/**/
/* {
: */
@-moz-keyframes fadein-grow {
0%{opacity:0;height:70px;width:70px}100%{opacity:1;height:140px;width:140px}
}
/*;
}
/**/
/* {
: */
@keyframes fadein-grow {
0%{opacity:0;height:70px;width:70px}100%{opacity:1;height:140px;width:140px}
}
/*;
}
/**/
/* {
: */
@-webkit-keyframes fadeout-shrink {
0%{opacity:1;height:140px;width:140px}100%{opacity:0;height:70px;width:70px}
}
/*;
}
/**/
/* {
: */
@-moz-keyframes fadeout-shrink {
0%{opacity:1;height:140px;width:140px}100%{opacity:0;height:70px;width:70px}
}
/*;
}
/**/
/* {
: */
@keyframes fadeout-shrink {
0%{opacity:1;height:140px;width:140px}100%{opacity:0;height:70px;width:70px}
}
/*;
}
/**/
/* {
: */
@-webkit-keyframes bounce-y {
0%,100%{top:0;}50%{top:70px}
}
/*;
}
/**/
/* {
: */
@-moz-keyframes bounce-y {
0%,100%{top:0;}50%{top:70px}
}
/*;
}
/**/
/* {
: */
@keyframes bounce-y {
0%,100%{top:0;}50%{top:70px}
}
/*;
}
/**/
/* {
: */
@-webkit-keyframes bounce-x {
0%,100%{left:0;}50%{left:70px}
}
/*;
}
/**/
/* {
: */
@-moz-keyframes bounce-x {
0%,100%{left:0;}50%{left:70px}
}
/*;
}
/**/
/* {
: */
@keyframes bounce-x {
0%,100%{left:0;}50%{left:70px}
}
/*;
}
/**/
/* {
: */
@-webkit-keyframes bounce-xy {
0%,100%{top:0;left:0;}50%{top:70px;left:70px}
}
/*;
}
/**/
/* {
: */
@-moz-keyframes bounce-xy {
0%,100%{top:0;left:0;}50%{top:70px;left:70px}
}
/*;
}
/**/
/* {
: */
@keyframes bounce-xy {
0%,100%{top:0;left:0;}50%{top:70px;left:70px}
}
/*;
}
/**/
/* {
: */
@-webkit-keyframes drop {
0%{top:0;}100%{top:70px}
}
/*;
}
/**/
/* {
: */
@-moz-keyframes drop {
0%{top:0;}100%{top:70px}
}
/*;
}
/**/
/* {
: */
@keyframes drop {
0%{top:0;}100%{top:70px}
}
/*;
}
/**/
/* {
: */
@-webkit-keyframes rise {
0%{top:70px}100%{top:0;}
}
/*;
}
/**/
/* {
: */
@-moz-keyframes rise {
0%{top:70px}100%{top:0;}
}
/*;
}
/**/
/* {
: */
@keyframes rise {
0%{top:70px}100%{top:0;}
}
/*;
}
/**/
/* {
: */
@-webkit-keyframes kaleidoscope-in {
0%{border-width:0}100%{border-width:70px}
}
/*;
}
/**/
/* {
: */
@-moz-keyframes kaleidoscope-in {
0%{border-width:0}100%{border-width:70px}
}
/*;
}
/**/
/* {
: */
@keyframes kaleidoscope-in {
0%{border-width:0}100%{border-width:70px}
}
/*;
}
/**/
/* {
: */
@-webkit-keyframes kaleidoscope-out {
0%{border-width:70px}100%{border-width:0}
}
/*;
}
/**/
/* {
: */
@-moz-keyframes kaleidoscope-out {
0%{border-width:70px}100%{border-width:0}
}
/*;
}
/**/
/* {
: */
@keyframes kaleidoscope-out {
0%{border-width:70px}100%{border-width:0}
}
/*;
}
/**/
/* {
: */
@-webkit-keyframes radar {
0%,100%{border-width:0}50%{border-width:140px}
}
/*;
}
/**/
/* {
: */
@-moz-keyframes radar {
0%,100%{border-width:0}50%{border-width:140px}
}
/*;
}
/**/
/* {
: */
@keyframes radar {
0%,100%{border-width:0}50%{border-width:140px}
}
/*;
}
/**/
/* {
: */
@-webkit-keyframes run {
0%,100%{top:0;left:0;}25%{top:0;left:70px;}50%{top:70px;left:70px;}75%{top:70px;left:0;}
}
/*;
}
/**/
/* {
: */
@-moz-keyframes run {
0%,100%{top:0;left:0;}25%{top:0;left:70px;}50%{top:70px;left:70px;}75%{top:70px;left:0;}
}
/*;
}
/**/
/* {
: */
@keyframes run {
0%,100%{top:0;left:0;}25%{top:0;left:70px;}50%{top:70px;left:70px;}75%{top:70px;left:0;}
}
/*;
}
/**/
/* {
: */
@-webkit-keyframes cross-run {
0%,100%{top:0;left:35px;}12.5%,37.5%,62.5%,87.5%{top:35px;left:35px;}25%{top:35px;left:70px;}50%{top:70px;left:35px;}75%{top:35px;left:0;}
}
/*;
}
/**/
/* {
: */
@-moz-keyframes cross-run {
0%,100%{top:0;left:35px;}12.5%,37.5%,62.5%,87.5%{top:35px;left:35px;}25%{top:35px;left:70px;}50%{top:70px;left:35px;}75%{top:35px;left:0;}
}
/*;
}
/**/
/* {
: */
@keyframes cross-run {
0%,100%{top:0;left:35px;}12.5%,37.5%,62.5%,87.5%{top:35px;left:35px;}25%{top:35px;left:70px;}50%{top:70px;left:35px;}75%{top:35px;left:0;}
}
/*;
}
/**/
/* {
: */
@-webkit-keyframes diamond-run {
0%,100%{top:0;left:35px;}25%{top:35px;left:70px;}50%{top:70px;left:35px;}75%{top:35px;left:0;}
}
/*;
}
/**/
/* {
: */
@-moz-keyframes diamond-run {
0%,100%{top:0;left:35px;}25%{top:35px;left:70px;}50%{top:70px;left:35px;}75%{top:35px;left:0;}
}
/*;
}
/**/
/* {
: */
@keyframes diamond-run {
0%,100%{top:0;left:35px;}25%{top:35px;left:70px;}50%{top:70px;left:35px;}75%{top:35px;left:0;}
}
/*;
}
/**/
*,
*:before,
*:after {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
background: #fff8c2;
}
#content {
max-width: 960px;
margin: 0 auto;
}
.box {
height: 140px;
width: 140px;
margin: 10px;
background: #cec79c;
position: relative;
list-style: none;
display: inline-block;
-webkit-border-radius: 8.75px;
-moz-border-radius: 8.75px;
border-radius: 8.75px;
overflow: visible;
-webkit-perspective: 700px;
-moz-perspective: 700px;
-o-perspective: 700px;
perspective: 700px;
font-family: sans-serif;
}
.box:before {
position: absolute;
bottom: 0;
left: 0;
z-index: 2;
height: 30px;
width: 140px;
line-height: 30px;
text-align: center;
color: #333226;
font-weight: 700;
font-size: 12px;
}
.box-inner {
height: 140px;
width: 140px;
background: #868692;
position: absolute;
display: block;
-webkit-border-radius: 8.75px;
-moz-border-radius: 8.75px;
border-radius: 8.75px;
z-index: 0;
-webkit-transform-style: preserve-3d;
-moz-transform-style: preserve-3d;
-o-transform-style: preserve-3d;
transform-style: preserve-3d;
}
.back {
height: 140px;
width: 140px;
position: absolute;
display: block;
-webkit-border-radius: 8.75px;
-moz-border-radius: 8.75px;
border-radius: 8.75px;
-webkit-backface-visibility: hidden;
-moz-backface-visibility: hidden;
-o-backface-visibility: hidden;
backface-visibility: hidden;
background: #92646c;
}
.box.flip-x:hover .box-inner {
-webkit-animation: flip-x 1000ms linear infinite;
-moz-animation: flip-x 1000ms linear infinite;
animation: flip-x 1000ms linear infinite;
-webkit-animation-fill-mode: none;
-moz-animation-fill-mode: none;
animation-fill-mode: none;
}
.box.flip-x:before {
content: 'flip-x';
}
.box.flip-y:hover .box-inner {
-webkit-animation: flip-y 1000ms linear infinite;
-moz-animation: flip-y 1000ms linear infinite;
animation: flip-y 1000ms linear infinite;
-webkit-animation-fill-mode: none;
-moz-animation-fill-mode: none;
animation-fill-mode: none;
}
.box.flip-y:before {
content: 'flip-y';
}
.box.flip-z:hover .box-inner {
-webkit-animation: flip-z 1000ms linear infinite;
-moz-animation: flip-z 1000ms linear infinite;
animation: flip-z 1000ms linear infinite;
-webkit-animation-fill-mode: none;
-moz-animation-fill-mode: none;
animation-fill-mode: none;
}
.box.flip-z:before {
content: 'flip-z';
}
.box.flip-xy:hover .box-inner {
-webkit-animation: flip-xy 1000ms linear infinite;
-moz-animation: flip-xy 1000ms linear infinite;
animation: flip-xy 1000ms linear infinite;
-webkit-animation-fill-mode: none;
-moz-animation-fill-mode: none;
animation-fill-mode: none;
}
.box.flip-xy:before {
content: 'flip-xy';
}
.box.flip-xyz:hover .box-inner {
-webkit-animation: flip-xyz 1000ms linear infinite;
-moz-animation: flip-xyz 1000ms linear infinite;
animation: flip-xyz 1000ms linear infinite;
-webkit-animation-fill-mode: none;
-moz-animation-fill-mode: none;
animation-fill-mode: none;
}
.box.flip-xyz:before {
content: 'flip-xyz';
}
.box.fade-in-out:hover .box-inner {
-webkit-animation: fade-in-out 1000ms linear infinite;
-moz-animation: fade-in-out 1000ms linear infinite;
animation: fade-in-out 1000ms linear infinite;
-webkit-animation-fill-mode: none;
-moz-animation-fill-mode: none;
animation-fill-mode: none;
}
.box.fade-in-out:before {
content: 'fade-in-out';
}
.box.beat:hover .box-inner {
-webkit-animation: beat 1000ms linear infinite;
-moz-animation: beat 1000ms linear infinite;
animation: beat 1000ms linear infinite;
-webkit-animation-fill-mode: none;
-moz-animation-fill-mode: none;
animation-fill-mode: none;
}
.box.beat:before {
content: 'beat';
}
/* {
: */@-webkit-keyframes flip-x {0% {-webkit-transform:rotateX(0deg)}100% {-webkit-transform:rotateX(-360deg)}}/*;
}
/**/
/* {
: */@-moz-keyframes flip-x {0% {-moz-transform:rotateX(0deg)}100% {-moz-transform:rotateX(-360deg)}}/*;
}
/**/
/* {
: */@keyframes flip-x {0% {transform:rotateX(0deg)}100% {transform:rotateX(-360deg)}}/*;
}
/**/
/* {
: */@-webkit-keyframes flip-y {0% {-webkit-transform:rotateY(0deg)}100% {-webkit-transform:rotateY(-360deg)}}/*;
}
/**/
/* {
: */@-moz-keyframes flip-y {0% {-moz-transform:rotateY(0deg)}100% {-moz-transform:rotateY(-360deg)}}/*;
}
/**/
/* {
: */@keyframes flip-y {0% {transform:rotateY(0deg)}100% {transform:rotateY(-360deg)}}/*;
}
/**/
/* {
: */@-webkit-keyframes flip-z {0% {-webkit-transform:rotate3d(0,0,1,0deg)}100% {-webkit-transform:rotate3d(0,0,1,-360deg)}}/*;
}
/**/
/* {
: */@-moz-keyframes flip-z {0% {-moz-transform:rotate3d(0,0,1,0deg)}100% {-moz-transform:rotate3d(0,0,1,-360deg)}}/*;
}
/**/
/* {
: */@keyframes flip-z {0% {transform:rotate3d(0,0,1,0deg)}100% {transform:rotate3d(0,0,1,-360deg)}}/*;
}
/**/
/* {
: */@-webkit-keyframes flip-xy {0% {-webkit-transform:rotate3d(1,1,0,0deg)}100% {-webkit-transform:rotate3d(1,1,0,-360deg)}}/*;
}
/**/
/* {
: */@-moz-keyframes flip-xy {0% {-moz-transform:rotate3d(1,1,0,0deg)}100% {-moz-transform:rotate3d(1,1,0,-360deg)}}/*;
}
/**/
/* {
: */@keyframes flip-xy {0% {transform:rotate3d(1,1,0,0deg)}100% {transform:rotate3d(1,1,0,-360deg)}}/*;
}
/**/
/* {
: */@-webkit-keyframes flip-xyz {0% {-webkit-transform:rotate3d(1,1,1,0deg)}100% {-webkit-transform:rotate3d(1,1,1,-360deg)}}/*;
}
/**/
/* {
: */@-moz-keyframes flip-xyz {0% {-moz-transform:rotate3d(1,1,1,0deg)}100% {-moz-transform:rotate3d(1,1,1,-360deg)}}/*;
}
/**/
/* {
: */@keyframes flip-xyz {0% {transform:rotate3d(1,1,1,0deg)}100% {transform:rotate3d(1,1,1,-360deg)}}/*;
}
/**/
/* {
: */@-webkit-keyframes fade-in-out {0%,100% {-webkit-opacity:0}50% {-webkit-opacity:1}}/*;
}
/**/
/* {
: */@-moz-keyframes fade-in-out {0%,100% {-moz-opacity:0}50% {-moz-opacity:1}}/*;
}
/**/
/* {
: */@keyframes fade-in-out {0%,100% {opacity:0}50% {opacity:1}}/*;
}
/**/
/* {
: */@-webkit-keyframes beat {0%,30%,100%{-webkit-transform:scale(1)}20%,50% {-webkit-transform:scale(1.2)}}/*;
}
/**/
/* {
: */@-moz-keyframes beat {0%,30%,100%{-moz-transform:scale(1)}20%,50% {-moz-transform:scale(1.2)}}/*;
}
/**/
/* {
: */@keyframes beat {0%,30%,100%{transform:scale(1)}20%,50% {transform:scale(1.2)}}/*;
}
/**/
<!DOCTYPE html>
<html>
<head>
<title>Flip</title>
<meta charset=utf-8>
<meta name=description content="flip cards">
<meta name=viewport content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="css/flip.css?123">
</head>
<body>
<div id="content">
<ul>
<li class="box flip-x"><div class="box-inner">
<div class="back"></div>
</div>
</li><li class="box flip-y"><div class="box-inner">
<div class="back"></div>
</div>
</li><li class="box flip-z"><div class="box-inner">
<div class="back"></div>
</div>
</li><li class="box flip-xy"><div class="box-inner">
<div class="back"></div>
</div>
</li><li class="box flip-xyz"><div class="box-inner">
<div class="back"></div>
</div>
</li><li class="box fade-in-out"><div class="box-inner">
</div>
</li><li class="box beat"><div class="box-inner">
</div></li>
</ul>
</div>
</body>
</html>
�PNG

IHDR22?��gAMA�� �a
AiCCPICC ProfileH ��wTS��Ͻ7��" %�z �;HQ�I�P��&vDF)VdT�G�"cE ��b� �P��QDE�݌k �5�ޚ��Y�����g�}׺P���tX�4�X���\���X��ffG�D���=���HƳ��.�d��,�P&s���"7C$
E�6<~&��S��2����)2�12� ��"�įl���+�ɘ�&�Y��4���Pޚ%ᣌ�\�%�g�|e�TI���(����L0�_��&�l�2E����9�r��9h�x�g��Ib�טi���f��S�b1+��M�xL��� �0��o�E%Ym�h����Y��h����~S�=�z�U�&�ϞA��Y�l�/��$Z����U�m@��O� ��ޜ��l^��� ' ���ls�k.+�7���oʿ�9�����V;�?�#I3eE妧�KD�� ��d�����9i���,�����UQ� ��h��<�X�.d
���6'~�khu_}�9P�I�o=C#$n?z}�[1
Ⱦ�h���s�2z��� \�n�LA"S�� �dr%�,�߄l��t�
4�.0,` �3p� ��H�.Hi@�A>�
A1�v�jpԁz�N�6p\W� p �G@
��K0ށi���A����B�ZyCAP8�C���@��&�*���CP=�#t�]���� 4�}���a ���ٰ;G���Dx����J�>����,�_“@��FX�DB�X$!k�"��E�����H�q���a���Y��bVa�bJ0՘c�VL�6f3����bձ�X'�?v 6��-�V`�`[����a�;���p~�\2n5��׌���� �&�x�*���s�b|!�
ߏƿ'� Zk�!� $l$T����4Q��Ot"�y�\b)���A�I&N�I�$R$)���TIj"]&=&�!��:dGrY@^O�$� _%�?P�(&OJEB�N9J�@y@yC�R �n�X����ZO�D}J}/G�3���ɭ���k��{%O�חw�_.�'_!J����Q�@�S���V�F��=�IE���b�b�b�b��5�Q%�����O�@��%�!BӥyҸ�M�:�e�0G7��ӓ����� e%e[�(����R�0`�3R��������4�����6�i^��)��*n*|�"�f����LUo�՝�m�O�0j&jaj�j��.��ϧ�w�ϝ_4����갺�z��j���=���U�4�5�n�ɚ��4ǴhZ �Z�Z�^0����Tf%��9����-�>�ݫ=�c��Xg�N��]�.[7A�\�SwBOK/X/_�Q�>Q�����G�[��� �`�A�������a�a��c#����*�Z�;�8c�q��>�[&���I�I��MS���T`�ϴ� k�h&4�5�Ǣ��YY�F֠9�<�|�y��+ =�X���_,�,S-�,Y)YXm�����Ěk]c}džj�c�Φ�浭�-�v��};�]���N����"�&�1=�x����tv(��}�������'{'��I�ߝY�)� Σ ��-r�q�r�.d.�_xp��Uە�Z���M׍�v�m���=����+K�G�ǔ���� ^���W�W����b�j�>:>�>�>�v��}/�a��v���������O8� �
�FV> 2 u�����/�_$\�B�Cv�< 5 ]�s.,4�&�y�Ux~xw-bEDCĻH����G��KwF�G�E�GME{E�EK�X,Y��F�Z� �={$vr����K����
��.3\����r���Ϯ�_�Yq*���©�L��_�w�ד������+��]�e�������D��]�cI�II�OA��u�_�䩔���)3�ѩ�i�����B%a��+]3='�/�4�0C��i��U�@ёL(sYf����L�H�$�%�Y �j��gGe��Q�����n�����~5f5wug�v����5�k��֮\۹Nw]������m mH���Fˍe�n���Q�Q��`h����B�BQ�-�[l�ll��f��jۗ"^��b���O%ܒ��Y}W���������w�vw����X�bY^�Ю�]�����W�Va[q`i�d��2���J�jGէ������{�����׿�m���>���Pk�Am�a�����꺿g_D�H��G�G��u�;��7�7�6�Ʊ�q�o���C{��P3���8!9����� <�y�}��'�����Z�Z���։��6i{L{��ӝ�-?��|������gKϑ���9�w~�Bƅ��:Wt>���ҝ����ˁ��^�r�۽��U��g�9];}�}��������_�~i��m��p���㭎�}��]�/���}������.�{�^�=�}����^?�z8�h�c��'
O*��?�����f�����`ϳ�g���C/����O�ϩ�+F�F�G�Gό���z����ˌ��ㅿ)����ѫ�~w��gb���k��?Jި�9���m�d���wi獵�ޫ�?�����c�Ǒ��O�O���?w| ��x&mf������2:Y~ pHYs  ��@IDATh�Y�OTW�� ���"�DDp_*Ɔ�[�6M�i�bK|2����1��(�E�ۃ ���4l��� 0�)��9l����!�G��h�/�9�����o=��1�~��@�I�ҥKp�\��Ws���q��y���N��o^m�$�~��9JJJ�211!|����5TWW��k�mڀ��7o���y���� A�ý{���o��2�ǩM�1�^��d4&f�(*E\|���@I(Fk�k=7u5�����ӧO��7��8�Q��|�e��!u�r��BrJ2�z{���ju�hǪ�D|�E��� �������D���xPSS��Eq� ��Ԅ����3<z������~������m��0vӲ\9u}hh� NÁ�ωDbZ
��1{�l��n8""0�;�W7j�����}H^�DTO٘ڔ�������2X2�,u� ��~�7
��;�KK`�A¢E�n'��)0������Գ�D��l6|��^��������HD���Q[[���B��׃ �4ݮ��TWW'6S\\,����� 2JI<0 ;??_�vee�?�T�2��x�i����x�.�L�i�u+**����y��D������3�rT=�'��;n2�٬Y���������2���T<|�PT��hdd��ޒQֱ{{�� X�x��Q�L ����5i' ETd6mڄ����ء
޾}[ԋ�̱c�j��x-�6�d�ҥX�p��
A���hw����l8l۶M���ݍ���jU"�mD1�2!!A��' �Ejq6#�']Mm3����-##C<��z�7KZ�p7)���$0M)--5ҏIW�����&��&�� . ˆ�7o�)M���F��r�d»v�B�� {H0:�;�b�
\�zU��СC2�`U�8�V �L?~---HOO�#<��Aܺu {���޽{���dZ�]�2����ܱc��_�Zf����x�ꕔ�O�СRjm�@Ԥ,#�6n�(?�1�3C��рxF=�U�#��?�6��AΗ�r�vI�}}��y����^U�޻����ׯ#66VZ�WJLLDYYZ[[%~(�2ø�-@NN�{��QܸqAAA���8�T���øx���8�*Y�o̵��ˑ��"nW��$�1ٽ{��)**BWW���D:���E"\��ٳ`�z�j��ފ�v[�۷o'�r�Jܽ{gΜ�~Jj�b���2���˗�m$����X�n�⌔� � ���-� �-7���'J���KKd?q�`fKf�nYr�y��ŝ�nG�H��T;dA9rD���3m#J���F>�A$[�MT�7���&��O�'Xe;� 7җ;w�Hԧ�Լ3dHcc��j||�e�i#�Sd���$%�RA=y�D�'[�l��@#�1�\�(P�dVIHս���x�{W?������Mڃ���[з�(��;^���g��Oق��}%𞋷*k׮{�햁0Z3��'� ��`:���5u��U���4.�]��nݺU<=�r��F���]����+�$�Xo�,Q����
�p&��n�L���N 2=��^�~=��H�&<��߿_�3hk�xi��-#�y?͝:u
iii�ͪ7�2NB5"�x[�f ��<�����;wb����������^d� &��x�e�L��T'���� s��;w��`L�srr$h���A�z�\j��LM��;��bÆ �5��ɓ°���7���H�jy���P�X2�����6d2�I�J4N�� {�a�Y;��Pa�6]uZU�LM �����HD�����-��> i��߬�~IEND�B`�
�PNG

IHDR22?��gAMA�� �a
AiCCPICC ProfileH ��wTS��Ͻ7��" %�z �;HQ�I�P��&vDF)VdT�G�"cE ��b� �P��QDE�݌k �5�ޚ��Y�����g�}׺P���tX�4�X���\���X��ffG�D���=���HƳ��.�d��,�P&s���"7C$
E�6<~&��S��2����)2�12� ��"�įl���+�ɘ�&�Y��4���Pޚ%ᣌ�\�%�g�|e�TI���(����L0�_��&�l�2E����9�r��9h�x�g��Ib�טi���f��S�b1+��M�xL��� �0��o�E%Ym�h����Y��h����~S�=�z�U�&�ϞA��Y�l�/��$Z����U�m@��O� ��ޜ��l^��� ' ���ls�k.+�7���oʿ�9�����V;�?�#I3eE妧�KD�� ��d�����9i���,�����UQ� ��h��<�X�.d
���6'~�khu_}�9P�I�o=C#$n?z}�[1
Ⱦ�h���s�2z��� \�n�LA"S�� �dr%�,�߄l��t�
4�.0,` �3p� ��H�.Hi@�A>�
A1�v�jpԁz�N�6p\W� p �G@
��K0ށi���A����B�ZyCAP8�C���@��&�*���CP=�#t�]���� 4�}���a ���ٰ;G���Dx����J�>����,�_“@��FX�DB�X$!k�"��E�����H�q���a���Y��bVa�bJ0՘c�VL�6f3����bձ�X'�?v 6��-�V`�`[����a�;���p~�\2n5��׌���� �&�x�*���s�b|!�
ߏƿ'� Zk�!� $l$T����4Q��Ot"�y�\b)���A�I&N�I�$R$)���TIj"]&=&�!��:dGrY@^O�$� _%�?P�(&OJEB�N9J�@y@yC�R �n�X����ZO�D}J}/G�3���ɭ���k��{%O�חw�_.�'_!J����Q�@�S���V�F��=�IE���b�b�b�b��5�Q%�����O�@��%�!BӥyҸ�M�:�e�0G7��ӓ����� e%e[�(����R�0`�3R��������4�����6�i^��)��*n*|�"�f����LUo�՝�m�O�0j&jaj�j��.��ϧ�w�ϝ_4����갺�z��j���=���U�4�5�n�ɚ��4ǴhZ �Z�Z�^0����Tf%��9����-�>�ݫ=�c��Xg�N��]�.[7A�\�SwBOK/X/_�Q�>Q�����G�[��� �`�A�������a�a��c#����*�Z�;�8c�q��>�[&���I�I��MS���T`�ϴ� k�h&4�5�Ǣ��YY�F֠9�<�|�y��+ =�X���_,�,S-�,Y)YXm�����Ěk]c}džj�c�Φ�浭�-�v��};�]���N����"�&�1=�x����tv(��}�������'{'��I�ߝY�)� Σ ��-r�q�r�.d.�_xp��Uە�Z���M׍�v�m���=����+K�G�ǔ���� ^���W�W����b�j�>:>�>�>�v��}/�a��v���������O8� �
�FV> 2 u�����/�_$\�B�Cv�< 5 ]�s.,4�&�y�Ux~xw-bEDCĻH����G��KwF�G�E�GME{E�EK�X,Y��F�Z� �={$vr����K����
��.3\����r���Ϯ�_�Yq*���©�L��_�w�ד������+��]�e�������D��]�cI�II�OA��u�_�䩔���)3�ѩ�i�����B%a��+]3='�/�4�0C��i��U�@ёL(sYf����L�H�$�%�Y �j��gGe��Q�����n�����~5f5wug�v����5�k��֮\۹Nw]������m mH���Fˍe�n���Q�Q��`h����B�BQ�-�[l�ll��f��jۗ"^��b���O%ܒ��Y}W���������w�vw����X�bY^�Ю�]�����W�Va[q`i�d��2���J�jGէ������{�����׿�m���>���Pk�Am�a�����꺿g_D�H��G�G��u�;��7�7�6�Ʊ�q�o���C{��P3���8!9����� <�y�}��'�����Z�Z���։��6i{L{��ӝ�-?��|������gKϑ���9�w~�Bƅ��:Wt>���ҝ����ˁ��^�r�۽��U��g�9];}�}��������_�~i��m��p���㭎�}��]�/���}������.�{�^�=�}����^?�z8�h�c��'
O*��?�����f�����`ϳ�g���C/����O�ϩ�+F�F�G�Gό���z����ˌ��ㅿ)����ѫ�~w��gb���k��?Jި�9���m�d���wi獵�ޫ�?�����c�Ǒ��O�O���?w| ��x&mf������2:Y~ pHYs  ���IDATh�Vml�g��~�F�Q����~�bD�m�a�iI&�D"��B���G����j���@|nZ�h}�JD������_T[m��י��i�]���&f�I�����>���uι���,#x $�-� �D޴L�3�ψ�"�/-�c���e��ry\�2􈈯���_�qW~�s7�:�6H�~��4��t�W�8����zF:::��֭(�tQ�� x��~�1�Νj��[�5"Z2-��()>��&��x�ܹ��'O����l܈�E9�v����f���lUuB5�~A �-[�aÆ!55C����hT�tG�A{{�W��c"�,%������;}QQQ���>Ǎ7��~����\M�}p� 6��w>ԏf�鯧�u�<�]�>u��116�k>Cŵk���@��r����fB5���QXT$� ���>�PWߺ��٣�(:����܌��j�?��K`\�]�D�ʯ\��Ǐe����~=�O>���$ۆ>kkkq��i����ŋ��ѧ��� �R�b�X��<y��*--��l�b͛7�5jێu��YQQݖ�kΜ9�F�ɓ'[�����s~�趵��[kÆ ����h-_��ڽ{�u��U�����ioo���d�VM�;vX3f̐ ��I�&Y&L�gΜ����ŋ�C�III2^�x����3[���۷�ZJJ�5r�H���K�Z'N��L�Ŧk`mGf���)Y�۷�V���۷1~�xL�2�����2��ӧO����u��!==#F�@UU�����Qʥ��^�CBBPVV&�w�܉�S�J�0���K�m۶�o�…X�b&N�(> nё��.�rN��Ç�v�Zl޼&� �������z�A�^����q�V{��]����<u���F3(���Ð!C+�a0�/ų-�&+�w׮]�?��)N�މ�.��-Z��̙3< �?.5a��L�`s�$)��s΃�q�d ���f uX�� � �)��e����aJ999◾T�v-2'�ٳ?�{��G�ܐ�������$$H��J��J��)�:u�K\'p���!�>}���4dff"77��>�U�3��x�����e�С����R�`-���[�s<���E�(v'܇� ��9& ��K�.�Y߾}1f�i�̂i*B�����~��Q�=Zlu���N���1v�Xl�v�|Z �.�I{����ի�����ӧôT�΄����!�<���3#��{pP0�[�mМ�,X��EKP�9���Ó�g�����ؾ7 ��yyy�hF�qNj�`�Jaa!ƍ���K��>,_�޽q��-�_�^�Ȉ+!aJ������C���YHHH�i�vV�{���#��$/a�>��8�u�,)f�)�A��,�+�F�;w.HL�Y~�N��ʕ+����ׯ��M�6*���$���uF�rV�H#:Uc:u��s���Y������զS�MXH�xg+' �:�8�^JB�R ��i�$�tKD�9E�%1�ss�5S�f������!$(� �b� O��Y4J@���N�kn���'O� �����7w ��GG(����ԛ �B@���Rij����R|��{H�,���J��ފ/��{� ����e�#��k 4��Qx7�
7cP\f�?�s>����}��7�ǮսY�V�6"(0��C��+œ�`~�V�|�T�gD,�����u�쉞ψps=3
DKO߽����
̗����j�j�G��D޴D�3�ψ�"�/-�c���x:� ��/tJ}�VIEND�B`�
�PNG

IHDR22?��gAMA�� �a
AiCCPICC ProfileH ��wTS��Ͻ7��" %�z �;HQ�I�P��&vDF)VdT�G�"cE ��b� �P��QDE�݌k �5�ޚ��Y�����g�}׺P���tX�4�X���\���X��ffG�D���=���HƳ��.�d��,�P&s���"7C$
E�6<~&��S��2����)2�12� ��"�įl���+�ɘ�&�Y��4���Pޚ%ᣌ�\�%�g�|e�TI���(����L0�_��&�l�2E����9�r��9h�x�g��Ib�טi���f��S�b1+��M�xL��� �0��o�E%Ym�h����Y��h����~S�=�z�U�&�ϞA��Y�l�/��$Z����U�m@��O� ��ޜ��l^��� ' ���ls�k.+�7���oʿ�9�����V;�?�#I3eE妧�KD�� ��d�����9i���,�����UQ� ��h��<�X�.d
���6'~�khu_}�9P�I�o=C#$n?z}�[1
Ⱦ�h���s�2z��� \�n�LA"S�� �dr%�,�߄l��t�
4�.0,` �3p� ��H�.Hi@�A>�
A1�v�jpԁz�N�6p\W� p �G@
��K0ށi���A����B�ZyCAP8�C���@��&�*���CP=�#t�]���� 4�}���a ���ٰ;G���Dx����J�>����,�_“@��FX�DB�X$!k�"��E�����H�q���a���Y��bVa�bJ0՘c�VL�6f3����bձ�X'�?v 6��-�V`�`[����a�;���p~�\2n5��׌���� �&�x�*���s�b|!�
ߏƿ'� Zk�!� $l$T����4Q��Ot"�y�\b)���A�I&N�I�$R$)���TIj"]&=&�!��:dGrY@^O�$� _%�?P�(&OJEB�N9J�@y@yC�R �n�X����ZO�D}J}/G�3���ɭ���k��{%O�חw�_.�'_!J����Q�@�S���V�F��=�IE���b�b�b�b��5�Q%�����O�@��%�!BӥyҸ�M�:�e�0G7��ӓ����� e%e[�(����R�0`�3R��������4�����6�i^��)��*n*|�"�f����LUo�՝�m�O�0j&jaj�j��.��ϧ�w�ϝ_4����갺�z��j���=���U�4�5�n�ɚ��4ǴhZ �Z�Z�^0����Tf%��9����-�>�ݫ=�c��Xg�N��]�.[7A�\�SwBOK/X/_�Q�>Q�����G�[��� �`�A�������a�a��c#����*�Z�;�8c�q��>�[&���I�I��MS���T`�ϴ� k�h&4�5�Ǣ��YY�F֠9�<�|�y��+ =�X���_,�,S-�,Y)YXm�����Ěk]c}džj�c�Φ�浭�-�v��};�]���N����"�&�1=�x����tv(��}�������'{'��I�ߝY�)� Σ ��-r�q�r�.d.�_xp��Uە�Z���M׍�v�m���=����+K�G�ǔ���� ^���W�W����b�j�>:>�>�>�v��}/�a��v���������O8� �
�FV> 2 u�����/�_$\�B�Cv�< 5 ]�s.,4�&�y�Ux~xw-bEDCĻH����G��KwF�G�E�GME{E�EK�X,Y��F�Z� �={$vr����K����
��.3\����r���Ϯ�_�Yq*���©�L��_�w�ד������+��]�e�������D��]�cI�II�OA��u�_�䩔���)3�ѩ�i�����B%a��+]3='�/�4�0C��i��U�@ёL(sYf����L�H�$�%�Y �j��gGe��Q�����n�����~5f5wug�v����5�k��֮\۹Nw]������m mH���Fˍe�n���Q�Q��`h����B�BQ�-�[l�ll��f��jۗ"^��b���O%ܒ��Y}W���������w�vw����X�bY^�Ю�]�����W�Va[q`i�d��2���J�jGէ������{�����׿�m���>���Pk�Am�a�����꺿g_D�H��G�G��u�;��7�7�6�Ʊ�q�o���C{��P3���8!9����� <�y�}��'�����Z�Z���։��6i{L{��ӝ�-?��|������gKϑ���9�w~�Bƅ��:Wt>���ҝ����ˁ��^�r�۽��U��g�9];}�}��������_�~i��m��p���㭎�}��]�/���}������.�{�^�=�}����^?�z8�h�c��'
O*��?�����f�����`ϳ�g���C/����O�ϩ�+F�F�G�Gό���z����ˌ��ㅿ)����ѫ�~w��gb���k��?Jި�9���m�d���wi獵�ޫ�?�����c�Ǒ��O�O���?w| ��x&mf������2:Y~ pHYs  ���IDATh�ZipTו�z}���j�h!��1�c���TpbR'�31��&�I2�J\q�-vjR���$v���U@&66./����,����I���֋z�|綞,[jIU�÷P�~��9�~���aH&�>|��@��0Fp�l0f%9� ��|7���}B�M�������d�Y���MD� XL�6N�q�i<�Qx1ҘGiD�g�<�s�Do_v�܍ MM��w����m��x��z���D1���/Ʋ�%�����~���nlش�ݲ~V d�3��bh؇ڶ�څ�dv���{�<��S�QV hVJ�G�h �y�>/N��j<���彯bӗ�T��UN67�1# �DB���ƚ�7�kk���J/j��k�\X�y�B�S�dX-fX�f�4 D <4�YV#�]-�[��ݹ��i: d�UK�u?��B�+�*������X�XHF�9����s�28�A��q�3_�K�[��,�cz�Y�C͢Eر};��ZQ]��H�St�{���IX��0��4F�qd� �X�4|�f��e.8�淶n�mLin�i3"ꕕ��5�~�^���B<Ќ#=.������g����9�%��y� ��m�7w����S�5& .S9Kj�b��5�[��A( ��箯$�e ��Q��T��ɳ���5���,�r=��%�����O������-�On������g�8-j�cF�Z��Z/^�����S�o<+�F��*��x���`JDq�c��� �ށ�سg��[�t)��[4Cy=pp�;��:��B�������0�bĎl�_n�/8+�܉cǰ�sk��ىKm�F#�ﻦ���G)�%qz7�f���!��L�$�vÏX4
�%�)�9(:�����w^œ���8q�B�~��yys��������3�����"<���}�S���R�i~�J"f�a`H&3�+����O`ۓO@����?�o_�h��s��xvE=�Na�� $�9�L��5� y��=����nj�苹3�0��xt�҄p8���:,� �j� �ah�l,�X�H� ����P�#�]ù�@�R�\�,ƌ��� �����߄���UܼH�uA f\���H4���1`�57��nX�h҂����[�Ne
�Z0�д�I�E���x��n*G�1���X `��v �๣]cg\[`��E����X�s�Q͈�_O=�ysKQ[��=�1�4�L���E��f}�x�����ˋp�b��� �t=O�㰠4�2���lǨ$ QJݾ.��cμ����5�8|츒��鎴�F�,��/� ���X�yB�k��b�}��r�ﲂ�Մ@8�-}�˴�R7�FC�+��60B򲲑 `ן;��3g��v]s*1Mд��f|q�]�04��S6@�������>T8Q���j6"C3��R
,�ІhG]�#��a�|�d1�d �h�0�/��
�r��fiѥq�b�Mk1 1cM�@��ag0�s��z��aa^� �ff�z)N �p�ˆ�9.�fX�{*n��x�5���#x�៤+ 5/- :ǟ��Q���!x��#224��ˆ2l��W�po؁�PMbׂD�^�d9Q@i�4� ����]�Q�ȡ���K x��GX^_���Mi�" �η���>��%��}@�s���^?NvG�}�_������n�s��ܱ��� o ��k~��N�|(/'���8 (����_TA~BC&~ʘ�Nw����&n�x�)p�LpJn���C�.��U��%l[W7�vvி����0^|� W&��ചq��%@�֫�хb�d�+�G�t\��~�st�'^&��F�%뻯�E�j �譯�@Ш{}!�I�%nX q�8����Ҍ��@Qy%�q�$��H��0 �h�yv[���e!�4���f�`�@t��@��VXl�H2c?� ���4`�A.�ڮ (�k<�:(��AE�K��+n�m�([���D&�w�;���Z*[�S"y�icJ��9�L�{ ����J��i�-& ��J����E�� f�XXS�Mcƒʣdk8xaA�Hh�4FMp��$w�^��L��WW� �&�L
D�*麜�ӔU�>�ҘO�&p�c��ϏÜs�ݷp����݂����|���K���'�~��:R]��"!��.�3���u��~�%- �9d-� '��(GQ��E��sZ�� p[bض���N������7e4�7O_D�ƪ�l�eX�d�ál0�zL>��I ䷴�F�J��Q"�#����$�)� ϧ �=��T� ?��|��m���Kt��v3��)D%/�x�:�. ��t�~ʑ�D2�n��A���1�� ���8�4��0��>a����~y6�r��@��5�+���N�e�+Qgd0��#���"�~R��F���ΛV �k�Qc�-K�s}L0ҥI�.NOw����anon��@s�Pr� �"�/ ���yo[�^I�t�ޓ�I��@v;�X�F��A6s� Y\<��7� ��w*�Ə��5���(^\�9��p�L �bة?�O�)I�e��-((T+�єcR B-ɜ�ӷ�v+�����{���:s������?�J�+C��U�u�p�l��C �9�m���Y3Sz�� lh _��7���R��T�|�Ǥ�%4:�U+Wae��wu ��� 3N2������� �^�A�Y,��ܘHq�z�`��6�u�c̑�~ (1�q��J`^�[����ķ��.rs��h?e�c?����y�w���o߇-k�����t��p�Yw����M���l;J=v_d5�}�v������!��c�C�]T�� P�oǾ��8�ށ2����j�$��ec�{���w�a^e �r��J���Bܛ��M]~�X�Բ�`a����!u�MBDy��_q�I����3xa�.|��[�!�Ni#2I�KbI�t�'����KC�ߒ���UW����ʲ,�������#m�X9�C����J�R+��� �[3��K��n#����f����iӈ1��-|��Z��F�E�mT~�@]yo�����l��7�CPY���t$7Өj��3���[�uNɍ7`�;p��q��tS�p�g���_>�/m���}�����5p�N�h��x����gٔ���L���Te���A��&U�\�GT�,NCh,�8�.���g�Yu�j=)DS|�D���Ӄ�K._Qm� U������ |�1�<��z(T0]q�bG�eS�>8�e�kB�PPI��m��K�(pk8�>�>6��s�����w��LWZ���j�:8��'�H �Q�a��b����.� �3�=42��D����? F ,V6!�vt܌b������9.: �y�f�i�� S*E�9�.���7ݑ��1;��w��?LI�b�R��{b�h1�
��E@�H�V���#=�6^��N��LI�H�hi2&Xk���ԄHhD�� �ȳ�����S�ZI#] �R���B��&|~>{9N4\P�B.;�Z��Nu�P}�6`���xa+^��-s�ڡ?����� Ǐ�a�;�L�f��q��2'>��;fO>�ٍ}z#�.�¡k�d�Ҋ#�t�N�� �
=�8��)/�ۘz�ݲ*�Z���f�3�����h�~:
I-� ����+� �&VT�xLEu����4Ǵ�����}ڴTKv����;� H�R�P�����Q)}�όD�Y��K��IEND�B`�
�PNG

IHDR22?��gAMA�� �a
AiCCPICC ProfileH ��wTS��Ͻ7��" %�z �;HQ�I�P��&vDF)VdT�G�"cE ��b� �P��QDE�݌k �5�ޚ��Y�����g�}׺P���tX�4�X���\���X��ffG�D���=���HƳ��.�d��,�P&s���"7C$
E�6<~&��S��2����)2�12� ��"�įl���+�ɘ�&�Y��4���Pޚ%ᣌ�\�%�g�|e�TI���(����L0�_��&�l�2E����9�r��9h�x�g��Ib�טi���f��S�b1+��M�xL��� �0��o�E%Ym�h����Y��h����~S�=�z�U�&�ϞA��Y�l�/��$Z����U�m@��O� ��ޜ��l^��� ' ���ls�k.+�7���oʿ�9�����V;�?�#I3eE妧�KD�� ��d�����9i���,�����UQ� ��h��<�X�.d
���6'~�khu_}�9P�I�o=C#$n?z}�[1
Ⱦ�h���s�2z��� \�n�LA"S�� �dr%�,�߄l��t�
4�.0,` �3p� ��H�.Hi@�A>�
A1�v�jpԁz�N�6p\W� p �G@
��K0ށi���A����B�ZyCAP8�C���@��&�*���CP=�#t�]���� 4�}���a ���ٰ;G���Dx����J�>����,�_“@��FX�DB�X$!k�"��E�����H�q���a���Y��bVa�bJ0՘c�VL�6f3����bձ�X'�?v 6��-�V`�`[����a�;���p~�\2n5��׌���� �&�x�*���s�b|!�
ߏƿ'� Zk�!� $l$T����4Q��Ot"�y�\b)���A�I&N�I�$R$)���TIj"]&=&�!��:dGrY@^O�$� _%�?P�(&OJEB�N9J�@y@yC�R �n�X����ZO�D}J}/G�3���ɭ���k��{%O�חw�_.�'_!J����Q�@�S���V�F��=�IE���b�b�b�b��5�Q%�����O�@��%�!BӥyҸ�M�:�e�0G7��ӓ����� e%e[�(����R�0`�3R��������4�����6�i^��)��*n*|�"�f����LUo�՝�m�O�0j&jaj�j��.��ϧ�w�ϝ_4����갺�z��j���=���U�4�5�n�ɚ��4ǴhZ �Z�Z�^0����Tf%��9����-�>�ݫ=�c��Xg�N��]�.[7A�\�SwBOK/X/_�Q�>Q�����G�[��� �`�A�������a�a��c#����*�Z�;�8c�q��>�[&���I�I��MS���T`�ϴ� k�h&4�5�Ǣ��YY�F֠9�<�|�y��+ =�X���_,�,S-�,Y)YXm�����Ěk]c}džj�c�Φ�浭�-�v��};�]���N����"�&�1=�x����tv(��}�������'{'��I�ߝY�)� Σ ��-r�q�r�.d.�_xp��Uە�Z���M׍�v�m���=����+K�G�ǔ���� ^���W�W����b�j�>:>�>�>�v��}/�a��v���������O8� �
�FV> 2 u�����/�_$\�B�Cv�< 5 ]�s.,4�&�y�Ux~xw-bEDCĻH����G��KwF�G�E�GME{E�EK�X,Y��F�Z� �={$vr����K����
��.3\����r���Ϯ�_�Yq*���©�L��_�w�ד������+��]�e�������D��]�cI�II�OA��u�_�䩔���)3�ѩ�i�����B%a��+]3='�/�4�0C��i��U�@ёL(sYf����L�H�$�%�Y �j��gGe��Q�����n�����~5f5wug�v����5�k��֮\۹Nw]������m mH���Fˍe�n���Q�Q��`h����B�BQ�-�[l�ll��f��jۗ"^��b���O%ܒ��Y}W���������w�vw����X�bY^�Ю�]�����W�Va[q`i�d��2���J�jGէ������{�����׿�m���>���Pk�Am�a�����꺿g_D�H��G�G��u�;��7�7�6�Ʊ�q�o���C{��P3���8!9����� <�y�}��'�����Z�Z���։��6i{L{��ӝ�-?��|������gKϑ���9�w~�Bƅ��:Wt>���ҝ����ˁ��^�r�۽��U��g�9];}�}��������_�~i��m��p���㭎�}��]�/���}������.�{�^�=�}����^?�z8�h�c��'
O*��?�����f�����`ϳ�g���C/����O�ϩ�+F�F�G�Gό���z����ˌ��ㅿ)����ѫ�~w��gb���k��?Jި�9���m�d���wi獵�ޫ�?�����c�Ǒ��O�O���?w| ��x&mf������2:Y~ pHYs  ���IDATh�Z{p\�y��{W�J�]=����-Y��_�-�2�ĉ3�iH�6iHBfh;��� 3%M&��&5i&��i�M ��a
ʤ�@��c�H��d���j��������,��
g��c�{��{�9��|��Z�J�|�4��>8`����Q��e�-��3��d2yY_Ɠ��f$ZB�^��dɄ�����Uy����@�6<:�޾>tuu���6�,��m�ތ �ף��\�=�� ]�% �ϝO��λ�o�/���R�N�����/.^��ɧ���%��srV=��֟�}�}�X�#�( �����;�m�t�uX�%�'��b� Y�Ym��8|�?}�g��m��"H�%�%��Wxpm���Ӽ ٣�hع�hѐ��&di  ԏP,�`���ϼن_��
�����"89>��:�Q������˅��DZco"�nG�-0 � � �1.���7���Ά�gF�_��I_$N��^��^/¶4�Ua�ߨ���ǹ{va�g������C?~X=;p��r睰��-�-5(�ӂ@��Q|��/�ׯ�wj�Vɰ�T�m*E���I���v�,B��V.�)�
:�E���� �a�� <�Y�j����mx��4n�M�\l�N��\� �χ�y7TA��A����dG�h7պ�,�S�r�7�! �VCM;��T|J�����nt�d�g�Z�,m�@ ��3�Q���xR���M�G�1��� �H�-~���ծ�u�j�I���A��(�X���|�ݝ���/c�
d��dU�N�z9�b
�@��.�h�ĉd
Y&#��$AP��V��ԉ���ͣ�G�_߃��:1�ډҿ�w��������}�F������-p:�I?���8���ö����㇐��D"�G��[#92�buq6����yM���w�A[�n�ߟ�AIY�q��4���-�/����3*�������[>���5���va���f�����f��} ��K��jEIT���ф� �~�5���Ç�w�>��F��_`����g+k�0�C+�(E�wo``xD�_�����4���m�X�T<���
���� f"8=�'�C������-��Mx�W/�՗^D$�Í7݌@8�?��,�Lx���9}��,��n�x2�æ��)[���ǃ�g���$�m�+ �t�c�0v�R�#�D yť��~?⇳��o#��"��G�+QXZ��D���]K�8���%x�;?‹ݽ�ִ ����%b���V��ﵵc�u ���:�n�Ʌc�1r�sn4V�"���8��,��1�f6|���w�k�K(jA�Pε+�֢�4�~X��<uU{�V�9?4��}��KW�ˀͧ��Ï�su���ңW
MH�Dh���(�U��j��p���6 Oy��{eJ�29���A$���TO��o�w�:�{��
;�-�]ȴ{��[��W5-�����N��� �:�ӣ0nj(f�pf�3�~xt@��S�݄۶2���b�L|���q賋p��h������xm#g_���%ʮ�]��]F��� dYLH�.Zk�ԓ��8Q�)?�1�cd̽��b��B�4��cC�frM@
�S#>,�8Z��l�(�����=�\"/JF(;�y�z<u�Y~� �E'h5pv"���
Q�o����7�鉠�u#ߺ��Kcطڄ���ԭ��QL�h �>&iT6^߀�߿�z��ͩ��,(Z��e�x���;���ע��kK�XYd�7S �lD��$pCY.\6=��l�"�U+�'c2w8��9lD��|rIGsm���o_���{���z��h�,v�*yY#������{�ž�+�e-�y��5Q_z&��Lb�o�����t��`׎f4� �HaY�k�e���Fޓ�� *�Cm�^�9<��! ����h�(�W��"&�����Bw�
�!��'�tP��/ɞ�ev�9�VXq�����˷bpp��p� ��8ZH<f.#с����iD��'���ކ��ȟ������ȏy�[�;�L��3�Vz㡥:14��rX��i^���+Vo�D��$�V3g�h(�Uz$z#�\���n��9��'�k���ZW���B��D���:u
�f�F�����䑘bq��c>4ѧ�Z�TD������6��q &i�o�-BS��be��3�p̭2%ٗ�C��1l�0zmus�SF@4sx�th)���,�� ��:3���<�e��y��u�1Ð� z�8;`��B}N%M��'��Ʌ}R��қQ�5Nuv)�����A=ZTGd��aVM���
6H44g^�R"��t���0���Kt,�"�$��d��)V�i���c��M�Ĕ7q�>Ki� ���P�����!��*���'F�c1�(�D�d�?���{��c(���L(�w<��$����Y(gӔP����2�RZF��M�[;��F��y6��9��86��}��5"$b�t��M��`J�Gn�Sm���;Fd.Y���s�G:isD��j���0@�;�� VeV-��y���3A=���b�"q�b $�����%����E��g�r"�"�#�yla�� D|"y|Z,ĴJF��09'"'��3j*5���T�ԅ%;[B���lº�L�Kn�b����/D�u.�TZ��*�����2�LB��� �G�i�.�d�2"!��M�7�I&�zVE�eq�-�5|���/��mr/*�$�%�{US]��h>L�\�͖�ZU�5E&�*�,:`�p�rH�֦٘ &kD_ X$]����8���P_���ik_�z���k�U����_�6^��7���(�F0ΰ���D�#NʳY��EE(�Ħ� Y����a����#�}Rr������)<r���X�Z4��vB�Pĩ��Y����s[����Q�ˤ�Ab���%�0�??Ħ�<�ZM
d�|��Q�0^�'�X
�^3FFP���>�,��
^�0���-#ђi�:����Ux�G���~�/�B��S��Y$x9���.�yU��d��;�'�v0�,`�E�#b)Wg��+��1 ���w(����P�-���M�\E��$�]$@3�����Qޚ��J��ImX*��1 r���ı2^v��d�c�r����@o���3ԋ�_�W�I[=B�({�!���BaL󳂗N�τi�{�H:+.D�x�݌��asv)#Q)^�qHƉN���3���|��=���:3�J�H�eh*%���lw7&�z��֢m`Z�Q�%VV -� 'N���;G��eVU얨��a���xRy��R�,� �U�@{�[,�ǘK�"��1G�����y#�v�;�*WXP]��0?�V�w��_��ܤ&�k��~,r��,<��3��,��V���++��/�0�T`��-LL���h⬭�뒁�.�'¢g�[Q
iԉ���QG�@K�Ym�0�FI�1�5��Y�>j��]*�̲�e�^���'�a�s!K��%��ͯf
'�S�����w��>#�wģ<�Ȩ|d;σe8�f��16�[Cy"�#?���f�cjxHR��vUT[��A|�÷���ɼe d�#���&f�aV� _pW�u�->���\��d4"����i7��G��
�����~ u�_p#X �P7�XD���ߥ�%�8��E>��[-�уLP{g�U4j1�*�,�-�#K�����H�Ѐ�g��IEND�B`�
�PNG

IHDR22?��gAMA�� �a
AiCCPICC ProfileH ��wTS��Ͻ7��" %�z �;HQ�I�P��&vDF)VdT�G�"cE ��b� �P��QDE�݌k �5�ޚ��Y�����g�}׺P���tX�4�X���\���X��ffG�D���=���HƳ��.�d��,�P&s���"7C$
E�6<~&��S��2����)2�12� ��"�įl���+�ɘ�&�Y��4���Pޚ%ᣌ�\�%�g�|e�TI���(����L0�_��&�l�2E����9�r��9h�x�g��Ib�טi���f��S�b1+��M�xL��� �0��o�E%Ym�h����Y��h����~S�=�z�U�&�ϞA��Y�l�/��$Z����U�m@��O� ��ޜ��l^��� ' ���ls�k.+�7���oʿ�9�����V;�?�#I3eE妧�KD�� ��d�����9i���,�����UQ� ��h��<�X�.d
���6'~�khu_}�9P�I�o=C#$n?z}�[1
Ⱦ�h���s�2z��� \�n�LA"S�� �dr%�,�߄l��t�
4�.0,` �3p� ��H�.Hi@�A>�
A1�v�jpԁz�N�6p\W� p �G@
��K0ށi���A����B�ZyCAP8�C���@��&�*���CP=�#t�]���� 4�}���a ���ٰ;G���Dx����J�>����,�_“@��FX�DB�X$!k�"��E�����H�q���a���Y��bVa�bJ0՘c�VL�6f3����bձ�X'�?v 6��-�V`�`[����a�;���p~�\2n5��׌���� �&�x�*���s�b|!�
ߏƿ'� Zk�!� $l$T����4Q��Ot"�y�\b)���A�I&N�I�$R$)���TIj"]&=&�!��:dGrY@^O�$� _%�?P�(&OJEB�N9J�@y@yC�R �n�X����ZO�D}J}/G�3���ɭ���k��{%O�חw�_.�'_!J����Q�@�S���V�F��=�IE���b�b�b�b��5�Q%�����O�@��%�!BӥyҸ�M�:�e�0G7��ӓ����� e%e[�(����R�0`�3R��������4�����6�i^��)��*n*|�"�f����LUo�՝�m�O�0j&jaj�j��.��ϧ�w�ϝ_4����갺�z��j���=���U�4�5�n�ɚ��4ǴhZ �Z�Z�^0����Tf%��9����-�>�ݫ=�c��Xg�N��]�.[7A�\�SwBOK/X/_�Q�>Q�����G�[��� �`�A�������a�a��c#����*�Z�;�8c�q��>�[&���I�I��MS���T`�ϴ� k�h&4�5�Ǣ��YY�F֠9�<�|�y��+ =�X���_,�,S-�,Y)YXm�����Ěk]c}džj�c�Φ�浭�-�v��};�]���N����"�&�1=�x����tv(��}�������'{'��I�ߝY�)� Σ ��-r�q�r�.d.�_xp��Uە�Z���M׍�v�m���=����+K�G�ǔ���� ^���W�W����b�j�>:>�>�>�v��}/�a��v���������O8� �
�FV> 2 u�����/�_$\�B�Cv�< 5 ]�s.,4�&�y�Ux~xw-bEDCĻH����G��KwF�G�E�GME{E�EK�X,Y��F�Z� �={$vr����K����
��.3\����r���Ϯ�_�Yq*���©�L��_�w�ד������+��]�e�������D��]�cI�II�OA��u�_�䩔���)3�ѩ�i�����B%a��+]3='�/�4�0C��i��U�@ёL(sYf����L�H�$�%�Y �j��gGe��Q�����n�����~5f5wug�v����5�k��֮\۹Nw]������m mH���Fˍe�n���Q�Q��`h����B�BQ�-�[l�ll��f��jۗ"^��b���O%ܒ��Y}W���������w�vw����X�bY^�Ю�]�����W�Va[q`i�d��2���J�jGէ������{�����׿�m���>���Pk�Am�a�����꺿g_D�H��G�G��u�;��7�7�6�Ʊ�q�o���C{��P3���8!9����� <�y�}��'�����Z�Z���։��6i{L{��ӝ�-?��|������gKϑ���9�w~�Bƅ��:Wt>���ҝ����ˁ��^�r�۽��U��g�9];}�}��������_�~i��m��p���㭎�}��]�/���}������.�{�^�=�}����^?�z8�h�c��'
O*��?�����f�����`ϳ�g���C/����O�ϩ�+F�F�G�Gό���z����ˌ��ㅿ)����ѫ�~w��gb���k��?Jި�9���m�d���wi獵�ޫ�?�����c�Ǒ��O�O���?w| ��x&mf������2:Y~ pHYs  ���IDATh�Zyt�E��}�d�: YHBB ,0,� �0�BuPd�� �G��"��,�cI46eIPvH !��I�;��~U�c�t�_s���Ru�����Є�� 4����0�F��AӴ�V�d�)9�?�!u�!��S<�}�����I��5ws��5��uL��r�g�B���8p����`�ٔ$�ؽ6' �g�̝;W�^�o< �#�{j�C�UVV��{NR�~˖-�1׻|��� ~�����֯_�p������r��6i�M6Wbjkk�ƍբ]�t#G�T�{��UcN�&� \�tI͝<y�HJJz�N�1BP�
�N!�Lu��$#��;[AA��Թ�"������b�رb����b�ԃ�.��=��������%��<(2/�y��Bb^�p��SZZ*N�8!�>�S�{�@=��y04�3�A.\8����4=|�}p&#��M7�M���� $'�ر� 55��8v�rn�Ā�L�x��ʈ��h�7f]6^|a�c޼��5{.���УG�{m&F��m۶�C�GII�������a�ܹ� u�E-JA9ݮ];�c�n<�w�Z�F?1�>��G�<�s1,��P\\��k?!f֭�D�z� Q�«nUQ س`���l��)�vCau4z�j���\��5K��w��S3B�0R
�Sv����1h�c*d� Ӎ��VWW����k�v�$B3�q��A�uHD`�`ب%sn>>Z�*&nG@@�'��*#`)f$��p؈�^LjF��cĉ,?�K+�r�����S�O����3�R�]ɀ:�^z��7���sfCOm�knM����A�|�L�-Pa���ӣ{�GPVY��r��˰y�"����ha"�yp�!hF��N�
p�Ks�ᨁ�Ž�b+�d�/N��}��n���5:wCyY9��a�"��3�� 22L1���Q���=��(lٲ�& e��J�Ai;����x�ُ��{>�� :SK�M�EC���h
�Ԇ t!Ad"���Z q3���x�ٝƕe��5v�RS�_o���']M]1"�O.ܾ}t뚀�6�������R��!ذ�c�;~#b#ۣ���ށ�_������E��}6����|C�9�!�_��s�ص�6R��F����8t4��R�y (L %����Z��&j�
���^zqZ�h�w⒑�MkĈ�qO�0 -����y�ξ��P?��ދ���]B,�E` �Z)�����M����_��w�!�ft~�zTa�'5�u~%�2Q���?������E�n/��6
~�,6�Y�w Ξ>�e��ƛs_B�nݕpu:��ֱE�m�y��� b���~���҉7�C8�{
q^�fC:��ϕ�yb�ȇE����!6o���xn�YL��(8D\g„8I�8cSFȊ�$���X��
��w\�i���[lu,�z�X�V�?��#�d��� ����U�@���)�ق�8n�B`���ƍ����ѷ5N�^���w�wơ� ����y����S�ЮC ��7xU��6 -���S�99 ,�h�&���V���+�uO�t�d�%-zG�e�K�A�����20�kk�j�+C����@��]��~�����GJ�.�Mh��@���T �Đ!C�������[3:vW��y�k1��K$t�������,X��Z�g�_�ׇF�8��m�
���W��223��L�Oa�wb�[�D'��ւ�P %��4��2����+�� �'���j,Ո�dLrX)Y�-�ӧϠ��2�> 5�#��I���b2+�1��٣�4uiĈ��K�#6l%Y��M��O �9��2D%�*��6�#M�`z�lާ֘�� ���!0�5�n{����l��Q���Att4�_���/N�.a���(� ž��X�I+|��-�p��M���0[S�� !:ͪ�ZC6��5���]�p�o�hݾ�ыؤ���ć�*LN���c���B����ȿ��k30wJ!4s���|� ,[���0k�,\˜������7�:�ƼB^��l��!~x��oYÍv*L&~�k�e%�5`��)��a���/���T��Uf�|N��lg<�����<1}�/��íB�]<0�a�ie�VS�͈� ƍ��`U�6�t;C� ��\'eRr�` �D(PZf�#OрKv��b<|}���;i��ހ��<=���끬��8��~<�D�vK!~���e>(,�@�/��.�I�G�q��� e�hg�XQȅK��e݅�R��D �oR'5Y��b�(����p�ھ�CP�f�ń#��lߞ�薲쑾�������鉘�p��l��@��[w��V���,��dE#�kF;J��YRd�h������O�6p�b8�BE�M��J1A���&cHn���ᕸ�j�mk��5I�`iV�>w�#N�aÓ�r�v��#.���U쎴Z�g���.p�'+t�#5�
��%`�פ�щ���AV�*��X�Բo�jêE*N�I�0`�|�Up5�9cFB+9��;��"�v(���S��ĵ#R}�� e���>=C��}���v��r�ؖ��i�|��2�K�#]:s�^�Obi�2�p��:�x��o2Z�E�z2QEf&�v��I�M�/#=Ѷ�'���mO/����s���s�X���;%�@�?e��OIV;��^ a&��5$%��Jx0sC*� ,_#��( 1�v�Qmm���+�#EXE�:x�s���L�����jȸ,0}� ��F�v�mJ���Z�4R�\ݕ�2J��[�����-Ĥ��ˁ�gv|��VҹX�k?<������;t�hQB�۴HC�Q m�hięu��8Vg�i����]v���e����Ņv僲VlBu���V#�Qn�`�9K�y$� +���.E��4�,�s����֡C�UUd T�:kD��
����j�����hf�{�N���t #7�ؓ|�K�C����Ġ>F<3�_���d���@�~r�����-#�Hԫ{'�^�}x�*�� �8{Պ����^-l��}�h�&:S����hCi�j�����CCM ��V�B���2��J��U[��V)��� �����˭ ��™ Ҹ��� ��s&lw��eĩƈ� ���Â�����
�
o�K�UB:�� �5������V�RfA��fjA�-�L ��{&ujr����P�4��x �
��k�K#��km�
�w�Is�93���#n�j(�f�����j�>���&.�l��ig9&ϧS�Һ'��� &$��B���ˡ!/׆��Z���2�s�y|ߺ��ȴF:���`Ŀލ@�WJs
�0`���v�c�p�q=���˹���-#�9i˖/��S�1id�k �9@� _���`�
3�?��_Z+�i}�-������"��E�H=Z�/�Z!#)�a�V� R>!#WY�!- �`�#�oa�̙X�dI�a� �$�ms��rs��%��(ޛi��V�r4F������DQZ���^�0��;��������W��v"FT�yw���|JK�g��p?~\���-��lR#�S�+I�^�ӦMcOf<��� C�\\l��Q�w���8�S ��VPCV�e���p/����~�he����t���/�g�m�>4��� �4i�O��۷o��ڬV��"��ןu�ϸY�GzW��١���Q5c���x����<|s��5�ڳ��ac� �#.�/2��3Wә�ٛ��&�M|�^�)3��q1�:?F�*ܺU�͛7c���u�v�����G�+2����FR�8�qY-��_�0�~hM�r�j��H��ڒ?����C�5����2��4̾"rp�B �l*��#60H�'�%�g�m�Ǐ�_|={�T�5wiV#wNܰa&L����8X+n�z�f�5���ׇ9��,�H���H���ת(��Ji�(��6H?Y�OS+y�Ug��-�<E8�����|Fc].Q 5s�'F��"�|��JJqqq��ڣ� �j&��Tۍ��GP�x�y�kY\jX�5��b�nF���J�yJ����1c���9 ᴈ:�f�ME�~1�q���� 2��Ŋ���`)�`��6z��Et�&�B4�e�����pG�UK[�V���n��Ig��� �z���Ru�]�&:T�8φ����FM��ԯ% ��E+�""��'�:���1���&���RRRĜ9s\�T����=1"�(�]�V,Z�H�Dl߾]0���|�t�R�J��Ehh�����_=�{a2��{rr�8}��"��T}˗/�����υ�l�'f�d�))%W�z���Q�綬�,ETbb��s
�m�cǎ��� �I����S�N�k׮�_�D�v��]~�KOOW��P � {b���˻+3n�F.���<ߒ�-[�^��y�<��ɉE1u�T��fb,V!���srS�Ag!q�4�4����o߾}`�F�֭�X��j�
�9�Y��ΝS}��L�>} 5���rv��)V�C�����$#�*�gϞ�
6�K�������>�
��Y�RSS�Q˳]�f͚��Rur�G=���������pQQQ5j���������y�m۶HHH�v; ��Q�s�����=�_�ɘ�$WRR�b���qnn.�"��J8��:�������KBV �����RBr�
~�W0�;������s%�s=�~g�+#�!hn�΅���c�5Ehss��ܕ'��;�Ϯ���;��+��_�]�+̝x\�\�{�/F�!�o��ׯ ��7MsIEND�B`�
�PNG

IHDR22?��gAMA�� �a
AiCCPICC ProfileH ��wTS��Ͻ7��" %�z �;HQ�I�P��&vDF)VdT�G�"cE ��b� �P��QDE�݌k �5�ޚ��Y�����g�}׺P���tX�4�X���\���X��ffG�D���=���HƳ��.�d��,�P&s���"7C$
E�6<~&��S��2����)2�12� ��"�įl���+�ɘ�&�Y��4���Pޚ%ᣌ�\�%�g�|e�TI���(����L0�_��&�l�2E����9�r��9h�x�g��Ib�טi���f��S�b1+��M�xL��� �0��o�E%Ym�h����Y��h����~S�=�z�U�&�ϞA��Y�l�/��$Z����U�m@��O� ��ޜ��l^��� ' ���ls�k.+�7���oʿ�9�����V;�?�#I3eE妧�KD�� ��d�����9i���,�����UQ� ��h��<�X�.d
���6'~�khu_}�9P�I�o=C#$n?z}�[1
Ⱦ�h���s�2z��� \�n�LA"S�� �dr%�,�߄l��t�
4�.0,` �3p� ��H�.Hi@�A>�
A1�v�jpԁz�N�6p\W� p �G@
��K0ށi���A����B�ZyCAP8�C���@��&�*���CP=�#t�]���� 4�}���a ���ٰ;G���Dx����J�>����,�_“@��FX�DB�X$!k�"��E�����H�q���a���Y��bVa�bJ0՘c�VL�6f3����bձ�X'�?v 6��-�V`�`[����a�;���p~�\2n5��׌���� �&�x�*���s�b|!�
ߏƿ'� Zk�!� $l$T����4Q��Ot"�y�\b)���A�I&N�I�$R$)���TIj"]&=&�!��:dGrY@^O�$� _%�?P�(&OJEB�N9J�@y@yC�R �n�X����ZO�D}J}/G�3���ɭ���k��{%O�חw�_.�'_!J����Q�@�S���V�F��=�IE���b�b�b�b��5�Q%�����O�@��%�!BӥyҸ�M�:�e�0G7��ӓ����� e%e[�(����R�0`�3R��������4�����6�i^��)��*n*|�"�f����LUo�՝�m�O�0j&jaj�j��.��ϧ�w�ϝ_4����갺�z��j���=���U�4�5�n�ɚ��4ǴhZ �Z�Z�^0����Tf%��9����-�>�ݫ=�c��Xg�N��]�.[7A�\�SwBOK/X/_�Q�>Q�����G�[��� �`�A�������a�a��c#����*�Z�;�8c�q��>�[&���I�I��MS���T`�ϴ� k�h&4�5�Ǣ��YY�F֠9�<�|�y��+ =�X���_,�,S-�,Y)YXm�����Ěk]c}džj�c�Φ�浭�-�v��};�]���N����"�&�1=�x����tv(��}�������'{'��I�ߝY�)� Σ ��-r�q�r�.d.�_xp��Uە�Z���M׍�v�m���=����+K�G�ǔ���� ^���W�W����b�j�>:>�>�>�v��}/�a��v���������O8� �
�FV> 2 u�����/�_$\�B�Cv�< 5 ]�s.,4�&�y�Ux~xw-bEDCĻH����G��KwF�G�E�GME{E�EK�X,Y��F�Z� �={$vr����K����
��.3\����r���Ϯ�_�Yq*���©�L��_�w�ד������+��]�e�������D��]�cI�II�OA��u�_�䩔���)3�ѩ�i�����B%a��+]3='�/�4�0C��i��U�@ёL(sYf����L�H�$�%�Y �j��gGe��Q�����n�����~5f5wug�v����5�k��֮\۹Nw]������m mH���Fˍe�n���Q�Q��`h����B�BQ�-�[l�ll��f��jۗ"^��b���O%ܒ��Y}W���������w�vw����X�bY^�Ю�]�����W�Va[q`i�d��2���J�jGէ������{�����׿�m���>���Pk�Am�a�����꺿g_D�H��G�G��u�;��7�7�6�Ʊ�q�o���C{��P3���8!9����� <�y�}��'�����Z�Z���։��6i{L{��ӝ�-?��|������gKϑ���9�w~�Bƅ��:Wt>���ҝ����ˁ��^�r�۽��U��g�9];}�}��������_�~i��m��p���㭎�}��]�/���}������.�{�^�=�}����^?�z8�h�c��'
O*��?�����f�����`ϳ�g���C/����O�ϩ�+F�F�G�Gό���z����ˌ��ㅿ)����ѫ�~w��gb���k��?Jި�9���m�d���wi獵�ޫ�?�����c�Ǒ��O�O���?w| ��x&mf������2:Y~ pHYs  �� �IDATh�Zyp����}e���}�� G�(��*�m�V���jcEG.m)�'j[�QQQI˥b d(:
�@  �6�����������G3���%��;���w���9~�󼉌1f�Ϡ�����g�J�L6�
��</���\>�kI*�C�K d��@�nU
�U`��ZO�gH�H��<_�]۷C#g�
^dL�ǘ�Y��5
����[9����O/��������ߎ���Ю\��"5)q�� ��r �uww�s����E:Rsn��%�0���[��]6Q#��<��2�H��x�,��_����� ��*�V[��;�N�l٫x��?HC��r Ү���x}>�N���[�:��GL@�e5^�{ѦH��3�4>�~�Lk���d�3tZ�����y"�@pAh8��V��!���'2Xœ�y��� ���?�����������C�i�J,ڵi�Ep"
=��0r�p����qa�$��I������k��~��my~+{z ؞�3� ���ƛCh,O�|�<����r�6) �v#�sg��=�z-�:lo�m�N�z�Z��r�C�~�4�u�!�6�����V]`�v��MH���s[��^M�xh.�C _��q n��U�ֱ�Ʀ��C�Ɉ<���<��G@v�o����Nqq/m���sUl�Sq�le&���אԜn��:�/,dY4���鬩�E|�?�Ho�xZ�ţѪ��G�� w�!��؍�;w�؍�Q��c�df��z�t9�n�Ձ7�K�AOt̛�ώ�o�3.��z����D�Xk xh@�-�H�3ٷ����w�U�2�y�3������/���$�Jv�"넏)�#q�GfB?�7͚�Ӈ��߹��yȈb��pݩ �c�^�T��������������f��NTt�av|/�,�������Lȕ>���*�:~����y@e�X��z��;ˁg�s���k��5bw�cݪ?���mȺ9�m]X�� S���>�,�M�kQ�PB��@�R�i
�Sv)#�\^t57�ţ5H�&�0�`!D��6a4�p�R\�L��#,�(�)b{ �C�e��
�b�O���u8D ��b��i�<Մ��_Aۅ]E� ����@����e�e�Gi�b҂ɵ��*aP�����d4=i�2/h�ڠ ��U2z�g��Xn�'�ۊsߝ'ߓ�!)��B2-���T�mZU��o��y�'CG���jحe�� � )�ښ��� �B#PS�\�0O+R��)i��Z���0�܈�E��C���8XD!k�O��'����[H��D�� � [Sl�6biQ-V������&M�51��X^T�{���?�Y�֞�Zc�� �(��wDZ���)?�n�:�$���f��0)������F��m(c��ӻ;a��]b�O����1��X�d�U��9]���r�8@��&�~�]G*��ط(���Ӈ��~ �hK����r0����ȝ�����-[�أ�0�(z�(((��W���M����4�0"��n�_�J��YS��ܷ�h��3ģ���H��!I�=\���X؝v4Jb"���\�� �FG#''�n,����zL�����X�h�|���(u\y~��j�6D$���}���Q{|�`[P@��:m6���Z���+���<�E�#p�l��p�X����?_؈{~ z�L�>�W���қ�]���@m��������&
��j\�H��P��%����"��l�8�%6�����ndM��ꭋ��h1,�F��d3��`17 �s?޿g?b�o@�h�o�GV^
�:2+[�Z%wp�;��Xj
��!N2-����
��ё}�����m|����0z�iC�lh�Z:��#&v2Lf/쥛1<� ��)��Q�����Dž�( d� ����R�~ۜ��$( �t���SCy�/��n���bV�E$���^�GjqkF �-7��jAIU'nI3c��XhP?�֩ -���Q0܄�.N\�C^��n���<�o�!��F \��j��G�?�"��hiǏn2�//�cnf4�P���͢ jm�� �ΈU�P]'�z<�I2bt�ALc���'3�l���J`棹"ɤ%A�P)MMI�I�m����פW����lJ<�"5��~�O4�6�@�O��#:��%�0�Ң���� h��ĹV;��y58B��?*M�s(@�ҝi�SR�J̆_�S�M쁂8t:<H02�ϫ;�;��ԝ��q�(3L:�俬�BiC/�[t���+�5"�5v;IL�(H(_AiDg6!��pVl�2.F������;��'��ح��'�����=p��x��{([�(���Š�������Ü�b�\����Q��;~�� *=�I�((���x�V�̚?�%�^���|�3ք�LJ@ySiʏ\��xF<�L�8Qd҆-z5�Ȝ�#���Ȍ5��L�����i`�]��J�CBt�+٫�^���nyqI�py��� 6�d�|�����0k��C�&j� �b�V:9��TN���gGi�{���� D�
ρ*�����<�d
t2i����x!�c��W@u��L�'R3tTˆ ��Y���|���+�E�)_�á��}�/B��[H@�I3;�|�͋~��� ��a�JE���͎��q�Go ��!2���'�r�&*PZµk��lq%&oނ ���%�ja᫽���}�2& ǔd��L< h�`��0#=��g�2��d���9�|��.��[���q��Y�N<�*�����ňm�t齘�ގK>��y��T[N�u�É��D]����g����Fi��ߏ�O)�ٱ/c � 6h�<H�]U]��uۡ0���&6rP"��h6�L��LJ�����%��K��dbt���z�,j�����ެMM���v�E)_� d�Jr`;���(u�cۗU�RM�����A���|��(2��n?h8�W�绞��D\���f3�� ځ3+�F|��g�~����Ϝ�������D�*�4*%"T :��<L�r@<��!�$ݰ����A�ˏS� �`3)���&�i�F�Ǝa�~�_��T�v������`w�����-��MO�>�]|/��ki�a9���j�Z��� �Z 8��ұN\L�Ub�������H��#��@��#��h�Ƅɯ�������oHZ����ť�{.��C�����F�͈v~�` �C/�@�����x��� o��_I��s���IEND�B`�
�PNG

IHDR22?��gAMA�� �a
AiCCPICC ProfileH ��wTS��Ͻ7��" %�z �;HQ�I�P��&vDF)VdT�G�"cE ��b� �P��QDE�݌k �5�ޚ��Y�����g�}׺P���tX�4�X���\���X��ffG�D���=���HƳ��.�d��,�P&s���"7C$
E�6<~&��S��2����)2�12� ��"�įl���+�ɘ�&�Y��4���Pޚ%ᣌ�\�%�g�|e�TI���(����L0�_��&�l�2E����9�r��9h�x�g��Ib�טi���f��S�b1+��M�xL��� �0��o�E%Ym�h����Y��h����~S�=�z�U�&�ϞA��Y�l�/��$Z����U�m@��O� ��ޜ��l^��� ' ���ls�k.+�7���oʿ�9�����V;�?�#I3eE妧�KD�� ��d�����9i���,�����UQ� ��h��<�X�.d
���6'~�khu_}�9P�I�o=C#$n?z}�[1
Ⱦ�h���s�2z��� \�n�LA"S�� �dr%�,�߄l��t�
4�.0,` �3p� ��H�.Hi@�A>�
A1�v�jpԁz�N�6p\W� p �G@
��K0ށi���A����B�ZyCAP8�C���@��&�*���CP=�#t�]���� 4�}���a ���ٰ;G���Dx����J�>����,�_“@��FX�DB�X$!k�"��E�����H�q���a���Y��bVa�bJ0՘c�VL�6f3����bձ�X'�?v 6��-�V`�`[����a�;���p~�\2n5��׌���� �&�x�*���s�b|!�
ߏƿ'� Zk�!� $l$T����4Q��Ot"�y�\b)���A�I&N�I�$R$)���TIj"]&=&�!��:dGrY@^O�$� _%�?P�(&OJEB�N9J�@y@yC�R �n�X����ZO�D}J}/G�3���ɭ���k��{%O�חw�_.�'_!J����Q�@�S���V�F��=�IE���b�b�b�b��5�Q%�����O�@��%�!BӥyҸ�M�:�e�0G7��ӓ����� e%e[�(����R�0`�3R��������4�����6�i^��)��*n*|�"�f����LUo�՝�m�O�0j&jaj�j��.��ϧ�w�ϝ_4����갺�z��j���=���U�4�5�n�ɚ��4ǴhZ �Z�Z�^0����Tf%��9����-�>�ݫ=�c��Xg�N��]�.[7A�\�SwBOK/X/_�Q�>Q�����G�[��� �`�A�������a�a��c#����*�Z�;�8c�q��>�[&���I�I��MS���T`�ϴ� k�h&4�5�Ǣ��YY�F֠9�<�|�y��+ =�X���_,�,S-�,Y)YXm�����Ěk]c}džj�c�Φ�浭�-�v��};�]���N����"�&�1=�x����tv(��}�������'{'��I�ߝY�)� Σ ��-r�q�r�.d.�_xp��Uە�Z���M׍�v�m���=����+K�G�ǔ���� ^���W�W����b�j�>:>�>�>�v��}/�a��v���������O8� �
�FV> 2 u�����/�_$\�B�Cv�< 5 ]�s.,4�&�y�Ux~xw-bEDCĻH����G��KwF�G�E�GME{E�EK�X,Y��F�Z� �={$vr����K����
��.3\����r���Ϯ�_�Yq*���©�L��_�w�ד������+��]�e�������D��]�cI�II�OA��u�_�䩔���)3�ѩ�i�����B%a��+]3='�/�4�0C��i��U�@ёL(sYf����L�H�$�%�Y �j��gGe��Q�����n�����~5f5wug�v����5�k��֮\۹Nw]������m mH���Fˍe�n���Q�Q��`h����B�BQ�-�[l�ll��f��jۗ"^��b���O%ܒ��Y}W���������w�vw����X�bY^�Ю�]�����W�Va[q`i�d��2���J�jGէ������{�����׿�m���>���Pk�Am�a�����꺿g_D�H��G�G��u�;��7�7�6�Ʊ�q�o���C{��P3���8!9����� <�y�}��'�����Z�Z���։��6i{L{��ӝ�-?��|������gKϑ���9�w~�Bƅ��:Wt>���ҝ����ˁ��^�r�۽��U��g�9];}�}��������_�~i��m��p���㭎�}��]�/���}������.�{�^�=�}����^?�z8�h�c��'
O*��?�����f�����`ϳ�g���C/����O�ϩ�+F�F�G�Gό���z����ˌ��ㅿ)����ѫ�~w��gb���k��?Jި�9���m�d���wi獵�ޫ�?�����c�Ǒ��O�O���?w| ��x&mf������2:Y~ pHYs  �� }IDAThݙyt���?wͽ7{BB�����PpZ�*�k�tF[��̩K�֣�jm�ֵ�:J�Ȉ�5F��l�@d! d'�M����yÛƑ����>�}�������y�IӴ�d ڷ�o �&�i� ��X m���� ��_ps�#1V �jO0H@�:���o�����[
9�e �qq̺�V�df��I�1��w�2#
Di�d6����`^y"\�\rլYCHD�rsIOH�-3�`D;#Jn�_[�b��\d��д�dMs:�w��a�^�8Q;^]��Fl�����q�6�^/��ZHIMe��(-e�ƍ�)f�ވ��S�024\\V��U���4�Eky߷�ۭڱ�(�ٰ0�p�&m��2��D�]{��g5�3&Q{W��媓ku�S�œ�Q�/.�w�����kuC�JS��O�����
qS7�Yv*��Tc��ѢF�)�|��q���ZF�Pm+>J��O3� ��\8t:�񧚩�)���4�h�zB)��*&��'Kn�k��t�K��A4�˰�㍸g\�]=�$ޜER\*!In�*�6�=A̾ 3]A� �E�p��QO�����e Jݐ���Ÿ���{����fQ�Bn|(o�XH1�լ8\���.���/z����0����L*V/�(��6V1q�����<L�ɶ��~�a�:A͡S�9�<xeAl8L��QơU��?~���X��]֭yW�Պ)(��* ذ���YP��;qDM��@9[�����y����S�MW�c�γ����>���^>Z�Gvo=@�����qǪ�֨M���E)HU}fЀd�I�Y�:�>mՃ+��%hE����_������U_��g�ԑ�m}���_��Vy=ZE6��]w�YPۺ�3-��S������Dz�E��,=M����ʤ�$̞���'��W^b��l�n{�<���x�d��\�;�=o�[a̬��v�pl+���yWa��:�{j"��e-M���cA���ǐ����EL_]W����Gx��
������2}�쬉X�")9~���T-�M��r2�&�����9��Ab�O2V����:6��OY~g$9���ifw���n��-�E+R��� �҈:[tx|����y���k,���L[����ͼ�~�r��E�ʻI��Jj8t��$)�f�LN�Օ��x�g$NI��]O[d<���Lt�Q:.>(=CBX����ay��y��W�kj����e�T��w>���,�9S(��`Q��V��p���:h�q�dG��afrz(���:%5�D@�|�.�H�s��_M���3��%-dG�Y�ᢼ�ǚj�'Ġ)cU|����������2ӥ� ε]����-��-t-�bv�:�.�捦��ͮ; ;�T?��/0w�hf_������=�D��7{n�|\f"�ec�(n�ɒł����p��=l���~�=éfА��[���=�����'�Q� �e��������?��2Q��feY�@��hb�X���q�e��A
�}�4Sj���Wx-Ns���C�~<މ`�5� ��<����)����n :FTn��������z�n|��|�><�AoK���Ok��*�Ho��K�������Ǝ�^�m�e�[xyMZ��mu>f�UF;M\��I u������Fn���z3 Fpu���<�$$��^<�f!�i��h+o�*`�je�Q�&��X�vN�+���ؘ:ފY4�@�k��˝�=d�N�|�( �!~[<�T��J�l�����S�usP1��VT��e���Ti#|�A$x�׎�3V4��.������p��IП�����ݶP"$*�|v���U�E��V�� u��K4�b���X�K�����!��|c/�pz�~�s�1�V��J������|�4�4�$�)����J���`#Peb{5���uv���\��`��S�~nO a�(@ŅLq�ʠU�lvIJgC9�_���O�����`һ�YS�~��D/H}���L��Mϓxɐ Tp�Kqx�_�k���eYPt�G�<Ȥ( �Lr�a�'�UepR5�%M�8_�G�W�ά7�*F�!тZj�?*��Q̕ �4y4����p�P�?�ao��k�^��I$��9��S����Z��_���G�ȍ���A������:��L�"��nZ� ��`������~�\CeE�"x�(+S$��Ʊ�d�{�9�� K�%���m������tb��u>_g }�| l��� �Q�tfdQzVNxV�Wf�����S�į�պe�Q�U2�:��%�@��* ��c�u��l_�Lb"���D�S�� o���A�Tq�X�R`�|�� }c��)J��}x��4���Kd��+mH��_�����Ж�ޚr<\�BJ u ���+��}�9@E��p��a�w���C�AQ��IRB<�������+FꂗP��&ϕp�R� :e��������%.r45��1��4.C�a��`0 ��m��\����!<�tkSb섋z%�V��B��*z�P
��>됴,n�#�O-�{�x~�� ���QB�ӡ�$JJyiJK�S�ub�6H ��j�-�PR+�/�jA�]�ԛ�� �m7I�% BE>�f���͞ٷ��v0�C�����֖�E���<�&2�g��Z-Z��eL���H*�U�m�J�$��� >����~�M��� �����l��=D(�æ�c%���\�c�����tJ�$.�(��oܥ> �.�R�B��԰3m ���1sgN�eP��]�kXQ��o�,��x�MJ{�k�i�"`�%`�IU��Q,�*476�U��Av���x��=�sFKL�<����ph�@�f�>����D:�6����D��f*=�Tf6�"�����^С2�7#�S��&$�uLx���L�ls��;�LW& ��/t���Dv���]�OaQ��4\pQ�a���/��2���Q6+�֯#��0m�Ԏ�k�����};f��(��f�V�1.E:�!f,�}�@�sg߶���$WY�/���_�Z����q7�FڄIDE��:�ʩ�F�j(�_��Ǚ3�F��: ��s�]�+��~!N�mX@�4�����I�e'Np��4I�J����- �L!{�\��w|W�t���2�.o��f��צ�,�=7 O�ܮV�?�}h7��g��y�ج���;<teWl���!n52����y��v����ș;W��[�W5��` PW���q��ik���j���$X� �߹�3�����^���,8xD�}�L�Ս�n��[l���>��9CH��$_��߾e�����L���Թf�X驾�!/�x��C��~:���xe-�"È���Ǎ�푌WU����ċ|��w��
�$����I_%�~�_�����+C��[�M��Yd8� ta���6��x��O��!+n��IEND�B`�
�PNG

IHDR22?��gAMA�� �a
AiCCPICC ProfileH ��wTS��Ͻ7��" %�z �;HQ�I�P��&vDF)VdT�G�"cE ��b� �P��QDE�݌k �5�ޚ��Y�����g�}׺P���tX�4�X���\���X��ffG�D���=���HƳ��.�d��,�P&s���"7C$
E�6<~&��S��2����)2�12� ��"�įl���+�ɘ�&�Y��4���Pޚ%ᣌ�\�%�g�|e�TI���(����L0�_��&�l�2E����9�r��9h�x�g��Ib�טi���f��S�b1+��M�xL��� �0��o�E%Ym�h����Y��h����~S�=�z�U�&�ϞA��Y�l�/��$Z����U�m@��O� ��ޜ��l^��� ' ���ls�k.+�7���oʿ�9�����V;�?�#I3eE妧�KD�� ��d�����9i���,�����UQ� ��h��<�X�.d
���6'~�khu_}�9P�I�o=C#$n?z}�[1
Ⱦ�h���s�2z��� \�n�LA"S�� �dr%�,�߄l��t�
4�.0,` �3p� ��H�.Hi@�A>�
A1�v�jpԁz�N�6p\W� p �G@
��K0ށi���A����B�ZyCAP8�C���@��&�*���CP=�#t�]���� 4�}���a ���ٰ;G���Dx����J�>����,�_“@��FX�DB�X$!k�"��E�����H�q���a���Y��bVa�bJ0՘c�VL�6f3����bձ�X'�?v 6��-�V`�`[����a�;���p~�\2n5��׌���� �&�x�*���s�b|!�
ߏƿ'� Zk�!� $l$T����4Q��Ot"�y�\b)���A�I&N�I�$R$)���TIj"]&=&�!��:dGrY@^O�$� _%�?P�(&OJEB�N9J�@y@yC�R �n�X����ZO�D}J}/G�3���ɭ���k��{%O�חw�_.�'_!J����Q�@�S���V�F��=�IE���b�b�b�b��5�Q%�����O�@��%�!BӥyҸ�M�:�e�0G7��ӓ����� e%e[�(����R�0`�3R��������4�����6�i^��)��*n*|�"�f����LUo�՝�m�O�0j&jaj�j��.��ϧ�w�ϝ_4����갺�z��j���=���U�4�5�n�ɚ��4ǴhZ �Z�Z�^0����Tf%��9����-�>�ݫ=�c��Xg�N��]�.[7A�\�SwBOK/X/_�Q�>Q�����G�[��� �`�A�������a�a��c#����*�Z�;�8c�q��>�[&���I�I��MS���T`�ϴ� k�h&4�5�Ǣ��YY�F֠9�<�|�y��+ =�X���_,�,S-�,Y)YXm�����Ěk]c}džj�c�Φ�浭�-�v��};�]���N����"�&�1=�x����tv(��}�������'{'��I�ߝY�)� Σ ��-r�q�r�.d.�_xp��Uە�Z���M׍�v�m���=����+K�G�ǔ���� ^���W�W����b�j�>:>�>�>�v��}/�a��v���������O8� �
�FV> 2 u�����/�_$\�B�Cv�< 5 ]�s.,4�&�y�Ux~xw-bEDCĻH����G��KwF�G�E�GME{E�EK�X,Y��F�Z� �={$vr����K����
��.3\����r���Ϯ�_�Yq*���©�L��_�w�ד������+��]�e�������D��]�cI�II�OA��u�_�䩔���)3�ѩ�i�����B%a��+]3='�/�4�0C��i��U�@ёL(sYf����L�H�$�%�Y �j��gGe��Q�����n�����~5f5wug�v����5�k��֮\۹Nw]������m mH���Fˍe�n���Q�Q��`h����B�BQ�-�[l�ll��f��jۗ"^��b���O%ܒ��Y}W���������w�vw����X�bY^�Ю�]�����W�Va[q`i�d��2���J�jGէ������{�����׿�m���>���Pk�Am�a�����꺿g_D�H��G�G��u�;��7�7�6�Ʊ�q�o���C{��P3���8!9����� <�y�}��'�����Z�Z���։��6i{L{��ӝ�-?��|������gKϑ���9�w~�Bƅ��:Wt>���ҝ����ˁ��^�r�۽��U��g�9];}�}��������_�~i��m��p���㭎�}��]�/���}������.�{�^�=�}����^?�z8�h�c��'
O*��?�����f�����`ϳ�g���C/����O�ϩ�+F�F�G�Gό���z����ˌ��ㅿ)����ѫ�~w��gb���k��?Jި�9���m�d���wi獵�ޫ�?�����c�Ǒ��O�O���?w| ��x&mf������2:Y~ pHYs  �� �IDAThݙ p�U�;$Ą�p���3Y1��`�V8w]Pt)���QQ,AK#�"Q�>�K�r �0ܒ �@8��_���LH�ݪ-�j���������� �<��(D��zH�D )�C����O�%�z��=gn���� ����Znqx� ��+�\asݜ�^Ê:�\nn�d�dK�J�%,�7W�\�={�ȏ?�(��퓽{�Jdd�M��ϗ�e��w�!+V�[o����(}��)����2e��/W��b{+�;V�.?�����Kڵk'k׮�� J�J��aÆR�vm)Y�� ��Pa�M�&o���t��U��~�뮻$==]>��Y�h�t�����p� ��T+�X��x�<� H�����U-�M�<�;y��5y���y�>��סC�T�R6^*T�V��=��c �**��j+C!t�P�޽mD�5���U@��ڊ
cV��|���QNN�y����6o๶m�J˖-�ȑ#���[x1�OQ�/d����r��Q�ITT�,]�Tn��6����A�g�g�}&}��l߾]n��f!t�s��y��Y���\�tI����Z�j>��ϵB���gp��Q�3g�<xPbbb,!�Ķm�d���ҩS��Db�s��ҥK��7@���-(1t�PIh�Z���o��Sݺu��o��t� f�+A/^�X���/�76k���u�х d����H���fY@�|��y���3f���� �]�x� ��
S&`��+��o�~���ɓ�U�V���A �����ƣ���1H�={�>|�r��Cn���Xy��g��"�s�=''N�0�y��EPR��F��{���N�>�i��3U��,6l�������{���ӽ>}�x�~����$���yC�W^y�S{*���D�4,��~��Ǔ5��uv���%$$x��1v��4��zٲe��hS�ti�8�����s��M�d����l�K�`�aÆ�´���KұSGiݪ5��V�^-={�5������1e�Y�n��1��ڼ�ѣ��������T�[u�����}��7���y�y� �ꩧ~WC�����6�5����k��;��_��v�SsƮ+W�4o͚5��b��/ η �0G�Ű8�'^��'�|RZ+�8He���ǭj�~@����%o�ʕ%"2Bv��--Z��8�6n�hc��_��8p�~�<ve]rh֢i9�3���B1���j�*�A�& �ݢ ��[�l�_|Q���g�����-�믿n��s@��~C^��|�M���a
|UAY<װ�X�S� ^�J+p��ƚ������(5dɒ%���hJ��� �ixa$ r
���;������P#��47�������¼sJ)ZY#��<{�G�s�ε��O3���O<!x�v�QH���’�I ��A�x���W��S�_0`�ԬY�jCaD`��B���֭[M�f͚�C=d��J��;v��JO�@n 97u�T��ʗ/oh�b�
ٵk��sn\=����=��l�� �yp��9O���p��n���Ε�#�������u�흛������=�Y�2T�6igas�_o���3�:$��L�0��/�"{ j ���y�yl��8"Gx���.���.l�hMԀ���ٴiSQ������k��/n�RRR,\h�i�!�b�0N����c�}�v�=�+y
7�/'�jԔ�� lJ ���3(���:j��y pЛ��H�{�=⬤�dA��\�Z�D��4i�1v
8�h"Sf���Q���,�y9J������Y:k� ��u$˔��2�O�2<�J���-����hi[�L�1� ��a)�&` �� �e�ԩcЊg 漬�0�j��1FB��)���k��ѻ�m�^���2��W�(l֯_/$6�����;�Ϟ=+����"�B�z�q%� �" L�Bt����P���%���
�#���O�']t��'4<�#d΂TIN�*�Ԉ� #��[o�e&��fz5�tիW�����*���K[;�WPE�_*��t���>>$�ĉeܸqVԾ��; �Ւܥ�ș<9�}J>]8_6�J��W�KϿ����wʹ�3R%Jۙ�<�|��!3g�4�� �q����r@��(�0��>���D˅X��իgVcoݨQ#{�=�X��OE���pGd�ь �XE�>�CbJ�K|�[$&4Rf��"��W��CrlC��)G�[�?�؎�ڵkg
�H�=�Xh�`Tv�Fhn�(�"h_�Ʋ�x�����v⫯���)`��{�5�j��c�lٞ&��W�2��HBӖ�{&G�m� �j��i= ;t��DGE��M'�eП�j^�ՙ7o��9Rʕ+g@BXcD�@OW,BP$�g*�FP�/��<�=՝+9�^�����n��66e�tk�I��Օ�N*��j�| � ��՛�I�I�`�~�͛77t$�w�n��t� �T妠��s�ĭ��ˤ��
�&&�q����G6*��,!�̔���C>_�L֧m� ۶��kd�ܙ�rN�(-�57�ђ�"J�� �z��m���.!1�%}�c?��
�@�Q�F n��ķ~�*w�}�-�(ĢԀ��ߗ���J�6��'+SN�����Nj##�>\-��S�͙�B�"V�$��#���R���0GD�� 觇 -��!DN�u�֕!C��|��s^�1(�[E��u�$4����^r�s�P�A�z� ���0�6��B�잵٨�H � -� 0g�ŀ_�P�� s�� $�*����ȨR�yT�Fu���%0�#xC�U���BJ��!yN�C�s��W��0�d���JӞ� ���g��_!��p���� ������!�hS@,j��_|!cƌ��0c������0�M$'pyZZ��6�b�
�TQ�)�,��5��"�Q�= G��#<���@�4�@���vu<�G��Ba�c@n���T�ܼ\�΂j����(� @���y�� �Ot�$1PO��!�Wxtd�Ȇ��Xt�G����#��Ҳ������<��H�?�8g>�隱<��M2Ӳ�}��8'���Ϸ3��x9�;y]���2�q�`=&4�����$��I�`�Ż�Js�L���b����z7��4h����+W� �!d B�a������!��2 ��\�ڴ� ������)<�c��# r�\L%"�e�A4Bh6Ft˗/�$GA�2O?��4i���qnFP��rPQ���ŵX�`!�P��O �@!…w�T�6m�g������$�� �HFg �\���'��z��5�����j rqJ���%m�P� Ai�ƀWr��sV�|8$�(��;���)�Q��� y(tX�� ;G΄c���o��Ơ ��@4*yq�E��tr�I���j�� !΂~������w��
���m�yZ_� �"��~���x����2��SS>�C;�x��nW>��^j���u)��,~-�W��s�Y��N��R�-��R�)W�9���?�nE���?�� %�y\��)�IEND�B`�
�PNG

IHDR22?��gAMA�� �a
AiCCPICC ProfileH ��wTS��Ͻ7��" %�z �;HQ�I�P��&vDF)VdT�G�"cE ��b� �P��QDE�݌k �5�ޚ��Y�����g�}׺P���tX�4�X���\���X��ffG�D���=���HƳ��.�d��,�P&s���"7C$
E�6<~&��S��2����)2�12� ��"�įl���+�ɘ�&�Y��4���Pޚ%ᣌ�\�%�g�|e�TI���(����L0�_��&�l�2E����9�r��9h�x�g��Ib�טi���f��S�b1+��M�xL��� �0��o�E%Ym�h����Y��h����~S�=�z�U�&�ϞA��Y�l�/��$Z����U�m@��O� ��ޜ��l^��� ' ���ls�k.+�7���oʿ�9�����V;�?�#I3eE妧�KD�� ��d�����9i���,�����UQ� ��h��<�X�.d
���6'~�khu_}�9P�I�o=C#$n?z}�[1
Ⱦ�h���s�2z��� \�n�LA"S�� �dr%�,�߄l��t�
4�.0,` �3p� ��H�.Hi@�A>�
A1�v�jpԁz�N�6p\W� p �G@
��K0ށi���A����B�ZyCAP8�C���@��&�*���CP=�#t�]���� 4�}���a ���ٰ;G���Dx����J�>����,�_“@��FX�DB�X$!k�"��E�����H�q���a���Y��bVa�bJ0՘c�VL�6f3����bձ�X'�?v 6��-�V`�`[����a�;���p~�\2n5��׌���� �&�x�*���s�b|!�
ߏƿ'� Zk�!� $l$T����4Q��Ot"�y�\b)���A�I&N�I�$R$)���TIj"]&=&�!��:dGrY@^O�$� _%�?P�(&OJEB�N9J�@y@yC�R �n�X����ZO�D}J}/G�3���ɭ���k��{%O�חw�_.�'_!J����Q�@�S���V�F��=�IE���b�b�b�b��5�Q%�����O�@��%�!BӥyҸ�M�:�e�0G7��ӓ����� e%e[�(����R�0`�3R��������4�����6�i^��)��*n*|�"�f����LUo�՝�m�O�0j&jaj�j��.��ϧ�w�ϝ_4����갺�z��j���=���U�4�5�n�ɚ��4ǴhZ �Z�Z�^0����Tf%��9����-�>�ݫ=�c��Xg�N��]�.[7A�\�SwBOK/X/_�Q�>Q�����G�[��� �`�A�������a�a��c#����*�Z�;�8c�q��>�[&���I�I��MS���T`�ϴ� k�h&4�5�Ǣ��YY�F֠9�<�|�y��+ =�X���_,�,S-�,Y)YXm�����Ěk]c}džj�c�Φ�浭�-�v��};�]���N����"�&�1=�x����tv(��}�������'{'��I�ߝY�)� Σ ��-r�q�r�.d.�_xp��Uە�Z���M׍�v�m���=����+K�G�ǔ���� ^���W�W����b�j�>:>�>�>�v��}/�a��v���������O8� �
�FV> 2 u�����/�_$\�B�Cv�< 5 ]�s.,4�&�y�Ux~xw-bEDCĻH����G��KwF�G�E�GME{E�EK�X,Y��F�Z� �={$vr����K����
��.3\����r���Ϯ�_�Yq*���©�L��_�w�ד������+��]�e�������D��]�cI�II�OA��u�_�䩔���)3�ѩ�i�����B%a��+]3='�/�4�0C��i��U�@ёL(sYf����L�H�$�%�Y �j��gGe��Q�����n�����~5f5wug�v����5�k��֮\۹Nw]������m mH���Fˍe�n���Q�Q��`h����B�BQ�-�[l�ll��f��jۗ"^��b���O%ܒ��Y}W���������w�vw����X�bY^�Ю�]�����W�Va[q`i�d��2���J�jGէ������{�����׿�m���>���Pk�Am�a�����꺿g_D�H��G�G��u�;��7�7�6�Ʊ�q�o���C{��P3���8!9����� <�y�}��'�����Z�Z���։��6i{L{��ӝ�-?��|������gKϑ���9�w~�Bƅ��:Wt>���ҝ����ˁ��^�r�۽��U��g�9];}�}��������_�~i��m��p���㭎�}��]�/���}������.�{�^�=�}����^?�z8�h�c��'
O*��?�����f�����`ϳ�g���C/����O�ϩ�+F�F�G�Gό���z����ˌ��ㅿ)����ѫ�~w��gb���k��?Jި�9���m�d���wi獵�ޫ�?�����c�Ǒ��O�O���?w| ��x&mf������2:Y~ pHYs  ���IDATh�Y PT����˲�vA�,*��Tc]@���4���h�c3��m�Mml���&��3;���4ӱ:ɴ&�N[�����` �X��pY`wY�q���r�L��{�����s�=�������s5L�Dh��Ć~��41�򥋁�>�����b���ؘ�h4�����幬-�c&�b�t�}5VhQ9�6��3�X�q���I"��z}8Ss/~��#V./Gq�RUApt�P�"�"����-=��M `�q�����{y�0�� Үw�
_]��Twe�SR�,H=ݽ��Z`T"���?W�i�I vH�],׭ �!}��0$:~t@�-�/���(����lRS�"g1� rg:��;p�����G���U���������͖Ȼ��(�HH�~�����& �%���
�� ��v��Ȕ�� aђ��ۣo�L��n?�:���"�Q ����#?�h�Ձ��r���t"��#� �Pw���f�a�def����A� ��6 S�����������~ /IlL0�Ÿ�a9�N��b�:f"/��$ � �Qw��g�������STr�� ��\ G�Vu54���ecyI ~{��5�!P�U_�1���
F�y��*[��@[�/C�5/*J7�r��M_������> ����Ux��Al���6_iQ�Y������,�_�7��Y��k�$y�A_� "z�1T��=U���6|���A�+%`�ڸ��[�#[���(���s���~��:t� `��F�L��v���Q2�[�~w/B���(�OT����I��|��p��?!A���{�������D8��3`�_^�h���σp8<�eQLٶg��F�c[�!%Â�_D2=���ܔś��� C��J&X��8�P���aM���'��0�2[��񎝰vWB@?"! �f"m��j��`�iCA����ܾs �
_G��uJ�⾹��0JL+�Y�3����ŭ��a�&b�BO���$$�X����֭傰��f�,Ɔb ��,��$AO���~��@�,�����!o�LK�Nm1�{!��������J��9t8DS�ɤC��򅨏� ��D/�Ci��y�r� o��7X�E�Drb#�~��x�'@�SX��Y�@10ꮡbjL0�Ȭ�s{���,:�k��͘�^K�, #Ғ����AB�K4�i��P $j����?��� �^�`ȏ�����UOf���|�XQA6~�%�n�r`�l8n |�" L��9}Uo���rp�/���^LͶ�`�Q�2�`��ꤙ�a�,�W��=k�q����L���/n �1��mW~s�1�r���U���@Jz"���9 ���YIHL2�M���{'�!�Ȝ}��D����7Θ�α��� ��[��7 ۶��ISR���ÕK���� o������mx~�������7_ECcׁ��QQ�
G"h� ���4q5���G�:}
���3t�+(sڐc�A��<����x���\��w�!�!���1�?%n�0�2�����8�$ٵvE.Z����8Pu f�7�Lp��}�eϠ�b�S~EqZ�v#�X�y�p���W�@d�e�e���A�ky/���x<x�b#��-Đ;:��̙0kR����u8p��{���):�l�~Jo�'��L��4;KT�Z����݇�SDJ��׌�?���,'���C��7�����w�$5⩅�ļ���-ya�7�����c=Ѧ�3O,ݍ���~z3�"ݻ���C$L�����P�>��%�t��5�W�k���*qr�"��D��On�J��Z4�S _�f�%"�+!��������|�����#�"9)��` ��(��L�9�՚@N��O�E E[�'nM�G� !�|KO!�JZZt,UV�(����&2#�!�n��a��Y\��S��#���t.�ҝ�A�����&R\�D�#/�o�S�&2+#ڻ\X8���'f��A������<�(�_� �����C�u�7���ajkCu #9$��eQr��Ys�`NnGY�v|e���������U��Z��~�]�@ ���{��٭�����T�q�c� }b�4O�8��|i�3�$����( �Ώd+�z���o쒳t�Ts���G>��ΐ*��W�c:�34RR��Y��V�:�@h������T���/o��OF{R�0��f��_H����6��IEND�B`�
�PNG

IHDR12�3�gAMA�� �a
AiCCPICC ProfileH ��wTS��Ͻ7��" %�z �;HQ�I�P��&vDF)VdT�G�"cE ��b� �P��QDE�݌k �5�ޚ��Y�����g�}׺P���tX�4�X���\���X��ffG�D���=���HƳ��.�d��,�P&s���"7C$
E�6<~&��S��2����)2�12� ��"�įl���+�ɘ�&�Y��4���Pޚ%ᣌ�\�%�g�|e�TI���(����L0�_��&�l�2E����9�r��9h�x�g��Ib�טi���f��S�b1+��M�xL��� �0��o�E%Ym�h����Y��h����~S�=�z�U�&�ϞA��Y�l�/��$Z����U�m@��O� ��ޜ��l^��� ' ���ls�k.+�7���oʿ�9�����V;�?�#I3eE妧�KD�� ��d�����9i���,�����UQ� ��h��<�X�.d
���6'~�khu_}�9P�I�o=C#$n?z}�[1
Ⱦ�h���s�2z��� \�n�LA"S�� �dr%�,�߄l��t�
4�.0,` �3p� ��H�.Hi@�A>�
A1�v�jpԁz�N�6p\W� p �G@
��K0ށi���A����B�ZyCAP8�C���@��&�*���CP=�#t�]���� 4�}���a ���ٰ;G���Dx����J�>����,�_“@��FX�DB�X$!k�"��E�����H�q���a���Y��bVa�bJ0՘c�VL�6f3����bձ�X'�?v 6��-�V`�`[����a�;���p~�\2n5��׌���� �&�x�*���s�b|!�
ߏƿ'� Zk�!� $l$T����4Q��Ot"�y�\b)���A�I&N�I�$R$)���TIj"]&=&�!��:dGrY@^O�$� _%�?P�(&OJEB�N9J�@y@yC�R �n�X����ZO�D}J}/G�3���ɭ���k��{%O�חw�_.�'_!J����Q�@�S���V�F��=�IE���b�b�b�b��5�Q%�����O�@��%�!BӥyҸ�M�:�e�0G7��ӓ����� e%e[�(����R�0`�3R��������4�����6�i^��)��*n*|�"�f����LUo�՝�m�O�0j&jaj�j��.��ϧ�w�ϝ_4����갺�z��j���=���U�4�5�n�ɚ��4ǴhZ �Z�Z�^0����Tf%��9����-�>�ݫ=�c��Xg�N��]�.[7A�\�SwBOK/X/_�Q�>Q�����G�[��� �`�A�������a�a��c#����*�Z�;�8c�q��>�[&���I�I��MS���T`�ϴ� k�h&4�5�Ǣ��YY�F֠9�<�|�y��+ =�X���_,�,S-�,Y)YXm�����Ěk]c}džj�c�Φ�浭�-�v��};�]���N����"�&�1=�x����tv(��}�������'{'��I�ߝY�)� Σ ��-r�q�r�.d.�_xp��Uە�Z���M׍�v�m���=����+K�G�ǔ���� ^���W�W����b�j�>:>�>�>�v��}/�a��v���������O8� �
�FV> 2 u�����/�_$\�B�Cv�< 5 ]�s.,4�&�y�Ux~xw-bEDCĻH����G��KwF�G�E�GME{E�EK�X,Y��F�Z� �={$vr����K����
��.3\����r���Ϯ�_�Yq*���©�L��_�w�ד������+��]�e�������D��]�cI�II�OA��u�_�䩔���)3�ѩ�i�����B%a��+]3='�/�4�0C��i��U�@ёL(sYf����L�H�$�%�Y �j��gGe��Q�����n�����~5f5wug�v����5�k��֮\۹Nw]������m mH���Fˍe�n���Q�Q��`h����B�BQ�-�[l�ll��f��jۗ"^��b���O%ܒ��Y}W���������w�vw����X�bY^�Ю�]�����W�Va[q`i�d��2���J�jGէ������{�����׿�m���>���Pk�Am�a�����꺿g_D�H��G�G��u�;��7�7�6�Ʊ�q�o���C{��P3���8!9����� <�y�}��'�����Z�Z���։��6i{L{��ӝ�-?��|������gKϑ���9�w~�Bƅ��:Wt>���ҝ����ˁ��^�r�۽��U��g�9];}�}��������_�~i��m��p���㭎�}��]�/���}������.�{�^�=�}����^?�z8�h�c��'
O*��?�����f�����`ϳ�g���C/����O�ϩ�+F�F�G�Gό���z����ˌ��ㅿ)����ѫ�~w��gb���k��?Jި�9���m�d���wi獵�ޫ�?�����c�Ǒ��O�O���?w| ��x&mf������2:Y~ pHYs  �� �IDATh�Y tT��f�2�$2�7�K� �KpAPs��"�-���՞��rT
�U�"h9����4 " � BId !!�$��d�7��_|9#�d"��{μ̼����_���7��;� ���1@��r�DrM��6�kJ�%�������ZZ-x�Up8���"�� ��T*��j��'�BюO��-=p�~".��'��� ���1����j�4c`�㚀`�>�Y��e� l����na���g���r �� a��Ҋ��.D��!8i�d ����(� m�.b�2
��݅biDGL4�f�EzJ��"˓��Y^T��t���y\�p�ΜŮ��`< ���Ɔ� �J)�.2V0����w����>��lq���E{Q�e#��!���C�Hؽ�v�†#��{po^��c�u�I^��^�� D����0�����u>]���(��# ��O�{]T�P��NJ���P C��k05�H�\�Z�!ً�ݏ� �-��o��з%(�� \n7v�\�g��qn%��P�] MC�]�R����`�*(�?��H�2G`��\ �.('�ӭ����Ur� +�[
�}1��$����4#:�4���}<ή�@���rA����BP�F�~��G�K�2�����1�\��*!\Cɗ�A���/(��fLG�m� Yp��8���}�z��
ԟ:��6��OT:���/�����5j;0t\��q8t�
�H1�����I~9n[�'��� T5! ��X0��W��rp�̑�i�8ZQ�hƸX : Nw�0/��<��_DS� XP��;���mg0i�~�9���hDvb�-�u���r��Y7ࣕ��� �O��t8���9Hl��1 �9��������ѩh�-A��o���g����"��},8]��Çv?;p�> �L���F ��u +^�7^�ee8r� ��d �3�����%$O�w�<ێ�ρ��C)���ݍ�D�
����lAlKK rssQq�(f>4��sI��~�����&�%CL�k[)Ң�aP�au� '&�8�E�l|�^0Y��`��R�������8'pp>�}b�*�������%��R� u���\+�2�ё2]-xSK|�� � %��#)R�3-�a"c� )�d`�?נ��%,"~j\�8�����_����sC����'�Z; .;�� ũͫQZQ�A1&���P���UT`_�~l��L�t�V;�~� � ��p�|>�(�*�����Q;�&����t����$���j3ʪ�33R�N����8_
/1����k��=6��Ğy���q඿��lr�Bǖ'�rI1Ro����n-@T�x�1v�� 6��/A��Q+�T���4f����2G�߰ �yt>n����
���1.YO�B����)�h�-aD�������F��,�-�NO�D'xP)'n��j�� �B�ɈS�q�4{���4h���W";1k�%�۵�1(sґ���Fa��#F�����~(TCd[�,p��
I�p�B%�|�K�%:T5;p����( ꩆ�*��<��KB֡'��N,�E!s��Ñ��m�K�2
>j-�/u���਺ %�<�����۫~����d�O�`1B�%A4Z94X��Q6*!ZK��������� �q��� �R)G�ě1!Щ�0h�P��8�U�(s��#�o��#LO7���Zf��b"R�ЪRt8��'��Ɉ�������&���w�&�W�A�0��!!V�h�&X~bj$�oBs''У�ƒ1LB�C�~�]]ə7&*�@0�mu��� ,4ܤ��8s�)��@Zj�0_4���'.!�`Vf��H������Du��hl:܀3fQ�_`/�N���aRJ�#X|k2Fą�Y�l�;X�q����$���������#��j��B�kN��.�#��6�$.8�L鬸�v��.aJF� j�BL�{� y�SE�l�S�Z��8b���j ���h��)��xδiB҇�L�^�)H���!��o�P�4��o��n��!�;+�P�$H7j��{*�}�J8 ��r���ƨS"��(3F'�S�@{Ό�� ;w!:2��P~��������^����$<��X�J�
�_��e�J
2�W��K���"1c�`":N OE�x�]�Y�%+|J#* ��X~�fN��'l�d맟��_�a��7B� IϺZ�����5�<B_�%�����5V1T��lpI#`?v������"�w����m��򫯡�g1k��i��F���Yt@@���.Ŀ����ms t�@�mQs|t44�58¥���H�����PG�A0��7ء��k��_��o�A�[֕6��R������½��N�S/r����E�6 ����'�V�~���$��z_.d� ��h�1��h���g`�8ڊ�����Q3��X�g0[�j��:�@�S��$�;��4��0��z߯<ɼ��G�å_ ���Ң]�@���ۋ�os�� V�c���8Vׄa����ow�P���WdoY��KM��L�T}����x�h�<�F���(��Q���⦃2��r u�<�]Zji%��d3�8]犪�E'�}:�8�N;u~4�!��� �� ���6.��ݍ�K�X�g��I-�M� �W���$�}| ��[
���/�Gmŷ�Xq�U�䧗�g0��N�8�$��1���9H)R�_�rB�G�~����9�42�_�,������S���n�0��w���e+������<�p�_|��'���ϟ?/�$����_�$�@l �.^�G�>F��u�3g̠.W�6�555���`nn6HI1�0i��0�[�d�b�X�62ӑg?���rU �?"�X�s|�z=JJJ�M�a��0��k�����bc��БgdT�n-��Q�w�ԩݴ�d�u���|F�QT��T3�IɬQ�0v�:t�I�̭t�@G����N��
C<)~���t��Gyy��r�}�}U����΁Z��*�ڹ�ymmػo��B�ظ8:,�Fbb"�����]��*�*�3O,Z��tU��*b�ٳ�6�O����q���[��B�9�A= q.{&���B�wU ��-���֮�C5PN��z5L11��3���؇ q��߅���\�`%?qB���`K�C�>M�j�@ĕ�--��9���}\�� S\T^ �>�����~�>@� ��k���qIEND�B`�
�PNG

IHDR22?��gAMA�� �a
AiCCPICC ProfileH ��wTS��Ͻ7��" %�z �;HQ�I�P��&vDF)VdT�G�"cE ��b� �P��QDE�݌k �5�ޚ��Y�����g�}׺P���tX�4�X���\���X��ffG�D���=���HƳ��.�d��,�P&s���"7C$
E�6<~&��S��2����)2�12� ��"�įl���+�ɘ�&�Y��4���Pޚ%ᣌ�\�%�g�|e�TI���(����L0�_��&�l�2E����9�r��9h�x�g��Ib�טi���f��S�b1+��M�xL��� �0��o�E%Ym�h����Y��h����~S�=�z�U�&�ϞA��Y�l�/��$Z����U�m@��O� ��ޜ��l^��� ' ���ls�k.+�7���oʿ�9�����V;�?�#I3eE妧�KD�� ��d�����9i���,�����UQ� ��h��<�X�.d
���6'~�khu_}�9P�I�o=C#$n?z}�[1
Ⱦ�h���s�2z��� \�n�LA"S�� �dr%�,�߄l��t�
4�.0,` �3p� ��H�.Hi@�A>�
A1�v�jpԁz�N�6p\W� p �G@
��K0ށi���A����B�ZyCAP8�C���@��&�*���CP=�#t�]���� 4�}���a ���ٰ;G���Dx����J�>����,�_“@��FX�DB�X$!k�"��E�����H�q���a���Y��bVa�bJ0՘c�VL�6f3����bձ�X'�?v 6��-�V`�`[����a�;���p~�\2n5��׌���� �&�x�*���s�b|!�
ߏƿ'� Zk�!� $l$T����4Q��Ot"�y�\b)���A�I&N�I�$R$)���TIj"]&=&�!��:dGrY@^O�$� _%�?P�(&OJEB�N9J�@y@yC�R �n�X����ZO�D}J}/G�3���ɭ���k��{%O�חw�_.�'_!J����Q�@�S���V�F��=�IE���b�b�b�b��5�Q%�����O�@��%�!BӥyҸ�M�:�e�0G7��ӓ����� e%e[�(����R�0`�3R��������4�����6�i^��)��*n*|�"�f����LUo�՝�m�O�0j&jaj�j��.��ϧ�w�ϝ_4����갺�z��j���=���U�4�5�n�ɚ��4ǴhZ �Z�Z�^0����Tf%��9����-�>�ݫ=�c��Xg�N��]�.[7A�\�SwBOK/X/_�Q�>Q�����G�[��� �`�A�������a�a��c#����*�Z�;�8c�q��>�[&���I�I��MS���T`�ϴ� k�h&4�5�Ǣ��YY�F֠9�<�|�y��+ =�X���_,�,S-�,Y)YXm�����Ěk]c}džj�c�Φ�浭�-�v��};�]���N����"�&�1=�x����tv(��}�������'{'��I�ߝY�)� Σ ��-r�q�r�.d.�_xp��Uە�Z���M׍�v�m���=����+K�G�ǔ���� ^���W�W����b�j�>:>�>�>�v��}/�a��v���������O8� �
�FV> 2 u�����/�_$\�B�Cv�< 5 ]�s.,4�&�y�Ux~xw-bEDCĻH����G��KwF�G�E�GME{E�EK�X,Y��F�Z� �={$vr����K����
��.3\����r���Ϯ�_�Yq*���©�L��_�w�ד������+��]�e�������D��]�cI�II�OA��u�_�䩔���)3�ѩ�i�����B%a��+]3='�/�4�0C��i��U�@ёL(sYf����L�H�$�%�Y �j��gGe��Q�����n�����~5f5wug�v����5�k��֮\۹Nw]������m mH���Fˍe�n���Q�Q��`h����B�BQ�-�[l�ll��f��jۗ"^��b���O%ܒ��Y}W���������w�vw����X�bY^�Ю�]�����W�Va[q`i�d��2���J�jGէ������{�����׿�m���>���Pk�Am�a�����꺿g_D�H��G�G��u�;��7�7�6�Ʊ�q�o���C{��P3���8!9����� <�y�}��'�����Z�Z���։��6i{L{��ӝ�-?��|������gKϑ���9�w~�Bƅ��:Wt>���ҝ����ˁ��^�r�۽��U��g�9];}�}��������_�~i��m��p���㭎�}��]�/���}������.�{�^�=�}����^?�z8�h�c��'
O*��?�����f�����`ϳ�g���C/����O�ϩ�+F�F�G�Gό���z����ˌ��ㅿ)����ѫ�~w��gb���k��?Jި�9���m�d���wi獵�ޫ�?�����c�Ǒ��O�O���?w| ��x&mf������2:Y~ pHYs  �� �IDAThݙ t�՝�?3�y%C^�A�;�I� ⣀�(ŠT��*�Z���"�VZ��rv9{|�ۣ�J��"���iY��� o�L&��I2�����#]d�г�x��g������{���(��4��·H��R"���\�F�z�-��f�H�y��������n�DT�;>0���[�����v��u���Lu] q�q�O������Gr7]"�Ν������G��A���+
��♿�a�c3g�$:Z��I�ikkc��wxn�zx�gކ�����?�86�Lk��ϣ���ß���\^z��̺u:�n�pTm�z�� _P�2e�d�����=3QƯNQ4گ�K{ ]ឫ������E�F���-2�=���O�mv�k�ѯ�s�����r��!�?-fY�2�l��W�^��ѣ�ٽ�P�bd�l(-) b� �6v�M!E��������:H���Sy��� ޫ�s��)d�DV�U��|��?������Q���Z`і�%uV���&Y!e��]���n����+�C)))Ql6��1Ѣ�ϬWX*@rPDJ��Ui�jɂ~y�V�R{��h���V0�M��(���*yyy�^�EEE>|�?���I�yP%���������:�8�Ѓ��$p�Ƚ45>,\x7��������4&O�?T3?s�,L��_�V���E'����2�Z;~�C!%� ��(Es���/u^�]S߬l���������N;�0%��x��P��Z� ���3b��b�H�������%ZMIX k�\�#?X�����.�����??��;��o���7��4���p���F�]UՑJd�@ ���#FN�|:�DEF�[�������/�܎�e!)��sK���"A~�<��Y/n��y� FC��~Gl�){R6�?�<�u�$����ٙ�ß��Լ�h|ᴶu2���.Y���c��ub�}<���g^u#m#�.����֬Y�W/���X]]��iF�s��-)�瀓I�}�҈��GNx655l��f�&�����0�FD�v}����t�y���LvZ=z憅3.> :"" � ������OEE%�g?���FuǁM&���ߔ�Q�'�E�G|Ć7��2�"�^=gB�;#�p������Ih������Y��uD�F�A��6���vN "�$0���uUߔ�e�Z �9r�&�|���<��3N9Szv���;��Q%4"�ȼ�"�P%��/�/��wo��Yʼn� T�j�������Vp�Z 4(<��۱D�1�^]������Kw�=\ �F ���/A|��A~�/���c`||"��Dą�7��zE��F��[��/�p�j�֢Bl�����3��7 ��~�b{@Ww���ÒHDss �����uc׺ネ���"u��ش�?���ª'��D�#� �k轚�7�w����������v��\}��ds�]w
�A)��h�0THU}���˿��_�ļ�X,�h5:��
>�W_?��R:��_q���ƶp +�;6�Oˊ���Bh=v����P�F7��N^��!�ׯgӦM��� &( I����ǫ���D�B#QԬ�d6Pz��az�F$aJb|�8��}T^�"D�D#v2yb.��NZ�-x mTUՒ��D|�X�\n =� V^~�l��m��9����"�o����΢�jΣK�>$D'���~+D� ���Cd���r>9y�����
�������J�-�#6ڌ�4�[S�Y��qJ��ݗ 8D�������Y�t ��_9�o�4( ��{NR��1^�����6eq1I� ¬��St�Hkk?��Jx��85���Qr, �R
O��E�I������j��P���Z=&<TR �w���Ϫ((��z �ki�\����v���*zV?(�I@����i����_���o�6��`D�':�L��3�� �H�l���^T*����j����s*˗/���|��6�D3<�����z����-u�5TRg�LuM f���SG)�l�Ok���� ̖�D
��0BK+9~� �NC��D�O��L�r'I�p�|��A�!�A ����,[���Y���"
na�-E���8}��_�����#t С �մ���"6UT���d͞ϒ�O�iD=/]�����y�����[���z�Lp����*?Tw��쳻��&9�d�r��`.�$����H̸���%F��$� {��� ����b^� �~Z=''�u;))�җq]b�a�WP@����11+��N'�ө���� �B����.4-�!���R_���%��e�(>�)q�NL%�b@�qp��X�|�89 �e� ��B�a�K{�/�%U :1�f��9�6v�����vkD�줤�����bɚ�N���T/k�~��̙�� ��
J"*�@d�{�}��O�r��ɥj{?*���h���<ų]M��|�՗������j� ���&q��%�i��2� ��؟HvN�n`���5��9�w�\<����fg��-����Be�x�6��tW41��RHi���Ԙc0�a;� ��%=�� �E$%F��'���w�}��O��+\s(����R-u��3�T�f3O��?��/9x�}.Օ��I��4�b‰��ͥZ��. ���J��KH~CLR1�9�q�����K(���Nj�Og׾�%���7o��䰚N��M���y„ ���p �� �����5S{�F� 9MG��3��<�
��G\u��e�詥�%k�����]�n��l��!v����̌AU���m$@0�b?����)��Gjj�$~rr"9Wե�81��C����n���y�s�c��$C�S�0�_ŠU �������߾��?�C���JҢ��7� �F�����rF��|�'��cjfF���S�L�� L�&<ʂ�9 ��K���?>uI��$)|J�8fޚO��j���������ݲ%�e�e�7���X5T�7��w1\�I����#�J����� Q��ʻC�Ab���jz��&��F�EjS��Omu#��ed%H�f���E���{���g��@��#{�b�#�7���k�OJY'� ]�:�Ccr.E� r���b�ᕨ� ������tq�H5�㪸�0���Db�̌�qp�J9�/���눋.}� H`��|���)d��b��(��`�Ë�ǃS�{/VuJ���o�p쬤-Iy�z��2a��fN� 2�(�R�h�}��j�Dq���ڝ��ȓ�I�b�e���G��k9y�����cě�Ed#'!z&�9�����-Nv��y+�(/F ���c��ݤ��F-,�ΐzD���}�9N�+q��&�ڧ_��g&y���WU�oԆ-���n��ӟ��(_/M_�1��H�n7��^��p�� s�_ˢ{���P���ַ��׼�TO 1r~�?69]�j��=k��$�q�,��.�s2n���ƃ��
���W���y�v�J]�W�O����i����*2i/�_ij�{��}VS{U���b0��FIu�z����fF�����3l C'�}�����}���Ѿ��Q�������˷�rM�2IEND�B`�
�PNG

IHDR22?��gAMA�� �a
AiCCPICC ProfileH ��wTS��Ͻ7��" %�z �;HQ�I�P��&vDF)VdT�G�"cE ��b� �P��QDE�݌k �5�ޚ��Y�����g�}׺P���tX�4�X���\���X��ffG�D���=���HƳ��.�d��,�P&s���"7C$
E�6<~&��S��2����)2�12� ��"�įl���+�ɘ�&�Y��4���Pޚ%ᣌ�\�%�g�|e�TI���(����L0�_��&�l�2E����9�r��9h�x�g��Ib�טi���f��S�b1+��M�xL��� �0��o�E%Ym�h����Y��h����~S�=�z�U�&�ϞA��Y�l�/��$Z����U�m@��O� ��ޜ��l^��� ' ���ls�k.+�7���oʿ�9�����V;�?�#I3eE妧�KD�� ��d�����9i���,�����UQ� ��h��<�X�.d
���6'~�khu_}�9P�I�o=C#$n?z}�[1
Ⱦ�h���s�2z��� \�n�LA"S�� �dr%�,�߄l��t�
4�.0,` �3p� ��H�.Hi@�A>�
A1�v�jpԁz�N�6p\W� p �G@
��K0ށi���A����B�ZyCAP8�C���@��&�*���CP=�#t�]���� 4�}���a ���ٰ;G���Dx����J�>����,�_“@��FX�DB�X$!k�"��E�����H�q���a���Y��bVa�bJ0՘c�VL�6f3����bձ�X'�?v 6��-�V`�`[����a�;���p~�\2n5��׌���� �&�x�*���s�b|!�
ߏƿ'� Zk�!� $l$T����4Q��Ot"�y�\b)���A�I&N�I�$R$)���TIj"]&=&�!��:dGrY@^O�$� _%�?P�(&OJEB�N9J�@y@yC�R �n�X����ZO�D}J}/G�3���ɭ���k��{%O�חw�_.�'_!J����Q�@�S���V�F��=�IE���b�b�b�b��5�Q%�����O�@��%�!BӥyҸ�M�:�e�0G7��ӓ����� e%e[�(����R�0`�3R��������4�����6�i^��)��*n*|�"�f����LUo�՝�m�O�0j&jaj�j��.��ϧ�w�ϝ_4����갺�z��j���=���U�4�5�n�ɚ��4ǴhZ �Z�Z�^0����Tf%��9����-�>�ݫ=�c��Xg�N��]�.[7A�\�SwBOK/X/_�Q�>Q�����G�[��� �`�A�������a�a��c#����*�Z�;�8c�q��>�[&���I�I��MS���T`�ϴ� k�h&4�5�Ǣ��YY�F֠9�<�|�y��+ =�X���_,�,S-�,Y)YXm�����Ěk]c}džj�c�Φ�浭�-�v��};�]���N����"�&�1=�x����tv(��}�������'{'��I�ߝY�)� Σ ��-r�q�r�.d.�_xp��Uە�Z���M׍�v�m���=����+K�G�ǔ���� ^���W�W����b�j�>:>�>�>�v��}/�a��v���������O8� �
�FV> 2 u�����/�_$\�B�Cv�< 5 ]�s.,4�&�y�Ux~xw-bEDCĻH����G��KwF�G�E�GME{E�EK�X,Y��F�Z� �={$vr����K����
��.3\����r���Ϯ�_�Yq*���©�L��_�w�ד������+��]�e�������D��]�cI�II�OA��u�_�䩔���)3�ѩ�i�����B%a��+]3='�/�4�0C��i��U�@ёL(sYf����L�H�$�%�Y �j��gGe��Q�����n�����~5f5wug�v����5�k��֮\۹Nw]������m mH���Fˍe�n���Q�Q��`h����B�BQ�-�[l�ll��f��jۗ"^��b���O%ܒ��Y}W���������w�vw����X�bY^�Ю�]�����W�Va[q`i�d��2���J�jGէ������{�����׿�m���>���Pk�Am�a�����꺿g_D�H��G�G��u�;��7�7�6�Ʊ�q�o���C{��P3���8!9����� <�y�}��'�����Z�Z���։��6i{L{��ӝ�-?��|������gKϑ���9�w~�Bƅ��:Wt>���ҝ����ˁ��^�r�۽��U��g�9];}�}��������_�~i��m��p���㭎�}��]�/���}������.�{�^�=�}����^?�z8�h�c��'
O*��?�����f�����`ϳ�g���C/����O�ϩ�+F�F�G�Gό���z����ˌ��ㅿ)����ѫ�~w��gb���k��?Jި�9���m�d���wi獵�ޫ�?�����c�Ǒ��O�O���?w| ��x&mf������2:Y~ pHYs  ���IDATh�Y[L��<3��`s37  ��f���d��4�TQTi�R��o��/�JU߫VU��*���� ��V�n��!-{�j7W�HBB�1�$��bs��g��?c����2��Μ����sl�Q�W�qfs`rQՍ��o�J0�l�X��f%0]s�<o�F�Ek��I$q ?���~,%d�9�x��t��( ���l���$��z���-9���j0���#��O/�瑩�� l��S|����M�kOQ�r�Z<�r<�<�R�G������077��� ��D�`":���4�'b� q�S*ԜJ�9�3 ^|�� �z��M��(�����{b?zY5��(*+��w�u"�8i8Y2�&7Ӝ=#-��lD�ޓXN� ��4"RZEG�1<��CJ�>�(B+��֪ݕ� �XpB��GZ��j�B�X��@lJjc�������b��S�x|�}�
�m2�,�!KK������U"��B�i����4��q��I25��U҈��w�p�����v���E3�B���t�?��1�B�H3u�+�ïzQU�`��|Q�Ŀ��) qm5z`u+K�l
���7�p5���x��?�����m-JR4�#��.�s�����б��Ʀ������.�0?��fZ��ޘFXk�֡�2���v6yq� c���;=�j���(Dtg.�p�]2E�4����ɥ����JQ�0������=���5�O#n�Oa&ђ��Z).�� �� �E0 ���F������J6��U Y��� ӫDXQiV3o�� *�lgq��a͜8��f��4��K�3�@wш���̡�f$I���G� 6P��R"����W��|0��Ǘ�*_%+o���ۢ�q�� �(92r���:|����LY�gQ�hu���TV�$ 0�����аc��<�Ǥf:uU�##1�Ј�R�,
E.��A����Q����\L'‘s���+�)x;�ɰ����D��ʒ$�M-f`߰F�D�'5�D�D�^���6��x��h�)����N^�t����0�)�H>:�d@ rY��N�+���*jwtB��`�= ��G_����;�2��diY#��U�o���I�Cc����n����J>��p�k_'�"E&U�XV:�FB��qV��r��^t�x����^?y���%�X]SLk�i3���t$���is���0�Ѓ�|:�
�'��[@:��(���Aq�Ɯڍ׆��[p�⧫����� �KL�}�P��,�v� �k��L��lvn�ᕍ�f����� е�
ZZz`�Rn�Z���_��G���J �ض��L? !�F���$�!g�b!������:�2�����蛅�̍���x�D21��э$���q��~�������N�^`qY�͵;������*2凇��o �ˬu�iE"��u�ؽw?&��Ik�r&�w|Hs�Z4[7��> ���wnB��w!�ǮG @h�{��BN���{sT�$��.zo�\4�h�LIU,pUuP�3&n^jS��Y��`+�AɏLC9L|hi߇W5I��F�_���<o�Kn��� �����g��e�4�͘P�4�DdrX���N~���|tm��!��������(֐_�b~6 -?�2�eC���2L��֭Mg �� ����(�+��}v�a���:V��t�5N�&B@b)�����(7�����"��ZG{+�)��)�,���7�\�3}GbHʄ����Ɯ]�� ��~rl���I���p�彤a��V�M$�C��F/�ʧ�O��L���o!-/��C�߅����8�y�畕��R;$�_F*���Ct�'�T �Dj�*Q�y0BS!?���:�.�,�@���}�g�� nGe� r`VL�W�ɓH�9��*+�=� �}~7��YN�x]ӆ.��P2D�m��������Պ��W���c����Gpcd�bg�Hd8�{�.�J7�A���}���4���������i�a"l%��� �������K�ه7���q{`��H� 9CE���_I�E]�;c�k�N���3��ү6�ݪ�$[P#�Y���0�{��g����I.|�ֿ�὿��}�;������u�_c�s�iD�=�m;���PYU���*�?X?�_(���w�G���������i
}1��֍c+���(��B?M%����?ϒ�V���F>�B��B����u���2D� ��d4�yƷIEND�B`�
�PNG

IHDR22?��gAMA�� �a
AiCCPICC ProfileH ��wTS��Ͻ7��" %�z �;HQ�I�P��&vDF)VdT�G�"cE ��b� �P��QDE�݌k �5�ޚ��Y�����g�}׺P���tX�4�X���\���X��ffG�D���=���HƳ��.�d��,�P&s���"7C$
E�6<~&��S��2����)2�12� ��"�įl���+�ɘ�&�Y��4���Pޚ%ᣌ�\�%�g�|e�TI���(����L0�_��&�l�2E����9�r��9h�x�g��Ib�טi���f��S�b1+��M�xL��� �0��o�E%Ym�h����Y��h����~S�=�z�U�&�ϞA��Y�l�/��$Z����U�m@��O� ��ޜ��l^��� ' ���ls�k.+�7���oʿ�9�����V;�?�#I3eE妧�KD�� ��d�����9i���,�����UQ� ��h��<�X�.d
���6'~�khu_}�9P�I�o=C#$n?z}�[1
Ⱦ�h���s�2z��� \�n�LA"S�� �dr%�,�߄l��t�
4�.0,` �3p� ��H�.Hi@�A>�
A1�v�jpԁz�N�6p\W� p �G@
��K0ށi���A����B�ZyCAP8�C���@��&�*���CP=�#t�]���� 4�}���a ���ٰ;G���Dx����J�>����,�_“@��FX�DB�X$!k�"��E�����H�q���a���Y��bVa�bJ0՘c�VL�6f3����bձ�X'�?v 6��-�V`�`[����a�;���p~�\2n5��׌���� �&�x�*���s�b|!�
ߏƿ'� Zk�!� $l$T����4Q��Ot"�y�\b)���A�I&N�I�$R$)���TIj"]&=&�!��:dGrY@^O�$� _%�?P�(&OJEB�N9J�@y@yC�R �n�X����ZO�D}J}/G�3���ɭ���k��{%O�חw�_.�'_!J����Q�@�S���V�F��=�IE���b�b�b�b��5�Q%�����O�@��%�!BӥyҸ�M�:�e�0G7��ӓ����� e%e[�(����R�0`�3R��������4�����6�i^��)��*n*|�"�f����LUo�՝�m�O�0j&jaj�j��.��ϧ�w�ϝ_4����갺�z��j���=���U�4�5�n�ɚ��4ǴhZ �Z�Z�^0����Tf%��9����-�>�ݫ=�c��Xg�N��]�.[7A�\�SwBOK/X/_�Q�>Q�����G�[��� �`�A�������a�a��c#����*�Z�;�8c�q��>�[&���I�I��MS���T`�ϴ� k�h&4�5�Ǣ��YY�F֠9�<�|�y��+ =�X���_,�,S-�,Y)YXm�����Ěk]c}džj�c�Φ�浭�-�v��};�]���N����"�&�1=�x����tv(��}�������'{'��I�ߝY�)� Σ ��-r�q�r�.d.�_xp��Uە�Z���M׍�v�m���=����+K�G�ǔ���� ^���W�W����b�j�>:>�>�>�v��}/�a��v���������O8� �
�FV> 2 u�����/�_$\�B�Cv�< 5 ]�s.,4�&�y�Ux~xw-bEDCĻH����G��KwF�G�E�GME{E�EK�X,Y��F�Z� �={$vr����K����
��.3\����r���Ϯ�_�Yq*���©�L��_�w�ד������+��]�e�������D��]�cI�II�OA��u�_�䩔���)3�ѩ�i�����B%a��+]3='�/�4�0C��i��U�@ёL(sYf����L�H�$�%�Y �j��gGe��Q�����n�����~5f5wug�v����5�k��֮\۹Nw]������m mH���Fˍe�n���Q�Q��`h����B�BQ�-�[l�ll��f��jۗ"^��b���O%ܒ��Y}W���������w�vw����X�bY^�Ю�]�����W�Va[q`i�d��2���J�jGէ������{�����׿�m���>���Pk�Am�a�����꺿g_D�H��G�G��u�;��7�7�6�Ʊ�q�o���C{��P3���8!9����� <�y�}��'�����Z�Z���։��6i{L{��ӝ�-?��|������gKϑ���9�w~�Bƅ��:Wt>���ҝ����ˁ��^�r�۽��U��g�9];}�}��������_�~i��m��p���㭎�}��]�/���}������.�{�^�=�}����^?�z8�h�c��'
O*��?�����f�����`ϳ�g���C/����O�ϩ�+F�F�G�Gό���z����ˌ��ㅿ)����ѫ�~w��gb���k��?Jި�9���m�d���wi獵�ޫ�?�����c�Ǒ��O�O���?w| ��x&mf������2:Y~ pHYs  ���IDATh�Yyt��~n�}��C6�FB"�($ ZD@#X����u�Sz@�T+��ӡ�S��Q �#:P�B@ ����=�@�}�w~�{󅛐��=�����oy�w�-�o{�3J��Y�xP,�`��{j�(Րja1�����t:���h:Y�{ۈ�`�@�www���-LD��m�}�^��s*����͛hnn��+�������b�h4��M��$|}}�����p��;�|�V��}�Ό�k!3#�Ǎ�R8�x��?n�.������,t����T�����^E9�+�a�V��p�̙ W77Ks� � ���tu: �|3>���ؗ��y�^���?,-Ht�mP� ��n!�: �0e+k+5���ׯ_C~V~��fL���wff،hX�&,--Q^^�5k�"2�Y�7�-�hkk��`��X͢���d��:B�0d G''����/?�{Wa֬ٲ�A�Ӵ�ݵ��?�si tt�c�01rl�Q[[�$���T��&�h7�������ޯ����\�ɢ�1?C�2ҟ���:������Rϣ�� ���(&�Š��*X�@G�˘�W#�o|6y0�Բ�%,�mp��>���xx��D���vvvj�Dfbh@F��6�Rz���q)3 �.����Ý������f!ƒd 1F���)�Sʴ��VBʹ9�T���}'C]]]prvAQA~���x��()�A��+�N��Y�����C����<Ĉ6�� �~�g�,�ED�hx�݅H#
�n���#4| ���L ������������Bk��Ǎ�k���888"'' uU���D[�11�J�h��y?�׃���4�EC��4J��PQ��% ���W�e�?��0�1q;/��mĜ^��Uy�.��+�%��տ����:;�@셉��S�G« B��\���w��s�A;�۳)�pƢE�D�θ,�ޱ�f��P�i�l����#�OECC-||� �c��7wd��C�����״���iZ� NF|�?`t�3hm�F�� ttt��:�%56F�A�b�KNv6|]�x��_C����@�Z ����=�nӈM��w���|wV߃�=�o"FG?���6E�����wJ$h(x��T����&M�XU_�=���{aˉ� ��VXP�������� o�
a���,P2a�*g,�Z�l�����"[���R����ɧO $^���8~�8������S��ٶ u�H���f�>~bo*�� ��\\�����5*'�v��Y�i�M5X���2��L�W) �AT^y��O1�T�t*�8���E�߽{QQQ�9;�B���W'���;v���u�p��A,X�@��%o�� TE��Sx�X�?A4Ң M9wt�ɯ��͢�n�K�F4/E�l��d�&�M8�P�����6�|�˵���څ�.(u��zlݺU�\�n�nƵ\�_�O�����cR� ULTH�R�b���C��һ.=]MU�Ji�L&�g�Lm�i]f��|���C�/Y��'š G��U�52�&؎��CI�8��,��ׯǪ�˱w�>�D�C��Hl��K%u��������Ioo܀11Sd9!�gQ�1��b#��L�a���[�ԣ%mֈ�p�*���%�\k�*��LDb�������{�a�';`%�M�:�N�ooo456`��7��P2v��W�[�rB�����h83�(;����j�.�m������Vl8 Ͽ��i��� ��g͚�?�8 Py��&�dc �+�Jww��֌Ys��Ԥ�'�8���Q`%�{����Z�%;�oتl@������TVZ� ��M7I��h�*}B�O%�j�#B[���s�)� � ���Ql�C`�+A�ᵶ�J�!.Z ��8����Jʶ�Rk$�J�$v4�f)j��򏚬�w�J��^h1Spgr��)��`l%e1�i~��da���+�xp��V���VT��`E�p,5����f������f��ħ���IϠE
.z@�CN���eO�<��8�L�? H��1�����`��Te�ڧ���F��R"�O�V�̟� ��&M�,�@�,:2,�%E���)-Q3��)J�̔�]�^p=�)�����P{smj������֖t
̊�s�ɘb=a�����|�϶oULi&���Ո�y^�l��!=�� ���72a!}S������ƦaX�QZ�4��r���d���^����K����W�;PR���Rd�x��99Il��ߞ����FDDd��#���k�6F���cq��u��bTx�F�bT�hd^����^ı�D�M Ǜ+^����
-M ��瓑�sKi������Ԉ��x�]��y
���m;=`��DvV&V�� �e�d¹(/��ބ1�ъ&�6�bvyZ�7B��""�a�>
�ݸ��&��m��I{���7K���? A����_�����=����ɪ��+�������#xw��7}��.��-l�<��� AZ��g��;��%?��{TY�&��=�Gɳrs�0=n��xN�ܩb����`ӦM�mr�˗�����^�m�RU⡂M6'I/�Y'0{i�2\����<�BBF"=9�����R"D���G�*�ӻ��U��ڐ6‰��NJ�]�]"e�q�8����]�v#�U�Q.9֖��ޞ����ªY`t��i���D^v������� _�?���+�����Sf��� z/ �h� *���8و ����l�AkPF� �jkD��H/����n4J�����G}����P^V���9h�y��T�3�쬫�>gZ3{v����߁�k���<JA�r
̄�v�8�B���W/�.�BKc�����N"�F tv�]2�Mzzy����ڼ�$_E��rn�@ŝR9�����%]�K��BL�ʃ��������V��N)�Eh�啸7U\����ZL�8����%���q��uC*=g��R$F�J��
C��^��#��GI%$-a�*`$ӄ3X�_zð�h̜���
�7%�͕��30 ��Faa�=���E�&\���2�F8N��̴i�t�n���*rS�,xx�{`P���^�
�,U��n5�p�:̣H(���Z�Yw�3~4�
���lE� ��`�ā�g�vx��?P4�呌p��o�[���u/-\(�h��7Y�}�jX�2ꇋ��ڳ 2iN�N��y)�:�ͼ�*L�J�ج�9Fs_��.�{k^U�-WP��-5�}HF��1sRSS��� /7��?��q񲹫h�SEKc�?"�>��x'�j~�O���LR�{�h���W␝}+Ξ>��+��Ya��Uj��zV���e�ҩ-�Z{���(.�Ŋ5��β�(-����Z��<on؂'b&*� ����|��w;����=9����b��,���떾��&%a���+;}�6H��Ʈ1F"����+֬^��h9"թ<�bg�H�J��}{�/['����fu.��;��9*�]�̘���5trr�ڲ�!CJc��0�q���Q�l����[��[��V�/�����'-|&Q��ɒ� ��^ٍZ��3U��r\z%�J"YR�0j��z�>t�/���wН^�~�7�PK�d��N \%*�)2�7R������#��~
A[�`����-E��|{ �R�i��� ��b�k�X"<��0�Eゃ�%�!�PZx~�,}��(Ga�sW�����y<�ff�d�����&�n����|�.��L ��!.��%� 5;�<�
����C��| |]8��"դ *�U"��9 �S�B��7b�r�FrJ����� �5�;.����mC��/>�G}��u[_�0�}? �k�Oٺ��8�r ?�� ���ȑo��r����S�ϩX�+'�����oIY��� v���I����G�r���������ö?~���*,[��}�O�_BC�� �dа�`Y���D�S�N�w9=4����g9�7~��Ƥ�$Z�����11SU�bLNNVc���sqq�q����ή.��q_�����^��<�Fd%���"��.uX�m�6lٲE*�����dž �x�9�v�"�(QO/ɀ%������ݻQ]S�[RL���<xX��w;w� IT���5k��ԧ�M<B f*z,F8Oc��"I�X�T�<��)���w�ލ'�<J��8���Du�`�A���� �u�����،p1sf�Z�㴱�8 N��8�#�$Rk��;��P��c��@�ߋ���G�=V�G9�}0��?���}E�IEND�B`�
�PNG

IHDR22?��gAMA�� �a
AiCCPICC ProfileH ��wTS��Ͻ7��" %�z �;HQ�I�P��&vDF)VdT�G�"cE ��b� �P��QDE�݌k �5�ޚ��Y�����g�}׺P���tX�4�X���\���X��ffG�D���=���HƳ��.�d��,�P&s���"7C$
E�6<~&��S��2����)2�12� ��"�įl���+�ɘ�&�Y��4���Pޚ%ᣌ�\�%�g�|e�TI���(����L0�_��&�l�2E����9�r��9h�x�g��Ib�טi���f��S�b1+��M�xL��� �0��o�E%Ym�h����Y��h����~S�=�z�U�&�ϞA��Y�l�/��$Z����U�m@��O� ��ޜ��l^��� ' ���ls�k.+�7���oʿ�9�����V;�?�#I3eE妧�KD�� ��d�����9i���,�����UQ� ��h��<�X�.d
���6'~�khu_}�9P�I�o=C#$n?z}�[1
Ⱦ�h���s�2z��� \�n�LA"S�� �dr%�,�߄l��t�
4�.0,` �3p� ��H�.Hi@�A>�
A1�v�jpԁz�N�6p\W� p �G@
��K0ށi���A����B�ZyCAP8�C���@��&�*���CP=�#t�]���� 4�}���a ���ٰ;G���Dx����J�>����,�_“@��FX�DB�X$!k�"��E�����H�q���a���Y��bVa�bJ0՘c�VL�6f3����bձ�X'�?v 6��-�V`�`[����a�;���p~�\2n5��׌���� �&�x�*���s�b|!�
ߏƿ'� Zk�!� $l$T����4Q��Ot"�y�\b)���A�I&N�I�$R$)���TIj"]&=&�!��:dGrY@^O�$� _%�?P�(&OJEB�N9J�@y@yC�R �n�X����ZO�D}J}/G�3���ɭ���k��{%O�חw�_.�'_!J����Q�@�S���V�F��=�IE���b�b�b�b��5�Q%�����O�@��%�!BӥyҸ�M�:�e�0G7��ӓ����� e%e[�(����R�0`�3R��������4�����6�i^��)��*n*|�"�f����LUo�՝�m�O�0j&jaj�j��.��ϧ�w�ϝ_4����갺�z��j���=���U�4�5�n�ɚ��4ǴhZ �Z�Z�^0����Tf%��9����-�>�ݫ=�c��Xg�N��]�.[7A�\�SwBOK/X/_�Q�>Q�����G�[��� �`�A�������a�a��c#����*�Z�;�8c�q��>�[&���I�I��MS���T`�ϴ� k�h&4�5�Ǣ��YY�F֠9�<�|�y��+ =�X���_,�,S-�,Y)YXm�����Ěk]c}džj�c�Φ�浭�-�v��};�]���N����"�&�1=�x����tv(��}�������'{'��I�ߝY�)� Σ ��-r�q�r�.d.�_xp��Uە�Z���M׍�v�m���=����+K�G�ǔ���� ^���W�W����b�j�>:>�>�>�v��}/�a��v���������O8� �
�FV> 2 u�����/�_$\�B�Cv�< 5 ]�s.,4�&�y�Ux~xw-bEDCĻH����G��KwF�G�E�GME{E�EK�X,Y��F�Z� �={$vr����K����
��.3\����r���Ϯ�_�Yq*���©�L��_�w�ד������+��]�e�������D��]�cI�II�OA��u�_�䩔���)3�ѩ�i�����B%a��+]3='�/�4�0C��i��U�@ёL(sYf����L�H�$�%�Y �j��gGe��Q�����n�����~5f5wug�v����5�k��֮\۹Nw]������m mH���Fˍe�n���Q�Q��`h����B�BQ�-�[l�ll��f��jۗ"^��b���O%ܒ��Y}W���������w�vw����X�bY^�Ю�]�����W�Va[q`i�d��2���J�jGէ������{�����׿�m���>���Pk�Am�a�����꺿g_D�H��G�G��u�;��7�7�6�Ʊ�q�o���C{��P3���8!9����� <�y�}��'�����Z�Z���։��6i{L{��ӝ�-?��|������gKϑ���9�w~�Bƅ��:Wt>���ҝ����ˁ��^�r�۽��U��g�9];}�}��������_�~i��m��p���㭎�}��]�/���}������.�{�^�=�}����^?�z8�h�c��'
O*��?�����f�����`ϳ�g���C/����O�ϩ�+F�F�G�Gό���z����ˌ��ㅿ)����ѫ�~w��gb���k��?Jި�9���m�d���wi獵�ޫ�?�����c�Ǒ��O�O���?w| ��x&mf������2:Y~ pHYs  ��
�IDATh�{pT��?���.�l^@^���<D B)�(��R���Ŷ8V�G�8V���P���hG��j�"TA,BA ���& y?7�l����w�r��X��]�qzfv�޳�������w-�4���5��C�?�/����F��^��i�W"��B0F�F���ad��iS �.f��e=v�'N�a劕����ű���ͣn�pX �C:��n�6'/[[����U˵@8B����j? [1��ˣ�5��&Eq��$"��LUjc�DH�������9h �p�CT�}D}���V>NJr҅uV]��z��Y)Y�,V��²�\}+I��������nJ�,aR���!�.(`M�H��sn"� .��. �i8v9�:�92Da��u���Ezk^�bC�Y�9=�ĜZ��Ӱ��PVA!a��s���@���k�Hpx $����w1�h���k ĐDiYO<x= fU�����qS&B�|8?���Ma� ���mW�8y�B|-�M�u+̛.��m�`���3GLHFH�)u���W�@��J���T����.E���B��v����q�k�:�5�����m#�y⟹l�g\��򅴴�&3=�?���*r����ی���6�ihh����`8�+a( '��W
<���,��n�~>ܱ����\��7(,�b��-|#�&��`����_����8��fPP0B��/ ��gJ"jqvv��1=��%�9�V�g�9���3O��q�G����b���_ω]p�e�q�zƍ-�W`�1ݛv��V$��}� ^��`P
����LiU/��߀��um.��d�{oP4JVy!)�&�,��I���D �)��谆�Lj�������m�n`ߑc\��dƤ͸W��P�\���!Yt{��4�b���U>q��m��='�V+?C���\7o�� ��HH�����C��f�x
�T
W�ŭ��8`þ� �ٴj��E��P�=)��F=z\��$��⥳���J��p
$���R��b�� 2Q�QQ'����n��W��擣�aH�<�l���x���=������������@ܬ���ZԪe�����{� 62�q?sf�a�w�����fp���O=?���k>,C��A�|3 �����]D���XC���fa��Qa*�[f?ĺu�I8b
B�m�k�ŗ6Bً������=N��r����C!ub�B��%V�0�1�E�HF<��Ϩ<X���Rص��$�QYs췍=EA�Bà���4��b��*9��c�&Z|�e��S �{��� H�[M�Pz�\m'w?(^��Ż0)25f�1��C���Gxz]�x*�Z7�*&�����(-�tD'p�WL��s�4�7�r�EɉxBA �6+����'y�4��b�b$�z#���j�wC;�l7������b�08}�~~��$����8b�[����������+x�qY����e�-Qj-<�j���GY�hy�i1ɳ+�b�Z)�����g���nq���6zE��IiA�l�Jr}?|(���N�*�9��̞16&`��lB�IM�^^{�~r� t��#d� '����Hjn�jIU���n;�9rA���U��[䎿�����\�
�*ZT6�ⅺZ���un_���ǐ�>E���_�* �����[�FUi*�I�[�Y&������S�^ն�ˆ"��x( Z���U��������f��HB��RIPK���S62����� �b��زy2Ss7r��8�@�]L6��*l��KX�Q/����Q�j#�P�%�����=�#+/��Yb@2'#3���!���̛��u���SI�Re>_��#�� �C��u������TE�K���#mp�eK��e$�b���v��?��"U��������dӆoN"�1�i�0�s�3qly�ÕERΆD{^}=��������WQ��Ee;a�o�[�*ak&�M{)-���4i(�\ج_.��^\����;qZEǥ�PU�f�#N&/ �t����4�"/�a�њ N@ܱ&^M�QV&�/�:S_��WS�TO�����h��AH�\��Ĥ����8��, M1);��D+9~t0u X�6j뱧ē1T��� ����L1���lԷ�ӥBC� �pZ�Y�J�s�Nr�Y򰗙W��Ա,RBmﲳh�v�;XL)���2��=��rt�f����F�2;w@��̝+�u_3#s=h~q�?t��X%v��}XD��N���0iF/�P
�{�Ȝ���|ߴ�+����ҦM�By���V�ސK�ǁe�T{��P4y��@��7Q/g��-+�$�9Ϲ�&<�uE3�/ ��T@Iep� �X��b�}g+�+�z�T����[ăYĆ,��DᩫCJB6:ۜ4��3;yó���b�i�R�#M��E�ul�����*dgJd�g��>�t%��Jm8���TW�;�NvJ+��_�?Z��E��As�}�@"�1���g�c�]w0l�D�4�r���� ��ie�K� �M�9ā��$�E�����" ��Y#7 �V-��S�? 1�� �Ӡ��N�(+��&r�H#��'�c��9��F��BB���SqY1j�R���[թ�\��#�_bN3eV'��z���s$�g�}�B�O��K^����ѹ`�[b�E�X1�e�������"/n���9U�U��;��u���O�=N� �n�e�_\�y��X�6bl�E<5�s�������i���� #���>���SL��;BlV�I�t�Q�IEND�B`�
�PNG

IHDR22?��gAMA�� �a
AiCCPICC ProfileH ��wTS��Ͻ7��" %�z �;HQ�I�P��&vDF)VdT�G�"cE ��b� �P��QDE�݌k �5�ޚ��Y�����g�}׺P���tX�4�X���\���X��ffG�D���=���HƳ��.�d��,�P&s���"7C$
E�6<~&��S��2����)2�12� ��"�įl���+�ɘ�&�Y��4���Pޚ%ᣌ�\�%�g�|e�TI���(����L0�_��&�l�2E����9�r��9h�x�g��Ib�טi���f��S�b1+��M�xL��� �0��o�E%Ym�h����Y��h����~S�=�z�U�&�ϞA��Y�l�/��$Z����U�m@��O� ��ޜ��l^��� ' ���ls�k.+�7���oʿ�9�����V;�?�#I3eE妧�KD�� ��d�����9i���,�����UQ� ��h��<�X�.d
���6'~�khu_}�9P�I�o=C#$n?z}�[1
Ⱦ�h���s�2z��� \�n�LA"S�� �dr%�,�߄l��t�
4�.0,` �3p� ��H�.Hi@�A>�
A1�v�jpԁz�N�6p\W� p �G@
��K0ށi���A����B�ZyCAP8�C���@��&�*���CP=�#t�]���� 4�}���a ���ٰ;G���Dx����J�>����,�_“@��FX�DB�X$!k�"��E�����H�q���a���Y��bVa�bJ0՘c�VL�6f3����bձ�X'�?v 6��-�V`�`[����a�;���p~�\2n5��׌���� �&�x�*���s�b|!�
ߏƿ'� Zk�!� $l$T����4Q��Ot"�y�\b)���A�I&N�I�$R$)���TIj"]&=&�!��:dGrY@^O�$� _%�?P�(&OJEB�N9J�@y@yC�R �n�X����ZO�D}J}/G�3���ɭ���k��{%O�חw�_.�'_!J����Q�@�S���V�F��=�IE���b�b�b�b��5�Q%�����O�@��%�!BӥyҸ�M�:�e�0G7��ӓ����� e%e[�(����R�0`�3R��������4�����6�i^��)��*n*|�"�f����LUo�՝�m�O�0j&jaj�j��.��ϧ�w�ϝ_4����갺�z��j���=���U�4�5�n�ɚ��4ǴhZ �Z�Z�^0����Tf%��9����-�>�ݫ=�c��Xg�N��]�.[7A�\�SwBOK/X/_�Q�>Q�����G�[��� �`�A�������a�a��c#����*�Z�;�8c�q��>�[&���I�I��MS���T`�ϴ� k�h&4�5�Ǣ��YY�F֠9�<�|�y��+ =�X���_,�,S-�,Y)YXm�����Ěk]c}džj�c�Φ�浭�-�v��};�]���N����"�&�1=�x����tv(��}�������'{'��I�ߝY�)� Σ ��-r�q�r�.d.�_xp��Uە�Z���M׍�v�m���=����+K�G�ǔ���� ^���W�W����b�j�>:>�>�>�v��}/�a��v���������O8� �
�FV> 2 u�����/�_$\�B�Cv�< 5 ]�s.,4�&�y�Ux~xw-bEDCĻH����G��KwF�G�E�GME{E�EK�X,Y��F�Z� �={$vr����K����
��.3\����r���Ϯ�_�Yq*���©�L��_�w�ד������+��]�e�������D��]�cI�II�OA��u�_�䩔���)3�ѩ�i�����B%a��+]3='�/�4�0C��i��U�@ёL(sYf����L�H�$�%�Y �j��gGe��Q�����n�����~5f5wug�v����5�k��֮\۹Nw]������m mH���Fˍe�n���Q�Q��`h����B�BQ�-�[l�ll��f��jۗ"^��b���O%ܒ��Y}W���������w�vw����X�bY^�Ю�]�����W�Va[q`i�d��2���J�jGէ������{�����׿�m���>���Pk�Am�a�����꺿g_D�H��G�G��u�;��7�7�6�Ʊ�q�o���C{��P3���8!9����� <�y�}��'�����Z�Z���։��6i{L{��ӝ�-?��|������gKϑ���9�w~�Bƅ��:Wt>���ҝ����ˁ��^�r�۽��U��g�9];}�}��������_�~i��m��p���㭎�}��]�/���}������.�{�^�=�}����^?�z8�h�c��'
O*��?�����f�����`ϳ�g���C/����O�ϩ�+F�F�G�Gό���z����ˌ��ㅿ)����ѫ�~w��gb���k��?Jި�9���m�d���wi獵�ޫ�?�����c�Ǒ��O�O���?w| ��x&mf������2:Y~ pHYs  ��GIDATh�Yy���}��}�}�g`�E#��"jP�6�)i�==��xl G��.�i$B�օ�z� �HUY�(3�23 �/o�͛��7���~��y��#���m����~�������O���0(�"J��P����q���t:�D�%5^�;�5&�m���A�47'��D���@h Yk"mB@4E�[�?��+�# �c"^��o��^xA�մs�E�����j�hT���t��*��ş�F/͔����iĒ}�hȼ������ʼn����F3�=i��/�c�ΝJFØ{a���H1 ���)��L� ���|~���w�Z������ϭ[�]�$�$D��������G(#����u:�b�B�E���M���+p� �
M�322ΰ?�[��.�+�Y��ヒ�-���@֨ �}\�`�O"#QR-���>M�ǿ�B��/jM��n�=���#3���tml�,�oq6bw�HW������3ϭQ�[��X�����XCәXwo�K�&vw5Ը������ㄾ恚M YT/Rۻon��z�w�l��8ϔo���a8(�����G����g��{Nbӎ�`6�q� ��30�qCOU��)@x�G�����s���q?*������سw/�_�@��X�$D���_�x������^[�X�:+FaD�7LG����hУ}0���AȀ�,S�����D.r�YZ�)����4 �?�mm�ٳ�PY9U�����%D�h`�r�~h=�h��Z2�A��| �@02�>od���L%�c\8��Fn� �kJ�0��pف�j&p��
�l��J�ښ���ޒ"T4�^� 47������n�)��Z1�n
Ҭd؂,� �QJ�Z3��F�H]C~�Ֆ�=M�x���X��K��������2�V\�/�L�D�@�\�Ɉ��B���a�5��Z2K� Yi�d>��7�H����0�6���f0�17����b@A>�f���Bw2f%���� ��?��/��s�o�Ȼf��~eB:����ՏF�4�&.�z�fN����-f+CM�z*h�/�+z߾y���a6^KDd[��_��V?����50���C(P�j��!����GV �4����$�<�gaM͆5ELѭ��F�TD#~xNc��;O�?|�Q~�'efq�h ��a<�ēp����^��p�H N�\�\0͟~�Ϊi�6{����P'
�_��h �m 8������~� �G1뎫� �|�L�F���݉���w?�}����$�����t�Bk B)8x���\����Q���@G*.=��Ǟ��� �rs��݃��y�C�a���+��'1����a��i3��z�X2�#Nw�0<����0��1g��|^�gV�W#�O�D"h��DO� �<�\ݻ WW��f���C�s16nތT��DZ60���o��c_�ͭ��(���W���7���_ �.���i����QQZ�:�E��D � ���FL)+��c�a߿����������qus�!��-[�`ժ�쇺;�
��󑗝�5k�ॗ^�O���u����[fyf~qj�3e�N��*��1�dZr@���C�9�u���5��RC���hg�W���oߎWY4���ҹ�`����x��}�իW�E4����Df���n>�s���GO��>�X�TT . ��D��)nܸ�΢����! �dz�|���Z-�v�Z�>݀����566b�';������6|��q�ŧP\_E�>%� �� +f�sxs�z�x�j�d�bx�-X-r�$c���}�7�]�!�Lz�Qj+L����®�^�aQ豃��ݫV�fA%Ҧ�ȿ�� MVg*~���ش|��X�Dh��Q�� ���|㪊�8��^�.��4g��x|&Ԉ�Y��[T�R��äC����P���o$E=#Pl��xo��p��$f-�����f8�Ι���x��p��ϸ���c:sf�R�a�F�7� �
��{��?߭4�L�7�j�����6;e>���EQ��:=�y3c$J�H_J�t�UY��S�u4��0,L�unG4���H`b"�#��0���I�.ӏ�j �����pج ��P#��`8�`_�6�J�F2V�������J�R�-`�޽�AD���K̑����HP���s��oa�[�/�~����Ҩ1W��m;w���]XH��ќL�!ݴy���R��Ǭ>%���Ch���B�JM% &$�6�����0�'�J�yڇ�4K�(��yN�!c��`!���^^9%A� DQ�ehЅ��F�P�?pˁ���8?���1ǻ��Y�?�I3&�^2�ց64������YZ�|��s=#�����Y B� H���&Ӓ"�A����=ą� ������Ù^/|!�^�~�Y6Y1�}�@��0��c�Щ[]D��|��,��,pr�d|i#�1 Z�Q�\�:�F$��Sz:���=eT�ľK3�X\��Cmn旨zwX ��G�ӔhZ4�G�є����qSŽ
��y����8ݦ�! D~�t �L,"�iq�h�
`��A�~̌�2������/�'���-ɰ#�E�ݬWU�T�<ރO��� T�*�r(/N5+�2N|�M����*' EE,�:\(NK
��;¢�*\���k ���Ǩ�%�ħ���$�g��h�� ���(d!@+�8���G��f_U.�\��)�!t�4ϡ 4�}���%(�g �D��#bZ-d��p�B��L�0���IS�V���]�F���� �B�-^��A�;�]Ɩdڑϱ�ĩ�+ru���0[hna0�i���m}���t� �� s�V��)]��Z#ʑg1� �QI�K�Z�:�?�Y�
�M�HD+M;�s+�"�V���!�,'I�[ߺN�������$�9|��ix�G?©�-� �y�#`HX~��A�C�3��62!H��2E�[�` AX�u0!��K�6���X�8�;�<z��X������ƃz��KB 2O�Ȋ{�U���>:��9�ݡ8��\�I$�bb��Bγ/���F�o]q攥��!sD�;��'� �f�������?lV�Z�� �m�+U���o�����3-����9Hr�PE$M�N3&Xz 3k�V���6H�a�D �+}� ���ƌ ��|�{
ϭy�q3&-��Q�S�'pY�l/_���'��]�^���FaeBb�"A)3�, ���vu�*EC�~��3��՞����'Q~�MX����De��l'�g�I�SwO����ܽ��4��p�6.��d��� ce���XS���d��039���������4�ٹ�>x�9s�����`|�˙��<! B�r0�>�4���
t%9(t�4�G�$�b�u�>�>!&$���g�]�� М$<;�F�k1t� �o�Ƽ�K��Kk'B�J��e���fe�������s7N�cVi6s�������j R1-ہV�v�s0�{X��yQ��=�a�j?����t���'&��q���d�b��r��a���Ӛ ��';�xg���/�wTg����cA�W���N?���D���g�r�����LJƹ斤���oR%�N��!���!\S �:B�<�L�3Z��1�Qqc��V5��L 5}w�! �jj� �Q
s� iGcS*�T��L�U�� %<�FQ���b7/Z�bdaL= �C��\���bU�ɷ-[?�}��������L~�AL�9[��Z�|`��n��� ;���T;;��ᶏ�O�d/A���Di:6>ϛ73gL�)��No��=���P��А��4�}��ͮ'�I�I��40ɬ�E�d�Nv̄����ذ��ߕ�|Ҵ����ʘx}ҟ�MZ#����'��?6�������s!��IEND�B`�
�PNG

IHDR22?��gAMA�� �a
AiCCPICC ProfileH ��wTS��Ͻ7��" %�z �;HQ�I�P��&vDF)VdT�G�"cE ��b� �P��QDE�݌k �5�ޚ��Y�����g�}׺P���tX�4�X���\���X��ffG�D���=���HƳ��.�d��,�P&s���"7C$
E�6<~&��S��2����)2�12� ��"�įl���+�ɘ�&�Y��4���Pޚ%ᣌ�\�%�g�|e�TI���(����L0�_��&�l�2E����9�r��9h�x�g��Ib�טi���f��S�b1+��M�xL��� �0��o�E%Ym�h����Y��h����~S�=�z�U�&�ϞA��Y�l�/��$Z����U�m@��O� ��ޜ��l^��� ' ���ls�k.+�7���oʿ�9�����V;�?�#I3eE妧�KD�� ��d�����9i���,�����UQ� ��h��<�X�.d
���6'~�khu_}�9P�I�o=C#$n?z}�[1
Ⱦ�h���s�2z��� \�n�LA"S�� �dr%�,�߄l��t�
4�.0,` �3p� ��H�.Hi@�A>�
A1�v�jpԁz�N�6p\W� p �G@
��K0ށi���A����B�ZyCAP8�C���@��&�*���CP=�#t�]���� 4�}���a ���ٰ;G���Dx����J�>����,�_“@��FX�DB�X$!k�"��E�����H�q���a���Y��bVa�bJ0՘c�VL�6f3����bձ�X'�?v 6��-�V`�`[����a�;���p~�\2n5��׌���� �&�x�*���s�b|!�
ߏƿ'� Zk�!� $l$T����4Q��Ot"�y�\b)���A�I&N�I�$R$)���TIj"]&=&�!��:dGrY@^O�$� _%�?P�(&OJEB�N9J�@y@yC�R �n�X����ZO�D}J}/G�3���ɭ���k��{%O�חw�_.�'_!J����Q�@�S���V�F��=�IE���b�b�b�b��5�Q%�����O�@��%�!BӥyҸ�M�:�e�0G7��ӓ����� e%e[�(����R�0`�3R��������4�����6�i^��)��*n*|�"�f����LUo�՝�m�O�0j&jaj�j��.��ϧ�w�ϝ_4����갺�z��j���=���U�4�5�n�ɚ��4ǴhZ �Z�Z�^0����Tf%��9����-�>�ݫ=�c��Xg�N��]�.[7A�\�SwBOK/X/_�Q�>Q�����G�[��� �`�A�������a�a��c#����*�Z�;�8c�q��>�[&���I�I��MS���T`�ϴ� k�h&4�5�Ǣ��YY�F֠9�<�|�y��+ =�X���_,�,S-�,Y)YXm�����Ěk]c}džj�c�Φ�浭�-�v��};�]���N����"�&�1=�x����tv(��}�������'{'��I�ߝY�)� Σ ��-r�q�r�.d.�_xp��Uە�Z���M׍�v�m���=����+K�G�ǔ���� ^���W�W����b�j�>:>�>�>�v��}/�a��v���������O8� �
�FV> 2 u�����/�_$\�B�Cv�< 5 ]�s.,4�&�y�Ux~xw-bEDCĻH����G��KwF�G�E�GME{E�EK�X,Y��F�Z� �={$vr����K����
��.3\����r���Ϯ�_�Yq*���©�L��_�w�ד������+��]�e�������D��]�cI�II�OA��u�_�䩔���)3�ѩ�i�����B%a��+]3='�/�4�0C��i��U�@ёL(sYf����L�H�$�%�Y �j��gGe��Q�����n�����~5f5wug�v����5�k��֮\۹Nw]������m mH���Fˍe�n���Q�Q��`h����B�BQ�-�[l�ll��f��jۗ"^��b���O%ܒ��Y}W���������w�vw����X�bY^�Ю�]�����W�Va[q`i�d��2���J�jGէ������{�����׿�m���>���Pk�Am�a�����꺿g_D�H��G�G��u�;��7�7�6�Ʊ�q�o���C{��P3���8!9����� <�y�}��'�����Z�Z���։��6i{L{��ӝ�-?��|������gKϑ���9�w~�Bƅ��:Wt>���ҝ����ˁ��^�r�۽��U��g�9];}�}��������_�~i��m��p���㭎�}��]�/���}������.�{�^�=�}����^?�z8�h�c��'
O*��?�����f�����`ϳ�g���C/����O�ϩ�+F�F�G�Gό���z����ˌ��ㅿ)����ѫ�~w��gb���k��?Jި�9���m�d���wi獵�ޫ�?�����c�Ǒ��O�O���?w| ��x&mf������2:Y~ pHYs  ��5IDATh�YyxUյ�e�7��L3��B��04���
X
2�
}��J���b�}}Vx�28�������Ȑ0��2C�<CB��&�f�o�'^b�7�?������=9�����y�ca���a�/�A ��244���8ڳ{�2�c�c�g��G�߂���baa1�~pp����j��B�x���o��XZ~eL����c�i����W�������j����9�WgaB�/7��c<���9�yHO��7o�v ������8L�����X�90V/����� ����_;w�eˠקּ�� ����-���}�ɋ�pvs���P��1�#i�;}� ^�����K�iۡB?�������}�ڂ KL�:vvvü�����F� ����ۑw��'NEy�u�ܪ���x�� ��g��b���زe \\\D�,M�����୷��k�܌��Am�(�{��5p� @hX$j*K��Ls�2 �,�C�c�c�!0>
�a�1'a.�����P��o�J���_,��8�8/��8�޳NNN�ĊI0����ly�%��� �?���.�� ��GX�q+�CBeN�_����k��7��� Lk�6�� '�g�:�aт����^�S�Oz{{�{6%�� ��V�^����O�4$N�5����]�o��0�<l�Ϟ2<�r���1̉�1|z�3�i���~C�� �YQ� �^���fy��v�d�U#J4���All 9y&GE����*�޳g/R�� ��A׫�Je���j,�i�>L��i���ٻ��¡并��lm�GD�������L[�_^Q!�w��<8�AѲq��E��U�S�]���p�� !!�@(�(�2vz,r�qV�Vd �A:�Z"��9�8Z��pW ��igO�É�1�z�J����0w����`��А�gd ���c4�ܚFerbb�d����"���a��G�B�٪`o�FMy!��t��{�V+R��pG�V��&!�� ������:[ 0 PX`��`xO~6s� ��Čd��Q�(3f�{�M�Y?1�|4U�P[�q� �0!S�b|H�[Z0xǴ�n�Dp����HNzS��@y#�())Ƥ���&BE;`L�Q}d��
&� ,=�K465�Jf&_|z� :;�0mj4&SJ�R��4�~^Px��`lmm������ ��Ȅ'!$4q����"8�1�c3�0s�R��{�"�#$8�򅫄YN����d������{+k: Ğ�����s�%�W[k+ �yT=t�Y`ӦM�6538`��9Iz�P�u�V>GP(F��N��=�a�J����ʀ���<��̫ɱuz�D6k� �ڎ�����͉��7��y��������e+&FF��Bt��@��oRn�,Ć��B[[;Z���ʒL�V6ax|r�3@�ggg]�ÊG���M\����눞��B��`�̙" ��D2Ow7�6<���?B) �,�tIP`���ڛ���$����q�oĬX3l��p�V?A��s�����[���x=��+Ц���{��s���_�C�<����T d��#��e� � /�w�0y�F��;��]�!7�^���`����GAA>T.x|�Zٌ���dQ�?��5��%IZT3�Y�im?���k�Z�= �L���+�oı�'�p�
϶�y��4���l�|��ʡ����D�\r�Y���!<�v�`�y����+�����K���NzE��N���E,�3�(D306-�����9_�_c���5�ao�����������)oԈ�R�������%��MRR�TW�y͞5 �-h' �v���z,���f�����}�vT ��Mß���<S��ܘ�^�z��N '�� ܎6��Q��/�CF�xxx�
<�{|=8��Z7G5RR��c
�v���7�e�g�����h�����QQQ)�w�Igg:u:=�SѶ�G�`��,( `8c��Y�O�[��ǎ�ȡCpvuAwK�~w.Td6��OQk�����↛u��2!ߙ=�T��P��S(.������Lo3b�Qט���`s�Y ��k�����AMu;)=S�P�a��@����eK�B6϶�5n.�0d�ZXһ�q�15:J���8�l%@&�Q���ʫ������E(e�����G��?͡1kZL��:$ПL`PT5q2����YzV�5v���VIt���vRb���͜ �G�i���7iӀ6�g�� ��WL�����B��Ɩ
�}����9�2 �͊Gnn���1�I+�|"��e�R!�3֜I�5�%�%��z6=f���W�j��s��O�q��7n�K��7N|Ƃ2~;����S�2���ZY�l�`l�m�v�r�a�.aL�V �b�1.5(7������"���K�W�Y9yb~���C>�5��%_�}4&~LjD�Ѧ��T���"��<1Bl~ߟ�Jv�*�
7W�;��gر� ����k� r�bsb?���,q�+9��B9&2"���R��o��ݺEu> ��a����k4t�>,�ZJۣ�{IRĩ��61�`9S��a2n�7P8nAiY�h��^�M�3��lg�cb�E��/ŬE.[��T�ί10�y $ ����7������U��� ��y�oh��d���9�L�yH��x���Ŵt����s.R3�$=L(5bԩ��WíF���+,�sv��)�ب�QO* �`�1�>�GM��W�������'1sz ��|�J������}�#8H46��oX�E���|�Q�������C�K�ZU[�nm�_�!�QoMa�`�gϞ��O��i����' 2�˗>B!9�`
��CB�Lg]��C��puR���ϗ���y���'O�2�+%� �l����筆�AnF�1 D���+�tڑ��|%����0�&&;�
�������W*���V8�����K���ChP�aA1�r��ZpM�����yz#(0P�0�O���j��8<, ��!ʥ~A�R���(G�de"I>�a0e�%�u�Yt��N����*7 ���٧7"���H@��þ���yXyE*�k��]�G�����‹1����tv^��ŝ�#K����:J(����Q���8!'8=E2�>!�?: �7��s���o@NM��f>�g-0m�C���:���������р9t�?�aQ$17!VvN�ZIb�T:���̀XC̜���{{/�}|�lw��#��>��{�� ;2�'Ev~��_8�+++����D&�tL�S��8}���غ�Y,[���ɩè:ut���Ʀ�sY��rx0���q�8D�9#�3y�����24R���5t #��Թ��O�^^^cb���"E"T�w�������ܠ�v�q1�分�.�u�{6���nd�^��m�I��|n�'�p%�I���\2<k��@7�q���������E�
��&��x��b>I��ի(/+�ôP�W��N�JN�TÓ"�)�j��!��.('t�N��Tg�Q5� O�����&��ܓ||�8����A||�h��o�cL��S$��ގ�/o�j��pڥ���pF/�\W���`���vn55cew6���nJNF��;�Գ�暻tH|�@R����%X�f�l�N������01 ��~�ҏ���?XMozq\v^�vjF6��<~�g!ӻI%GʩO�0{����4)� ��w`��]���s�b�Ecםl�U��2��0���*�� ���;eE/�D�#az4Φ\��C}���p���lqt�؇[���\8Ϯ{��� �.�lsϗ{��p�Jz*�`e�B%��VT��٩�i�=:���
[��YU]Ete�vw���~!��#���ehnm���3.>��=��{���Z �$n�&:B���='3��t��0�� *�q�w�F����ˎ�HGCޞ�ol��k�sN��v�9j����y�� |t�飯o�#1_覡Oj�r��xb�X���� ����t��~-i�E�5P5\bm@3}%���~*�����G�i������)���u7����a�J�v��-�  q/b<��M���'r���㶗�� (��������0�l��Q�����|k
�ш*�F�3jj��oj��w�����/��NO\MNJ_�IEND�B`�
�PNG

IHDR22?��gAMA�� �a
AiCCPICC ProfileH ��wTS��Ͻ7��" %�z �;HQ�I�P��&vDF)VdT�G�"cE ��b� �P��QDE�݌k �5�ޚ��Y�����g�}׺P���tX�4�X���\���X��ffG�D���=���HƳ��.�d��,�P&s���"7C$
E�6<~&��S��2����)2�12� ��"�įl���+�ɘ�&�Y��4���Pޚ%ᣌ�\�%�g�|e�TI���(����L0�_��&�l�2E����9�r��9h�x�g��Ib�טi���f��S�b1+��M�xL��� �0��o�E%Ym�h����Y��h����~S�=�z�U�&�ϞA��Y�l�/��$Z����U�m@��O� ��ޜ��l^��� ' ���ls�k.+�7���oʿ�9�����V;�?�#I3eE妧�KD�� ��d�����9i���,�����UQ� ��h��<�X�.d
���6'~�khu_}�9P�I�o=C#$n?z}�[1
Ⱦ�h���s�2z��� \�n�LA"S�� �dr%�,�߄l��t�
4�.0,` �3p� ��H�.Hi@�A>�
A1�v�jpԁz�N�6p\W� p �G@
��K0ށi���A����B�ZyCAP8�C���@��&�*���CP=�#t�]���� 4�}���a ���ٰ;G���Dx����J�>����,�_“@��FX�DB�X$!k�"��E�����H�q���a���Y��bVa�bJ0՘c�VL�6f3����bձ�X'�?v 6��-�V`�`[����a�;���p~�\2n5��׌���� �&�x�*���s�b|!�
ߏƿ'� Zk�!� $l$T����4Q��Ot"�y�\b)���A�I&N�I�$R$)���TIj"]&=&�!��:dGrY@^O�$� _%�?P�(&OJEB�N9J�@y@yC�R �n�X����ZO�D}J}/G�3���ɭ���k��{%O�חw�_.�'_!J����Q�@�S���V�F��=�IE���b�b�b�b��5�Q%�����O�@��%�!BӥyҸ�M�:�e�0G7��ӓ����� e%e[�(����R�0`�3R��������4�����6�i^��)��*n*|�"�f����LUo�՝�m�O�0j&jaj�j��.��ϧ�w�ϝ_4����갺�z��j���=���U�4�5�n�ɚ��4ǴhZ �Z�Z�^0����Tf%��9����-�>�ݫ=�c��Xg�N��]�.[7A�\�SwBOK/X/_�Q�>Q�����G�[��� �`�A�������a�a��c#����*�Z�;�8c�q��>�[&���I�I��MS���T`�ϴ� k�h&4�5�Ǣ��YY�F֠9�<�|�y��+ =�X���_,�,S-�,Y)YXm�����Ěk]c}džj�c�Φ�浭�-�v��};�]���N����"�&�1=�x����tv(��}�������'{'��I�ߝY�)� Σ ��-r�q�r�.d.�_xp��Uە�Z���M׍�v�m���=����+K�G�ǔ���� ^���W�W����b�j�>:>�>�>�v��}/�a��v���������O8� �
�FV> 2 u�����/�_$\�B�Cv�< 5 ]�s.,4�&�y�Ux~xw-bEDCĻH����G��KwF�G�E�GME{E�EK�X,Y��F�Z� �={$vr����K����
��.3\����r���Ϯ�_�Yq*���©�L��_�w�ד������+��]�e�������D��]�cI�II�OA��u�_�䩔���)3�ѩ�i�����B%a��+]3='�/�4�0C��i��U�@ёL(sYf����L�H�$�%�Y �j��gGe��Q�����n�����~5f5wug�v����5�k��֮\۹Nw]������m mH���Fˍe�n���Q�Q��`h����B�BQ�-�[l�ll��f��jۗ"^��b���O%ܒ��Y}W���������w�vw����X�bY^�Ю�]�����W�Va[q`i�d��2���J�jGէ������{�����׿�m���>���Pk�Am�a�����꺿g_D�H��G�G��u�;��7�7�6�Ʊ�q�o���C{��P3���8!9����� <�y�}��'�����Z�Z���։��6i{L{��ӝ�-?��|������gKϑ���9�w~�Bƅ��:Wt>���ҝ����ˁ��^�r�۽��U��g�9];}�}��������_�~i��m��p���㭎�}��]�/���}������.�{�^�=�}����^?�z8�h�c��'
O*��?�����f�����`ϳ�g���C/����O�ϩ�+F�F�G�Gό���z����ˌ��ㅿ)����ѫ�~w��gb���k��?Jި�9���m�d���wi獵�ޫ�?�����c�Ǒ��O�O���?w| ��x&mf������2:Y~ pHYs  ���IDATh�Y p���ew�l��}�rAH !@�K@Ģ֎T�RQiG-�h�G�tj[qoAA1 �J$�# ��� � �@��͵�l����d�Mg:�q�����~�������d��_�P�0���_��/F"�����#?����8>�ߕ��U���le�#W'�h�^�� F��T*����v�ȁ�(� ��<g�@���8{&�Z-�����ٹ�L�ł+W.�����^��~~�1n�������\%jk��q���r�5��2" �^��� e�%X��z�E��h�NݎW֭����܏B���Ɩ6��� ZtZ��p�����n�;3;~�+�0�d<���”��q��q]]-����1w�r4�4!�?=$�3Ǿ�����Ɣɓ����Z�^����M�L&�H���Zk3�"�!>! �e�HHH��CY���U�_-*:1���{y�Z��ӂ��Z���l�>
AOOF�
#)`6��U����XzQ�pnnn04�`��۰a�Fܲ���v�~�����}�@�"����U�èNJ�,ǜ[��b�q���:OO4]nDww7���O%ƯR���@v���@���y����s��h���G���HN�s�ߌ���@��@PP0֯ z�7&NLDkK I��F��ј�����٣1�+8*:���HMM���҅����X�#Qt�=NԘp��������dBbb����!�Q�j������{�c��j��<_ܸ��v���qHH�
S�Q�x(�ʗa>�{(�-\0� 5�<�&��׋�q%}7'��6����M��:&��w��0�S�D�]\�ѠGHHV�݌VC;�Ex!&v���_�p9)i�Y2M�-B Q+F���{��e#�݌��i((ȃ����Zy�/��Wjϐ�6bǗ�q���`A���Y�����8���LjRL��F����g2��S����} 1w���}��[6oBII1��� c�F��“�:5E@�{��b_�.Z��� fS�ZO�9F���<��j����`N."F���x����p��%��]��Q`[kW3�9��+�� ӦS0��5k֠��en�8����q�u����~ʈ�>t����I����
�)���c��]�-�z7NOA��3�6}
�z�jr��274t<],hkk� �`{{;y��x�T����9:���)))��+Bll�Ċ^JYt:o45]��8~<��3x�7p��E��K���®6337nDiii��ήn���0@2z�h�"<��� �LGmeX �o��t�-ܳb5��=��N�P,�|�^�TW�qgee!/?M�4�������Ұ�%8y��-�K�|��+xG��f�,r�!�A��H��M G=��e����_~��^X�툌����-i4jG m��k�BХ�zl�|/f�<�nh3�p6�ŌXT�*�޵G�p�̛��g�&�t\�׷��ˈ��.��!{h�\����?_������0u�Mк��� ����u"bNǫ��0�t}RR�"m���'����99Gh];��t�&g�1�*�Nœ��� @m�º�_��Z���! ;w���嫑�Z*"�Đ�7��ڼ1�g��:/R ��fI�90��)p}����� �U0�J��s���@�b�L ��};q���))7�T��� fHan���� �̘��Q0Z%2�����:D�LjA)6'������Q�>f475��0����.䱴B�G��� �GG����O�#>g�a�)s�GYY)��ga�M��+J� 4gI�}���4D����T�S~���˗������,�*��%��>;(d"�Cp�p�x?�E���?�Fv�ހ��rx�����6��,R��E�]򳷯&O�!|U��i%�f0�ƿ��:\�x]�d �}`�`�T#= #I������F��ٕ��ռ��?�Ԛ ����<T* ��Q��6L '��*J��7��d�"�lG�~�m���PYYi��Զ��O�@x����n�5������hd�P��� c�ގ��Ls{��+i�=����6#f�2���H�� s��K��E<q"�4(��^�«����Ѩ����(�:�x�a����w�䔙HN�A����M�s���Ȩ��=w1|� ĎK ���7�M�y���b*��L%4�����ː@X�M]�#����2���X CF�����{�9L�4�.�x��N�}�Y�_�(f�Y �Y�s[�mb��i��3媢� >kX �Z�̘�C�߱�=�q��ad���Tw 8���f(3�U �`w�de�y ��� �p�.>�ǬY����/oo�|>��L�0�z�~���0��/?� F�3w�0Q2���cY�(�s���O�ټ�C��&�nhiD�x[����t�]
)�T@�4_�`1&c�&�M�J��H.�Dm������ಒB��j �[:1�~�V=���)���n2����{WJ�H����4�z�]��}||<�H�ܧ2Q?auݱ����p�rJ ��B������!�_�m*��z��k�9;�eʾ�:��\�FJ�}�u�,/A���J���=���8b�Gr��x�"��� �
M������"&��+���ihAP` �6RbG��Dz2I]\E�Y�4�Y��q�����F�f�� -��/]���[�ot���`�.�$��u�R�
#vr��>|' /��)DFF�^C2idB�3��|�/^JƧ�b�u�A֟�'����$�M)������\(]�#�tw��+>��MahؘX�!i�tjM!� ��l��ۥ��ah:�O�| o�O���E}�P�2p�K/���8��(uh��!���D���7�Q*+JP[UA����Q�ՎS|�y1G�(&Qs��?a���Z
xz��A��J�p'�=��uXr�" %�H���a�(���:����x����0����
de�g�5��ظ d'f�Sz������G�.8��\�}ܕ,*8��se�g|�9���%�!u�+�" hX <I���e�5Y0��ۤ����4S\R����Z,\� ~A�l\�St6�Ңr��01i
�b��'�G����U��Dz�'X��v���4 䪝Ra�Ku���'�in�
q}q��� ��걧������(���`���s�Ԯ��{����zZ����b!�ҡ����O��7I͢0Ҷ������S;zT�'*C 8iT�TLL;=*"��ޏ]�>�l��W�\@yy��$ΐ�Xp��{�v����38��D��c�'�-�xW�nQp�!̑�����Jb��ռ�u��q<I �9�/n��61z� ��Ǐ�C��"�peP��s8Ua�4Y�� *������ż9� ��V�s��j�ި��wV��3r�g�PL��d��_�Ebr���'�n' � l?,9�֕J�n� ��3�"~�aU�'s��֨;�v�mSee�\���^R!/z�`���<��sӍ=��b�/�C��H�`zi�=z���Ӻ�Q�1�հ�\on�y����c�� �$~+��ҌS��������l���
=/��������=�r���l��o��b��F�W��ϤR�i@� DF���夎T�Y{`r�@L�'n���=�f '�
/R �ሱ�!��<�ؿ���J���{�g�Y�������ߴ�޽[�dކ �������\kAA������ȣk��.��A���[mmh����[�^�����H~߶m��*��� _�|�͵����5:&F޼�KO']vFn^>��c�)PZV�'NP��M��]�bV�ZE� �%{!��!e*u��HM/I��K�� p����Ũ��@Yy9�ݏ�};�<����4(4 v6�𢁛q#;�z�UUU���s��ÑDF��`g� ~� ���N�����'xYKF�y��e=x�����C@�Ńm<�o<���M���ב���o.C���IEND�B`�
�PNG

IHDR22?��gAMA�� �a
AiCCPICC ProfileH ��wTS��Ͻ7��" %�z �;HQ�I�P��&vDF)VdT�G�"cE ��b� �P��QDE�݌k �5�ޚ��Y�����g�}׺P���tX�4�X���\���X��ffG�D���=���HƳ��.�d��,�P&s���"7C$
E�6<~&��S��2����)2�12� ��"�įl���+�ɘ�&�Y��4���Pޚ%ᣌ�\�%�g�|e�TI���(����L0�_��&�l�2E����9�r��9h�x�g��Ib�טi���f��S�b1+��M�xL��� �0��o�E%Ym�h����Y��h����~S�=�z�U�&�ϞA��Y�l�/��$Z����U�m@��O� ��ޜ��l^��� ' ���ls�k.+�7���oʿ�9�����V;�?�#I3eE妧�KD�� ��d�����9i���,�����UQ� ��h��<�X�.d
���6'~�khu_}�9P�I�o=C#$n?z}�[1
Ⱦ�h���s�2z��� \�n�LA"S�� �dr%�,�߄l��t�
4�.0,` �3p� ��H�.Hi@�A>�
A1�v�jpԁz�N�6p\W� p �G@
��K0ށi���A����B�ZyCAP8�C���@��&�*���CP=�#t�]���� 4�}���a ���ٰ;G���Dx����J�>����,�_“@��FX�DB�X$!k�"��E�����H�q���a���Y��bVa�bJ0՘c�VL�6f3����bձ�X'�?v 6��-�V`�`[����a�;���p~�\2n5��׌���� �&�x�*���s�b|!�
ߏƿ'� Zk�!� $l$T����4Q��Ot"�y�\b)���A�I&N�I�$R$)���TIj"]&=&�!��:dGrY@^O�$� _%�?P�(&OJEB�N9J�@y@yC�R �n�X����ZO�D}J}/G�3���ɭ���k��{%O�חw�_.�'_!J����Q�@�S���V�F��=�IE���b�b�b�b��5�Q%�����O�@��%�!BӥyҸ�M�:�e�0G7��ӓ����� e%e[�(����R�0`�3R��������4�����6�i^��)��*n*|�"�f����LUo�՝�m�O�0j&jaj�j��.��ϧ�w�ϝ_4����갺�z��j���=���U�4�5�n�ɚ��4ǴhZ �Z�Z�^0����Tf%��9����-�>�ݫ=�c��Xg�N��]�.[7A�\�SwBOK/X/_�Q�>Q�����G�[��� �`�A�������a�a��c#����*�Z�;�8c�q��>�[&���I�I��MS���T`�ϴ� k�h&4�5�Ǣ��YY�F֠9�<�|�y��+ =�X���_,�,S-�,Y)YXm�����Ěk]c}džj�c�Φ�浭�-�v��};�]���N����"�&�1=�x����tv(��}�������'{'��I�ߝY�)� Σ ��-r�q�r�.d.�_xp��Uە�Z���M׍�v�m���=����+K�G�ǔ���� ^���W�W����b�j�>:>�>�>�v��}/�a��v���������O8� �
�FV> 2 u�����/�_$\�B�Cv�< 5 ]�s.,4�&�y�Ux~xw-bEDCĻH����G��KwF�G�E�GME{E�EK�X,Y��F�Z� �={$vr����K����
��.3\����r���Ϯ�_�Yq*���©�L��_�w�ד������+��]�e�������D��]�cI�II�OA��u�_�䩔���)3�ѩ�i�����B%a��+]3='�/�4�0C��i��U�@ёL(sYf����L�H�$�%�Y �j��gGe��Q�����n�����~5f5wug�v����5�k��֮\۹Nw]������m mH���Fˍe�n���Q�Q��`h����B�BQ�-�[l�ll��f��jۗ"^��b���O%ܒ��Y}W���������w�vw����X�bY^�Ю�]�����W�Va[q`i�d��2���J�jGէ������{�����׿�m���>���Pk�Am�a�����꺿g_D�H��G�G��u�;��7�7�6�Ʊ�q�o���C{��P3���8!9����� <�y�}��'�����Z�Z���։��6i{L{��ӝ�-?��|������gKϑ���9�w~�Bƅ��:Wt>���ҝ����ˁ��^�r�۽��U��g�9];}�}��������_�~i��m��p���㭎�}��]�/���}������.�{�^�=�}����^?�z8�h�c��'
O*��?�����f�����`ϳ�g���C/����O�ϩ�+F�F�G�Gό���z����ˌ��ㅿ)����ѫ�~w��gb���k��?Jި�9���m�d���wi獵�ޫ�?�����c�Ǒ��O�O���?w| ��x&mf������2:Y~ pHYs  �� �IDATh�Z p���ޒ�,/{BH ��$�����@Z�"hu:�U�jՎ�G�3�8�8mq�c��TQK���a,AaH�%�l��y��{y����ǟ������g�����;�=�Ϡ��= �� 1}H�{-����0F��A� ���!}�o�>!c�/dKg�ߏw�}��DFV&
,D��|L��R��B~]�"��~��\@ݩ38R�mM-(�_�{��1��I�&
�x;{z�����-�V�C�w�x�jN���� �=��l�nc�e<&��R�;T}���0*��5�����w� �R��E�ᛕ��i���n���D�t?�V�`��*T8�����t�wϿ�����Z� ��O�V�Y�~Ƨ�)}.��i�6��k�+���� �(� o^��CeY����11 '�Q���!�8�@�^���󵧑�0o����S�X�s`$�>�j �d˄ɫ��Iz{�X�l)��՘;w�����'%���LL��)R$c_ Ζ��&-���&'ң�0�e��X3�3�ÿ��)�I� �F��r?��b۲3A��<3KB��ڠ�w�a�HFLl
�RN{=�5����8I��{��|���l��"��:����x��W�y�n�9���4��v����E�L�L��}��
� ��r`�U��+�-��\(��fT4f 2�����}�߉��m8y���-f�+Ʃc�оa=�������k֠�hj6<�y3�] ��þ�1e��X��~83�3\I��~L\�$C{v�s��jw���s��V�J�¿���k���>�>�)M�>�z�iT�w��߷w�"� �=���RD������~������G���Mزe��V^V��lh(��$��R=��tM����i&�ĉZ%Fq�\ܴ�V4ԟ��
dO������ࡃ�n �>�v{H��K�Yw���q�׏��W����n8;]7���{�?W�Njw?؊��nEފl�&��3���3!t៯I�����݌��J�)h��� �nj�\ f4���1>�Aނ(�#�ض� �Tעp�u�
�r�4��JI�ד1�#�0�h�*���~���VV����q�12�+fo�.4��Brj�RJ��PAy�y��mL*� 9����ړx���Y�>l��F\�Vx���;Z�2C�U����>g�����s�!�L-~s���:����|��W{7& jɢwp5��n�S�7�H���~�:k��@�N�
��ʘh-dF��8�hr`AaJz�`���������_)�j_�}�1�����X�b9֕Z�B< �V8|�V���0��!��J�/x�w�;X�3_ϑ�����Hl�}w�1~r��1�ب�Hf�����(..�]��0�o���P�����M��q�+Ŕ,�\��w����x�(�a��p�L�H`��bW�U�U��G &l �%��}xh�m(������۔���&�iwX+vzY[����~�Xt�,��B ql�:i�DDkv|~x���&d�
̨c��� ����>���A�+e���^+S)t�KӁ���X"-*$�0�ߎ@t6��զM��h6WaYD�ƅ�<���ӌ�h�A5�$����Z�5ds$��~��#�Ĉ�7�!q-��!!�N`�N�Y_��#ڔ�ח�,�g���ZjNC�N��q�(
��M����E�  p���#�� ��^xe#I��!��5�dE��VV��t���꧰��O6�x��c"��{C�Ѻ�.x����`�E���"��{^��r�))#���P��{!����EfP�m�����^#ѭ��zp��aD�rr?��$� H�͈ Y�"_��F����0��m���"��BKdҽ�GƐ��d�eaj�=�;:U�.�z��iD z�f~��ܾ��Ђ��$��G�u���s�7똩��(���H(O`��0�$6ޯҵ� N,�����=0Ys0�؊Z��jΠZ.?�D�FwW�ڋ��"�I�J�Lbp`�)��Z�5�(-Bbe]I�I�!�>j]Z�G�"n��^����  ����-�QumRә��,�O�Պ&�}/A�B�-9@]o�_ұ�i���H��
�����Ͼ��a�DE�� p
�J
��L.nO�� ���\S�d(/ֈc�UJ�H�<���N���)J��7��`̈@��19;�����{��:#[�� #�&n6ȣ�VM+\J�"�d6I
݌���Z� ���<�Lf؝8���9�իk
$1>��l8�Db���m�0��U��F���D�ZJ�"��%��L,rQ�fA�� �/��)9jX]��W��h�$1s�t��7�/~�[�����Wa��uK��L�Sy���>�#)V2�<���C@��j���b��+W�K˓�2b֒��мy%8Ϋ��a�5*�� ��E(TҲ$�i�r�3Iҵ�I"�C!�&�n����Y��a ����j-5"O~:���?��W^„�t��v\��=��f��t'q�it!����"(�V1# �yƐ�l��� ����n�߰[���ְ�V�@��ȡ�DZ��?�����vV�A$3[���Š��)�U�������� So��1��Y
I��{ͨL��s�ص�K�/) ���k)F��A+�[�߿�&N�^ĺ�L��(��rE�"T,�,�$�d0��M�Z���� ��?5&e��X����K��d�p)l '�B�~��*{pik��K��[���
\��t�j�m�����H)#���ɡ����.�QPw��z[� +���R@]>�M]���^������<:5�����r������hX�
���G��+�WOp��( ��q% ���ɠI"�핃�sC#�eO
۽.K�@ҝ~���>���:^�,�@Dj��EAE�))X3��y-�8#fQjhO")Z\�&ىn&VL$8��K�������Ӄ u�̘�� �'�~=�Q+��v4��q��Q�]�S�9n.�Dg_ݑ���� �PNBH�Za"���#h!~ A+C���� 07)�s�'�@�i��8��p��3�e��A_�t�^�:dD[G���N���(�:�TP����ƲA �z,�X�N�t���?]���G0{�
oe����v)�"-<�(��� �jp�>KjDH��F��сTVUᗷ�+II!moQz���X�hT���C�d%�~� X��������R�0��,�ݐ �uN �����u�1���������3��h& З3s�̨�>�OΞE�ia����]n<� �<0���W��>�6H�3 0����,yA�'}\8���� �O]+=}�����n�R��`���>��ϏV��Gx2Ƌ��OW~���P� I��mS8��p�d�� �ۺ�����ݼ� ��3�]�v*@IEND�B`�
�PNG

IHDR22?��gAMA�� �a
AiCCPICC ProfileH ��wTS��Ͻ7��" %�z �;HQ�I�P��&vDF)VdT�G�"cE ��b� �P��QDE�݌k �5�ޚ��Y�����g�}׺P���tX�4�X���\���X��ffG�D���=���HƳ��.�d��,�P&s���"7C$
E�6<~&��S��2����)2�12� ��"�įl���+�ɘ�&�Y��4���Pޚ%ᣌ�\�%�g�|e�TI���(����L0�_��&�l�2E����9�r��9h�x�g��Ib�טi���f��S�b1+��M�xL��� �0��o�E%Ym�h����Y��h����~S�=�z�U�&�ϞA��Y�l�/��$Z����U�m@��O� ��ޜ��l^��� ' ���ls�k.+�7���oʿ�9�����V;�?�#I3eE妧�KD�� ��d�����9i���,�����UQ� ��h��<�X�.d
���6'~�khu_}�9P�I�o=C#$n?z}�[1
Ⱦ�h���s�2z��� \�n�LA"S�� �dr%�,�߄l��t�
4�.0,` �3p� ��H�.Hi@�A>�
A1�v�jpԁz�N�6p\W� p �G@
��K0ށi���A����B�ZyCAP8�C���@��&�*���CP=�#t�]���� 4�}���a ���ٰ;G���Dx����J�>����,�_“@��FX�DB�X$!k�"��E�����H�q���a���Y��bVa�bJ0՘c�VL�6f3����bձ�X'�?v 6��-�V`�`[����a�;���p~�\2n5��׌���� �&�x�*���s�b|!�
ߏƿ'� Zk�!� $l$T����4Q��Ot"�y�\b)���A�I&N�I�$R$)���TIj"]&=&�!��:dGrY@^O�$� _%�?P�(&OJEB�N9J�@y@yC�R �n�X����ZO�D}J}/G�3���ɭ���k��{%O�חw�_.�'_!J����Q�@�S���V�F��=�IE���b�b�b�b��5�Q%�����O�@��%�!BӥyҸ�M�:�e�0G7��ӓ����� e%e[�(����R�0`�3R��������4�����6�i^��)��*n*|�"�f����LUo�՝�m�O�0j&jaj�j��.��ϧ�w�ϝ_4����갺�z��j���=���U�4�5�n�ɚ��4ǴhZ �Z�Z�^0����Tf%��9����-�>�ݫ=�c��Xg�N��]�.[7A�\�SwBOK/X/_�Q�>Q�����G�[��� �`�A�������a�a��c#����*�Z�;�8c�q��>�[&���I�I��MS���T`�ϴ� k�h&4�5�Ǣ��YY�F֠9�<�|�y��+ =�X���_,�,S-�,Y)YXm�����Ěk]c}džj�c�Φ�浭�-�v��};�]���N����"�&�1=�x����tv(��}�������'{'��I�ߝY�)� Σ ��-r�q�r�.d.�_xp��Uە�Z���M׍�v�m���=����+K�G�ǔ���� ^���W�W����b�j�>:>�>�>�v��}/�a��v���������O8� �
�FV> 2 u�����/�_$\�B�Cv�< 5 ]�s.,4�&�y�Ux~xw-bEDCĻH����G��KwF�G�E�GME{E�EK�X,Y��F�Z� �={$vr����K����
��.3\����r���Ϯ�_�Yq*���©�L��_�w�ד������+��]�e�������D��]�cI�II�OA��u�_�䩔���)3�ѩ�i�����B%a��+]3='�/�4�0C��i��U�@ёL(sYf����L�H�$�%�Y �j��gGe��Q�����n�����~5f5wug�v����5�k��֮\۹Nw]������m mH���Fˍe�n���Q�Q��`h����B�BQ�-�[l�ll��f��jۗ"^��b���O%ܒ��Y}W���������w�vw����X�bY^�Ю�]�����W�Va[q`i�d��2���J�jGէ������{�����׿�m���>���Pk�Am�a�����꺿g_D�H��G�G��u�;��7�7�6�Ʊ�q�o���C{��P3���8!9����� <�y�}��'�����Z�Z���։��6i{L{��ӝ�-?��|������gKϑ���9�w~�Bƅ��:Wt>���ҝ����ˁ��^�r�۽��U��g�9];}�}��������_�~i��m��p���㭎�}��]�/���}������.�{�^�=�}����^?�z8�h�c��'
O*��?�����f�����`ϳ�g���C/����O�ϩ�+F�F�G�Gό���z����ˌ��ㅿ)����ѫ�~w��gb���k��?Jި�9���m�d���wi獵�ޫ�?�����c�Ǒ��O�O���?w| ��x&mf������2:Y~ pHYs  �� IDAThݚytTU��?���ʾ�,�"H�İ���L��qWtf\{�9-6��0==�:�VAmņ�aY=`#;�a  A ��H*�$dO*U���^U
�>3����{U/���~�����CѤ�7� �Lw�N�_�(
��;�z���^��;H��{�F�.Z���!&J�k b������ QU �����5 ^&r����1�G����Po�A �ǒ% HN�������& s��v����/�4����Xm�Zޗ�5͆V��ݕ�j��u��۝���^cD׍��]�w`�."9�s�P.L�S�d`)>��}���/�%,��v��z �ǐ=`�K��VU�8l�6hX�v3 n-!�4��aD3�g��T��^����S�С���W�� he���z��ߓ{i;ta�j���*�h8�Nb�����a�쀏?���a�V�޸�#@<qĀxZL&.�>���؉0m4����g���n����*��|Ĵ��ѷ�
���&�G�i�#@���^��N~�l%M�sא�,�S�6�̘z���[�.�ݶ���í�D�[�Vk���k���W=9��� ����~�*�f����x�߶��z��:����N�x�6��*���Y4V��ch��}_s:]����ww��������mIK����&��~K���f�`4b��Qz�wPٵ� '��3}�O谫n`�>"��k�;uF���v2�Ci�1\aϗ�i)}ǍK�Y!1s;��8��6j������cH��އ+�h\1 �9��o�,[��p��4�G̬�'ܔ�.;��@�k��~W������!T�����L�/ɮ`�
g,v���cf�P;�������a�q�  '�� �OCd?`a��=�i�l@i�)Z!!d�<)�c����ܟ��F�o�K�Tb �i�`��h�ĥr�r$�w���̀'A�l:e̊���ݚ������JF$�E�w������K<��ID_���F�~�mu
��(-Ѹ{vǷ��+����S98��5�·��Lt��i��,�9|��뱴j��ع�Eƥ�'mp�J35�*]�5�s�� ��:� �8]�2|����`�*�u��1�NG@ �/Y9]��%O�Z��,+<�d4�9v���p��D� *�b�xjQ��F||�N�?1� Q�D��$%!�\�9_e�Am�p�|+F�����/ ��퐻k Y����:�}���u����j%."���a\(�"4Ta� ��[y]G���H����N�`�2�q�>���Z�n��_
�D�=�.����)�c
���Z$�$Qc�cՎWH�XȔ��8j�M�u;��������g\�����l���/%rx��c-$ ��/q��9�z��O���=n׀�ގڼ�~�&?��>�J�<"s6�{/�]�,�G%Qz�;fNŞ�?%$j3�����I��$��CG���]�7K"ىY��F�E��6��5Zd�+~2Օ%t5n���D�k"+�@U�Ljo��%��X1i�,���`4'���#X����ߢŰ�%��,��窜8i�'�2q�[��\u��7���7WK %R�^���q�Fߩ-4��g�$ k�m�I�����ѥ&1z��D++�N���^���ɎϷ2�X�^fŎ�����*ť�45��������gi�yUK�J���<[v��|Cc�p�-�����$���������1�b������l��G���Et4�O?�NT@cxX���x�qٔ -�/D��1& R�i�Oqě�Tմ�ͧ�X��,'.F��jc�Y�Y�E�nu���$"��TVC�8}>R�ZY�n�%r
���D���ʤq&�垳Mc��
c֔f�y?����KB|���_�2�RR$�_���P�19Ӏ֥2y�� 7�gO-�?���j"_�"{a��U!G'��˖�6� � �Wh�j$$+��ٹr1��(���e'>KK5@2�c�]|����B�H��\�� \(Ri�YKdoj��R�wTw�PN����zm )Q
��*4�{����_�8U��u�¬l%er0!C���P�I����b�hA�L�T�=C�}R��40�>e�E.��
�6�9� �ި��k̛d�I2���U���'N�g�)t� ������Y���� 9�H�e�7��ij+�!̚�w$E|ɸ)�ć7�ӗ���H�V�H��z�F�x������5aT �(:_㑇�X.�/W���Wa�� d�DM�fNh *}�0"��0���o� u�>�0<��h:����6�Ie���4��a��r�@ܲ�Q#g�I�(�x�.^�ƦQQ��/ ��:���נ�Ѐ�p���t��$�����O�x��h5��H.�3�ܓ�)�f���౅F�R�8�@���S����B�e�(���(�H�# UI�ʀ>
��� %�d��Ho��͠!����� ��O��=��C��Aa�?$-�E� �yTI�!�D� �mVq9��B�X���q�ST( �pM�r���-^n�0���
u�.>�r���9o�>&��`裡� �O�+�y��d���Hr\C�Y����W�h��q��Ua�r�`���Q�S�:ɥF�-5�x�8�L]�h�\[�$k���v,-�/�#�����d?Yt�qں�|q�n�G���N���@���sI8a�F�%H��<� ��o���,�Hp�؊� '�Re�f��#��++�<����e�O���v�k���$X�ʶ��!}z_N�1J��!Lܿ�Cж��� DX�Ŋ�1K��?O�Z�R����!F]Q������- tI��U�ߌ�p�ӯ?ۼ�C�e��&��;4�~�Ef�B� xPX� ,/O#3Sa�`јT���
��Ї�f>�9���ч����>~�͈>��M�`'m�F ���Z.X��Q\�"iI_쎓H�Jjcc�]�R�htHjS�&�?�h����� �g�ʵ���a�Cj�M����Σ���J���Ӓr4�9H�;��c5|w�Ɩ�wQ.@J���Betz;WJ��]ػ�>?�*���#Fn!z6�N��e���B89���&�~!i��"I������L�z��v�<T!�T�,,�K�l�Ŋ�K�K��w�o��� ���}�;”i�$(��C��/5ˇWJ�A^�qv�j2�����Z%��I���7�� ��YJO@�{d���^yut�8|$�ke�`�e�{]�L�>�{�ӻ��m1y�|CP�]�V����DP ����1�o��~�Ϗ���ѯ�C=����w^ y��e�/�����mѧ��/�_nM���5J��BO�ӗ�]���~_��W�����궁�7ݝ��#�{������= �jHIEND�B`�
�PNG

IHDR22?��gAMA�� �a
AiCCPICC ProfileH ��wTS��Ͻ7��" %�z �;HQ�I�P��&vDF)VdT�G�"cE ��b� �P��QDE�݌k �5�ޚ��Y�����g�}׺P���tX�4�X���\���X��ffG�D���=���HƳ��.�d��,�P&s���"7C$
E�6<~&��S��2����)2�12� ��"�įl���+�ɘ�&�Y��4���Pޚ%ᣌ�\�%�g�|e�TI���(����L0�_��&�l�2E����9�r��9h�x�g��Ib�טi���f��S�b1+��M�xL��� �0��o�E%Ym�h����Y��h����~S�=�z�U�&�ϞA��Y�l�/��$Z����U�m@��O� ��ޜ��l^��� ' ���ls�k.+�7���oʿ�9�����V;�?�#I3eE妧�KD�� ��d�����9i���,�����UQ� ��h��<�X�.d
���6'~�khu_}�9P�I�o=C#$n?z}�[1
Ⱦ�h���s�2z��� \�n�LA"S�� �dr%�,�߄l��t�
4�.0,` �3p� ��H�.Hi@�A>�
A1�v�jpԁz�N�6p\W� p �G@
��K0ށi���A����B�ZyCAP8�C���@��&�*���CP=�#t�]���� 4�}���a ���ٰ;G���Dx����J�>����,�_“@��FX�DB�X$!k�"��E�����H�q���a���Y��bVa�bJ0՘c�VL�6f3����bձ�X'�?v 6��-�V`�`[����a�;���p~�\2n5��׌���� �&�x�*���s�b|!�
ߏƿ'� Zk�!� $l$T����4Q��Ot"�y�\b)���A�I&N�I�$R$)���TIj"]&=&�!��:dGrY@^O�$� _%�?P�(&OJEB�N9J�@y@yC�R �n�X����ZO�D}J}/G�3���ɭ���k��{%O�חw�_.�'_!J����Q�@�S���V�F��=�IE���b�b�b�b��5�Q%�����O�@��%�!BӥyҸ�M�:�e�0G7��ӓ����� e%e[�(����R�0`�3R��������4�����6�i^��)��*n*|�"�f����LUo�՝�m�O�0j&jaj�j��.��ϧ�w�ϝ_4����갺�z��j���=���U�4�5�n�ɚ��4ǴhZ �Z�Z�^0����Tf%��9����-�>�ݫ=�c��Xg�N��]�.[7A�\�SwBOK/X/_�Q�>Q�����G�[��� �`�A�������a�a��c#����*�Z�;�8c�q��>�[&���I�I��MS���T`�ϴ� k�h&4�5�Ǣ��YY�F֠9�<�|�y��+ =�X���_,�,S-�,Y)YXm�����Ěk]c}džj�c�Φ�浭�-�v��};�]���N����"�&�1=�x����tv(��}�������'{'��I�ߝY�)� Σ ��-r�q�r�.d.�_xp��Uە�Z���M׍�v�m���=����+K�G�ǔ���� ^���W�W����b�j�>:>�>�>�v��}/�a��v���������O8� �
�FV> 2 u�����/�_$\�B�Cv�< 5 ]�s.,4�&�y�Ux~xw-bEDCĻH����G��KwF�G�E�GME{E�EK�X,Y��F�Z� �={$vr����K����
��.3\����r���Ϯ�_�Yq*���©�L��_�w�ד������+��]�e�������D��]�cI�II�OA��u�_�䩔���)3�ѩ�i�����B%a��+]3='�/�4�0C��i��U�@ёL(sYf����L�H�$�%�Y �j��gGe��Q�����n�����~5f5wug�v����5�k��֮\۹Nw]������m mH���Fˍe�n���Q�Q��`h����B�BQ�-�[l�ll��f��jۗ"^��b���O%ܒ��Y}W���������w�vw����X�bY^�Ю�]�����W�Va[q`i�d��2���J�jGէ������{�����׿�m���>���Pk�Am�a�����꺿g_D�H��G�G��u�;��7�7�6�Ʊ�q�o���C{��P3���8!9����� <�y�}��'�����Z�Z���։��6i{L{��ӝ�-?��|������gKϑ���9�w~�Bƅ��:Wt>���ҝ����ˁ��^�r�۽��U��g�9];}�}��������_�~i��m��p���㭎�}��]�/���}������.�{�^�=�}����^?�z8�h�c��'
O*��?�����f�����`ϳ�g���C/����O�ϩ�+F�F�G�Gό���z����ˌ��ㅿ)����ѫ�~w��gb���k��?Jި�9���m�d���wi獵�ޫ�?�����c�Ǒ��O�O���?w| ��x&mf������2:Y~ pHYs  �� �IDATh�YitT�~fOf2��}���$V 1A�J�R��ŅS�H���(VO�jQ�`�VK˾A K�Lv2 I&3�}�}��^Nڣu&��3�f�[����;"��C�=��SS"L���G��3" �H$�_�~���� "���A455 1�f3l6��19��1&�0M8p$�7^���۷������ȓ�F$AN���t����;�����/���� H)�����x<ذ~=���`����Aa$@�^���q�t-�U��v�{�Y��XfrN�III׉�`>�Q�A»?�/<�R+r�N3���[��@TN�?݃ n�
���k�"�6c�L�!�8uw.��g�M�����#J)DZ�(cӡ����u����?�T,��1���� � E�V�����;{�1`�@-�ij�� (�aE�xX�^�w�}0V��k��5�vcϤ�‹� "�i��$�?ލik�BXX�� �ib$$�`׾ϱ�p�2��T+AiD sxFfΜrܳ�.�߾�^���N,�>�ۧ����/"N����K�F�j��FF�a��r�2ZZ��H$�����/kqrY �1�j�;xx�2>(�*G.���hD8]�F�i(''�'aw{q��dL�C�q %%�_2� :�$ؕ��@��[uu5.64v��}K�F�\1Sn*^6F��7���t�F��^���4�Z���ps����Ln����6��744ğK���6-B1,2%6"""�mj�S���|�?�Z�y�z#��巰��;a�X��gJ��?�[0�)M2!n���p}����Cܝ��<�{�b���;+�_�^�͢Ϛ4�\K{����A�ȽF�)(a>�뽆��mE��Zl�N��u"�� 7L�ԅP�� 7\�u�!��-Sgp��Wp�T-|V �Zz?�J�����e�@FPᷟ
���_�K��E|�M�E�J������y��q��D,�\.���@۱Vd�J�YSB.hp��]���‰ױ3s �L@D��;;�����i��{�8�z,�8-(ΌGL���]X��� ���$��R��P��l��+=HN�B]M~�裨��V�\N���Att��x���� ����Z��܉�� YX6j���K��?P'�)"��Rxh>� &���
"$�Xġ��BM�n��Ñz4к��߄��-EbB·O�b���Z��]X�z Ew��R��x9����� Z%E�h�1��p�#��H[
E( �Da��X�|&�f������Ǜ��m������K���ë��1�[��J"�����0Y�n2�PpԿ�<^D(�Hub��x�F*�GdeR25� ��0p-��G��Nj����������M�����}����V����'HI-�����AI���a�R�k_���EI��H�{���(� ��:�X� �; �&;��gIC�L���PX\J~������L�o�0�L+�����Ρ��t��ȡ���ݘ��=�1o�V�;Q����F�F�7��·����g��/�r��j ������&�E1!6!�TL�a�l��n�,$j�D�9c� R0!)Cv'bT!�S��C2�l݌��f\!I��G3�ߛ�NA__�g� ��i�BN^6��HU�Q:. O���
�L�4��H� H#���P��/I�� �V�uMTS�!QR�ш��:�TJ�v��� 5����E�PHu�C��& ��`>��t�@>�H�`$�O����7���Q��fk[;�\�0�C�P9> ��!��?$>D����;�GOVCg4C��Vl�<���6hZ����VAvx ��o�����A�J��Ib,���U[p��!x ��/gg�`�����ǟ���70�������B�d:�r^3,RI�C�|O�fy�Jȇ�0 ���?��D�VFF��M��gڍH�AS����h�頏-���U�H������W�$�l����~i�&l���Y�^�CdH�R R!Ʈ��ʍ�4r|�Վ?��\��� ��a�9��A�n�ӳ���y�}[ ^D�z�Z2�߮��z}���;��)��Z�B�Չ�G�Źa�\�m��H�zL.����].� `�؈���p��3�n��So�m?/Vɓ9�2�Z_���%j�[-d�"�����!�w�+Dff�)�8�!?'4Nt�h�cjf$��d����K�"��<> TP��J���ʼn,���ffEB�gAYF8$������!��#��M��a���=kZjw=T�vyQdR7&��Id����l.m��e�|/\5S���F$�2"Q�eF�L�'�A��~3.��J�C�7���DD�ţ�� I3Q�Äx%��LX��FDJ�#��!�j,u�>����Z* �����D�c�IB��T �CC�m�'����Ɂ��Gx�q�‚�K��R��� Z]h�fAj��� �/@�o��Pw��Y�h��>������.F)��������lPE�Kyt (j������ �fτ�d<�ɥ������Í�H�Y�a�C�h�"�L�D��\*���#s ��U�>,���W^�CO�b��+�,B���^2}�T�@9e���1�8�i����ݔLZ�7/�HE����Kݘ��0Nha�)�@L/��r,��^
(����0)��(�J�f�Z4�O���Id��AI~Q�e����09UM���z���K�Q��:w ��ystp2�5kݵ��qI���~�(��MK8�u�,��utb���0jb:�NB��|Ë��u8鞙 ,i$�A*��^��j�A߅�[�c���y��vU�b  F&+#�-�� R��a��I�L�rC)��pe���P9TR3��)jqpP���­��Ͼ�S))96-�<f^�L�� ��v@����!3Z(Z��'X����("�%ܘ�G+=�Y����!+\��>ąK����dr�p5a�!� V�^4[�F?��PR�z���&U�r�5|T� �����s�2���B% ^X�k�����6-���$H�W�z�K([La�0y�<@K�Ӥ�W�����x�����D38��(����.Y����~-�s��?��s�@��
yH�2_8N*.��Y3�!����8r� �X��I�*�v�\d��]�kx���G����I~]9��:�R�W}/���4v��T��p��χ��o�_�NX�uL�r�57��m t�ԥ�k���1IEND�B`�
�PNG

IHDR22?��gAMA�� �a
AiCCPICC ProfileH ��wTS��Ͻ7��" %�z �;HQ�I�P��&vDF)VdT�G�"cE ��b� �P��QDE�݌k �5�ޚ��Y�����g�}׺P���tX�4�X���\���X��ffG�D���=���HƳ��.�d��,�P&s���"7C$
E�6<~&��S��2����)2�12� ��"�įl���+�ɘ�&�Y��4���Pޚ%ᣌ�\�%�g�|e�TI���(����L0�_��&�l�2E����9�r��9h�x�g��Ib�טi���f��S�b1+��M�xL��� �0��o�E%Ym�h����Y��h����~S�=�z�U�&�ϞA��Y�l�/��$Z����U�m@��O� ��ޜ��l^��� ' ���ls�k.+�7���oʿ�9�����V;�?�#I3eE妧�KD�� ��d�����9i���,�����UQ� ��h��<�X�.d
���6'~�khu_}�9P�I�o=C#$n?z}�[1
Ⱦ�h���s�2z��� \�n�LA"S�� �dr%�,�߄l��t�
4�.0,` �3p� ��H�.Hi@�A>�
A1�v�jpԁz�N�6p\W� p �G@
��K0ށi���A����B�ZyCAP8�C���@��&�*���CP=�#t�]���� 4�}���a ���ٰ;G���Dx����J�>����,�_“@��FX�DB�X$!k�"��E�����H�q���a���Y��bVa�bJ0՘c�VL�6f3����bձ�X'�?v 6��-�V`�`[����a�;���p~�\2n5��׌���� �&�x�*���s�b|!�
ߏƿ'� Zk�!� $l$T����4Q��Ot"�y�\b)���A�I&N�I�$R$)���TIj"]&=&�!��:dGrY@^O�$� _%�?P�(&OJEB�N9J�@y@yC�R �n�X����ZO�D}J}/G�3���ɭ���k��{%O�חw�_.�'_!J����Q�@�S���V�F��=�IE���b�b�b�b��5�Q%�����O�@��%�!BӥyҸ�M�:�e�0G7��ӓ����� e%e[�(����R�0`�3R��������4�����6�i^��)��*n*|�"�f����LUo�՝�m�O�0j&jaj�j��.��ϧ�w�ϝ_4����갺�z��j���=���U�4�5�n�ɚ��4ǴhZ �Z�Z�^0����Tf%��9����-�>�ݫ=�c��Xg�N��]�.[7A�\�SwBOK/X/_�Q�>Q�����G�[��� �`�A�������a�a��c#����*�Z�;�8c�q��>�[&���I�I��MS���T`�ϴ� k�h&4�5�Ǣ��YY�F֠9�<�|�y��+ =�X���_,�,S-�,Y)YXm�����Ěk]c}džj�c�Φ�浭�-�v��};�]���N����"�&�1=�x����tv(��}�������'{'��I�ߝY�)� Σ ��-r�q�r�.d.�_xp��Uە�Z���M׍�v�m���=����+K�G�ǔ���� ^���W�W����b�j�>:>�>�>�v��}/�a��v���������O8� �
�FV> 2 u�����/�_$\�B�Cv�< 5 ]�s.,4�&�y�Ux~xw-bEDCĻH����G��KwF�G�E�GME{E�EK�X,Y��F�Z� �={$vr����K����
��.3\����r���Ϯ�_�Yq*���©�L��_�w�ד������+��]�e�������D��]�cI�II�OA��u�_�䩔���)3�ѩ�i�����B%a��+]3='�/�4�0C��i��U�@ёL(sYf����L�H�$�%�Y �j��gGe��Q�����n�����~5f5wug�v����5�k��֮\۹Nw]������m mH���Fˍe�n���Q�Q��`h����B�BQ�-�[l�ll��f��jۗ"^��b���O%ܒ��Y}W���������w�vw����X�bY^�Ю�]�����W�Va[q`i�d��2���J�jGէ������{�����׿�m���>���Pk�Am�a�����꺿g_D�H��G�G��u�;��7�7�6�Ʊ�q�o���C{��P3���8!9����� <�y�}��'�����Z�Z���։��6i{L{��ӝ�-?��|������gKϑ���9�w~�Bƅ��:Wt>���ҝ����ˁ��^�r�۽��U��g�9];}�}��������_�~i��m��p���㭎�}��]�/���}������.�{�^�=�}����^?�z8�h�c��'
O*��?�����f�����`ϳ�g���C/����O�ϩ�+F�F�G�Gό���z����ˌ��ㅿ)����ѫ�~w��gb���k��?Jި�9���m�d���wi獵�ޫ�?�����c�Ǒ��O�O���?w| ��x&mf������2:Y~ pHYs  ��:IDATh�Y t��~�������E�Y$a���j-����E�tO{f:N���Vj;-�sf�#�㨃����tJ�,V
$$ [����n��2��şC�$=����;������ϻ<��}ѥ��W���π���g��"c��1w-a�O��� ��L&����1�`��-�z=|>:;;�s"�3��E@4���5�k ��ގp8�U>�@ �͛7�ȑ#*J�1r�����5M`ѺbM(����xt�Z�=~쮩A����kx�=%��g�j�xM��O��W�5�9Z��QVv �
��H<FZ^yO��ڜI��[`~�W��������shnnFFFfǗ-ݪ�%G�tjDE��T�<���Q���8���γ��׋W6n��m?��. #k
������8�X�'������w-C �N���{��Ca~�����b0���M���*�/� C*����`��P� �����N[‘�:�u�1�щ���4��T����I� x�A���cݣk�f�mT@ε�����D�# w�g���N�S&��%�8�I��a@8DcG�fJ\���h��0�i�^�B]��z̛��͇�1��]�Q��="���G#��n7��l9ڥ�7-ۈ ?��Gy��6�r^:J J`6��}�8��� c�Ӏ2�gz���顋�W"�b�9i�d�
B��X���_F��fk&&8�ʍ.�y�Qۍ�o����=�`] s� ��Zԕ>��M����OQw�<<��$�sm�ud��4��ë�Ȱ �Zx�����">�j��Ws,��b��?7��-o`�=+�~�*+𓯼������#�EA���x|d�����wT`0��n���dB�#���a�M&��0�]�"yB&سw/��7`��e��}0� �#���Y��꾕8��>�~���<��Oa��mJs3��P�^��&J��q���X�d1�O��P�����}�Ѵ�n>��$�S--x�����"8LQ�,G��������� ��'ׯ�5�~|?Z��`�͋�`�B����?��5e@�/#��JƑ���� �gV>��Ks������d��'�}@C,��7�׬�+T�X� 9�cc� Z/zp� W�{�F�f��3���x��c���ہ�́��n�䦟C�_��~�0bI��._� ���>b���/T��rٮtɵ.^+�������&��:}�LX� ���6A)6ĺjZ�l��݊ �o��M���E�/�ڮ��7 �D�ʑX�PQf2�w��k�P��Z��f��~8.&է�����~��7���W�ע��GɊ*x=�J��o��+O8#i6
��;�߸�͙�`�p߾a*����2�J%H��q�J��W��4#��������]=��v�!�|�ٗ_y �<�6���U$T
0�����b�B�Ǡ��jb�bУ�+��8�U!��Q������8Gf��*�m����("��"��p�'��H�5�E��R�t'&��¦M�6M���cNzͥ^�Wxk�}��l��� ��=D�2n��{ٲ��j��!��`4 3���`j��,�"P~KP 1T W�EI ���
�w����1L�π�b�{0��'�F �P��5�֢�U�4MN��'~[��,9~q�r��R�_���\� 6?|ۦ0���JsYV��!���Bia|�s��H���"b-ir�[���no�V�1�c;�a�Ɋ�J>N�>JU��|c�묤?�*ʵv��o�)�5����g0� ��ȁ��zto�-��UH&Ds�t�k ���D_˱���N��x/Z� �Ԭ�b��ڗC��h����oqcye!cJ�2tO
�O��{B|���� ������S�q�����J�otxP�g~����Q]Q��h4R������ 0�.y���aq���A%��A�M b����q�Ջ�?���o�J~Z�o0���V�V^�pL��R.��|��(��>u���3S �o@���W�}gwpv'�Y�͛?����1�������ְP�ǻ|p�Q1>S���;�`7�&A�%���27���尨z*ɸ����[K�PFa# Z����j� �>b��L&�$�z�JQ��z���+w�R�Ӱb�t���4̈́)�j�t*�+>��$��(����0XK9q�/������n��)e!#�0���� ��$h�ê �o� �P 8�G��l���-f5q��9 ��ry@6��Գ��qM����pH���yW���faI=}�lDz��7�@-sB�[a�Fi�
a��?3���y�(�RHa2e�(��Jrx���{(�N1��<�[� ���E�8;��%{��r��[�%܇NƂ�T�v�݇�k�3[Vp *mi9�b0�Ƴ��zx)E��ڽ�]�Ed�ń�Әܚz)@؀S�A�m���{"��Q��{cM��=�ʤ�v�����Dz%i�‰�Čۖa���>$��}T+ċn7V,�s�� �>-�|�0i�4�n�� ��s���;G�7��f!+̈́��A4t�Ib��1�Vs��MF�
]S� \���;N`޹�FA��T�+3M��M���2-��a������ j/�.���57�Rҡ��<��o�F� vg���'�V2���_o�{D�dF.Yʌ� T�������v1�0� ���Pe,yA�:K ���v �OS�T��% 3ۈ� �s�h����ǰ�ᇱ�'�t8�W!��E4�^��������7�lm�-Kn���b���aڴ�8}��+?W��n�!��r�w����]I�G�M�0���&�$LES���I��ivc�5���b�R��"S���<�a�6��'Xb��L r#hŏ�Lܵt)�X�Dѝ�l���k��S�D��,�(�3��97$;�[Iy"�-�������$[S~�:H���zY�31);�8+���
���I��>~�鄣e�P���B4�v����e�y�4���q��G{u8D��؋&fm���"�� ֑�X:�5�����1��э���EB%���T'�y'0�z�&߰�C<�Aw�pD�lR���)mս_F{g�j��u���"\7���8��eLȳ��BCVw� �:Iv���'ߞ�R v�c��!��! ��Ū-oa�-7����U��N���PG���~����OL8���w��X�&���Vn��#�Iu �lH��o��@f,�t)j��8/ӆ ���G��#�����x2�H���E.����a�׀TFHs���3 ͭ�Lq�a� �f��>�N��Ն����&e��ȁf�e�Z_�9�$�-.���Q�K�b)3" 2@Ӓ��C���W`0�a"w����P�"���wr�Ť�x��~��ũ �N��<���}�������N�iF�F d^U��<��W��L<��t��/��b̛=�@a.w�9طc/��3C���p~�c�ob\!�Х� F#� ��,�p��y��Cu)O�Q�N*a��vf)ƓqB������Ŋ�)z�΋� ��P4Υ}~T�Q��40��u �ص4�X@r|��{���n$}�1ý��"Ý���w)�Z��<�+͎��� R؀�ſZIEND�B`�
�PNG

IHDR22?��gAMA�� �a
AiCCPICC ProfileH ��wTS��Ͻ7��" %�z �;HQ�I�P��&vDF)VdT�G�"cE ��b� �P��QDE�݌k �5�ޚ��Y�����g�}׺P���tX�4�X���\���X��ffG�D���=���HƳ��.�d��,�P&s���"7C$
E�6<~&��S��2����)2�12� ��"�įl���+�ɘ�&�Y��4���Pޚ%ᣌ�\�%�g�|e�TI���(����L0�_��&�l�2E����9�r��9h�x�g��Ib�טi���f��S�b1+��M�xL��� �0��o�E%Ym�h����Y��h����~S�=�z�U�&�ϞA��Y�l�/��$Z����U�m@��O� ��ޜ��l^��� ' ���ls�k.+�7���oʿ�9�����V;�?�#I3eE妧�KD�� ��d�����9i���,�����UQ� ��h��<�X�.d
���6'~�khu_}�9P�I�o=C#$n?z}�[1
Ⱦ�h���s�2z��� \�n�LA"S�� �dr%�,�߄l��t�
4�.0,` �3p� ��H�.Hi@�A>�
A1�v�jpԁz�N�6p\W� p �G@
��K0ށi���A����B�ZyCAP8�C���@��&�*���CP=�#t�]���� 4�}���a ���ٰ;G���Dx����J�>����,�_“@��FX�DB�X$!k�"��E�����H�q���a���Y��bVa�bJ0՘c�VL�6f3����bձ�X'�?v 6��-�V`�`[����a�;���p~�\2n5��׌���� �&�x�*���s�b|!�
ߏƿ'� Zk�!� $l$T����4Q��Ot"�y�\b)���A�I&N�I�$R$)���TIj"]&=&�!��:dGrY@^O�$� _%�?P�(&OJEB�N9J�@y@yC�R �n�X����ZO�D}J}/G�3���ɭ���k��{%O�חw�_.�'_!J����Q�@�S���V�F��=�IE���b�b�b�b��5�Q%�����O�@��%�!BӥyҸ�M�:�e�0G7��ӓ����� e%e[�(����R�0`�3R��������4�����6�i^��)��*n*|�"�f����LUo�՝�m�O�0j&jaj�j��.��ϧ�w�ϝ_4����갺�z��j���=���U�4�5�n�ɚ��4ǴhZ �Z�Z�^0����Tf%��9����-�>�ݫ=�c��Xg�N��]�.[7A�\�SwBOK/X/_�Q�>Q�����G�[��� �`�A�������a�a��c#����*�Z�;�8c�q��>�[&���I�I��MS���T`�ϴ� k�h&4�5�Ǣ��YY�F֠9�<�|�y��+ =�X���_,�,S-�,Y)YXm�����Ěk]c}džj�c�Φ�浭�-�v��};�]���N����"�&�1=�x����tv(��}�������'{'��I�ߝY�)� Σ ��-r�q�r�.d.�_xp��Uە�Z���M׍�v�m���=����+K�G�ǔ���� ^���W�W����b�j�>:>�>�>�v��}/�a��v���������O8� �
�FV> 2 u�����/�_$\�B�Cv�< 5 ]�s.,4�&�y�Ux~xw-bEDCĻH����G��KwF�G�E�GME{E�EK�X,Y��F�Z� �={$vr����K����
��.3\����r���Ϯ�_�Yq*���©�L��_�w�ד������+��]�e�������D��]�cI�II�OA��u�_�䩔���)3�ѩ�i�����B%a��+]3='�/�4�0C��i��U�@ёL(sYf����L�H�$�%�Y �j��gGe��Q�����n�����~5f5wug�v����5�k��֮\۹Nw]������m mH���Fˍe�n���Q�Q��`h����B�BQ�-�[l�ll��f��jۗ"^��b���O%ܒ��Y}W���������w�vw����X�bY^�Ю�]�����W�Va[q`i�d��2���J�jGէ������{�����׿�m���>���Pk�Am�a�����꺿g_D�H��G�G��u�;��7�7�6�Ʊ�q�o���C{��P3���8!9����� <�y�}��'�����Z�Z���։��6i{L{��ӝ�-?��|������gKϑ���9�w~�Bƅ��:Wt>���ҝ����ˁ��^�r�۽��U��g�9];}�}��������_�~i��m��p���㭎�}��]�/���}������.�{�^�=�}����^?�z8�h�c��'
O*��?�����f�����`ϳ�g���C/����O�ϩ�+F�F�G�Gό���z����ˌ��ㅿ)����ѫ�~w��gb���k��?Jި�9���m�d���wi獵�ޫ�?�����c�Ǒ��O�O���?w| ��x&mf������2:Y~ pHYs  ���IDATh�Y{pT�y�����V�B �)X ��` Àc�8���m�iM��?��Ɔ�2Nݴԓi�q� 5�i�$<L\71l,�x��荤�������אַ,��W���xrF��������ϑ.Ά/@�0(_| �-�V<�^��t:h�W���Lq�zcy�����&�9{O>�!�K�~3���Y[O�;~;v�B0T|��_��X,��W�^������;�P0��޽񮮮ѱ�uG[[���k�ū�����ݧx��������K1�� zj���;�œxw����#G��Ǐ���� s>��X8V�D�k�Y���x��W���m#����E5&�ް�i�����������y(�[ ��{~����HMESs3J�g��7�T�y�a7r����v�G�?�� ��-T�N�xٙ����Z#��W_U���Q���Λؤ���D�Co���}�@����/���;߆��[�?�>��d�m�o)��{��o��-���0��(嚯��N�[��ϙ?o9���^Ţ�ךN��=Hw���š�;P�l�Z/���Z<�� j����P���ix��l{�x�ѯk�G��^������h����U(����HGk�Cf�����C�b�tXMF��^3Ν?���j=m *�&Z���#����͛�T+|~2���b#t3\��X�l���"�ᡪ�I�kD?�D"Ŵ�`պ��>���}�6�4�8����qd����aL��EK�����۲��{��լHF5��V�:�9s�/�C��a�� �# }TM�_=��MM��Ս�6�KX�a#�]�z�F�-ř������Hs:�j�j���"��F��B_;|�0��ߏ/�iE3�� ,m_gPB Lf��RR�稤�-��s�q�bg�6
d� ;B���J�b�B>����5�t�LDr!�-޾F�7Fp~ ��쯴q;� 0H����v��0� f���&���������l��?p��7mڄ��v� ?_����궵�὚�KG��>�����Y�L�e�Tl3xeS�X,vx�Q���nfL���%���fC�����,���aDB��>x�� �&X�$^ ������ܾ˗/����a�X>BƎ�Q��V�}}}p �����~�������H����A�Mˆ/����� ��R�R�K�YM4�zQsu�)fĩ��) ��l�ͤG^A>�g��@���#;+�yy�Z� ���m�%;��2A�H=����1���y�65�Z��s� HsH���'&�Ba�",)Ȕ4 f�6�A��}�b��;�V?��E����(�6M���&aZx��{��%$���D��~v�؁�e7J�fz`N� �1�x���:�� �U�)��ӗ�F3��0�.�Д��%��R�D �8<���e����mܠ��K���4�D�k?��3�� ��X�@(ċ� ��@[m=\�6��;��ҥK�܋���0<،ӵa,ټ��Lx���X60:fsn���JMZ yp�7M�ځC���������hT���N���vl_[OԌM)�f��l�@cn�3[��3ա����~���*��^��/�Ǭ��}m}������ATg�����m��lΜ�����oHz���X��7��4yl�_��oހ��!�~�f̏�������L]W[�Uw-�K����o����X���Ŋ/��'w��wm0Y z���Ƌo5��i�$�D�l������p�-) bV����n ���e���$�4���C�b�<�.U/edf�"s�E��y/��D3�О���E�J�
�b�����H|��$ZR@t����o��~ gE�H�V��oNE6k�Ç_SC�X��:}�-װ�o�_?���>u
K/AC���~��������1(T��Į�u���Qt4KH��{�@D�A��C���m+��ac�D| �Ң�r���&��e+�Z�Q�p��6���2D��'��;� ����c�����i�0ا@�0�,�>��Ř�N��Ip=�n !�5)g��+� �����?�ĩ�N�Y���b�(ҳ[��\��� ��I�xCܾ 3>�p.�������4����Y�Y ��2��J ����9�����o���A%c\7T� l�kI���Ud�33
R�؆�a�2CG@��1��a-��U�V�X�xX��~Tu��:�HT�>�0�x�e��._�����B�\�>����1����h��?�%eZ��OԜ�Fa���v��'"2ma*���v!(e��%�аwP]*+r���z<!��LY� ft���
������IR@�"�E0�13m#LSJ�"��M�e���H�-if.}�\�h~�� c��J1%�^1c~�*b"-i ��f�|(�w�D3wq,��l ��Ep�Ѡ�y}Hf�8yw�����`j��4M�6H~�l���D�"��Gϴ�p�mHi�@q @�|��A��m�
��~�|�CiH�I�zCE�>�CI� N�Qi�L�M��41 #���T;���h��"'j{���˫L�H��<8,L��#̊�gXP��C�P.�\�0qGY�aS�}�<��Q�hI�J�K��D ���8�l���>b��l�l¥�a �Ld;�m_W�4�V:��c\�Z]~x�Q��|j�RLm����w8���
/\��3J -b~��¯FdFI1>�C���L��,B//L���,��:O0��N�)������3q���弙�LuRSt���/n��.�;�\�,n��% $)�h�#�Jgb��������D�0���I� �y���I��q�ۋJ�m0�Nw�4%т�nS��τR�(L3��|�&x�`}�?d~�b��i�EA��-��.$��.;��w�ğ���3>@��(ߐ1�zN�����ܫ�#�m&�d�a1 �a�qD�p�>��Ď�@+\�w���CHw��@��F�"�I��xh�婧qa�?!gi��Fn*O>�5r��l�E?s��LJ�!�4E��f� ȶ�Ut�D(yD��3={N��wG�šի&B��4�i�j[��[?\���!ƈ�iV���4����0Ť�*���ʌ仛�� �.CZV!����x��:��Ԅۄ��8�V�[}�4�\�_�������e���MJCb�&&C�!������f�-�@��f6Owf����X���x����H��و�'�f�@�����Y׳O<�� vF����H\��l:�D'��^�� �I�̄)��Yh��Z\���O�/�M*j�� }���]w.Ã�=����0�0[�E!CoŔ4��!?K{�2�1��!��L�&��s �������y$n���mR@4շqo��~�?��Dw� ��X��� �:��D=�*?Iwf�4���8�N�s�0Ƚ���dd���0�B�3"D��;PS�Gv z�6��~��Ȁ=5��& 6w�b���{mh���D
�S�2��=zHύ����_���P|��&�8q�K͹�����M����͛�m�q�w�}�׍;F����q��y �f)>)g�q)e�A���֩�6�f��Q�OD�_2{�qG�������:�_�; �p.==es樭�Нl�4YPs��e��d3��h��ۧ"��Q�ٛ�j�����F�ϟH� }��&~?o�&C�@&#��s���*G��<P�IEND�B`�
�PNG

IHDR22?��gAMA�� �a
AiCCPICC ProfileH ��wTS��Ͻ7��" %�z �;HQ�I�P��&vDF)VdT�G�"cE ��b� �P��QDE�݌k �5�ޚ��Y�����g�}׺P���tX�4�X���\���X��ffG�D���=���HƳ��.�d��,�P&s���"7C$
E�6<~&��S��2����)2�12� ��"�įl���+�ɘ�&�Y��4���Pޚ%ᣌ�\�%�g�|e�TI���(����L0�_��&�l�2E����9�r��9h�x�g��Ib�טi���f��S�b1+��M�xL��� �0��o�E%Ym�h����Y��h����~S�=�z�U�&�ϞA��Y�l�/��$Z����U�m@��O� ��ޜ��l^��� ' ���ls�k.+�7���oʿ�9�����V;�?�#I3eE妧�KD�� ��d�����9i���,�����UQ� ��h��<�X�.d
���6'~�khu_}�9P�I�o=C#$n?z}�[1
Ⱦ�h���s�2z��� \�n�LA"S�� �dr%�,�߄l��t�
4�.0,` �3p� ��H�.Hi@�A>�
A1�v�jpԁz�N�6p\W� p �G@
��K0ށi���A����B�ZyCAP8�C���@��&�*���CP=�#t�]���� 4�}���a ���ٰ;G���Dx����J�>����,�_“@��FX�DB�X$!k�"��E�����H�q���a���Y��bVa�bJ0՘c�VL�6f3����bձ�X'�?v 6��-�V`�`[����a�;���p~�\2n5��׌���� �&�x�*���s�b|!�
ߏƿ'� Zk�!� $l$T����4Q��Ot"�y�\b)���A�I&N�I�$R$)���TIj"]&=&�!��:dGrY@^O�$� _%�?P�(&OJEB�N9J�@y@yC�R �n�X����ZO�D}J}/G�3���ɭ���k��{%O�חw�_.�'_!J����Q�@�S���V�F��=�IE���b�b�b�b��5�Q%�����O�@��%�!BӥyҸ�M�:�e�0G7��ӓ����� e%e[�(����R�0`�3R��������4�����6�i^��)��*n*|�"�f����LUo�՝�m�O�0j&jaj�j��.��ϧ�w�ϝ_4����갺�z��j���=���U�4�5�n�ɚ��4ǴhZ �Z�Z�^0����Tf%��9����-�>�ݫ=�c��Xg�N��]�.[7A�\�SwBOK/X/_�Q�>Q�����G�[��� �`�A�������a�a��c#����*�Z�;�8c�q��>�[&���I�I��MS���T`�ϴ� k�h&4�5�Ǣ��YY�F֠9�<�|�y��+ =�X���_,�,S-�,Y)YXm�����Ěk]c}džj�c�Φ�浭�-�v��};�]���N����"�&�1=�x����tv(��}�������'{'��I�ߝY�)� Σ ��-r�q�r�.d.�_xp��Uە�Z���M׍�v�m���=����+K�G�ǔ���� ^���W�W����b�j�>:>�>�>�v��}/�a��v���������O8� �
�FV> 2 u�����/�_$\�B�Cv�< 5 ]�s.,4�&�y�Ux~xw-bEDCĻH����G��KwF�G�E�GME{E�EK�X,Y��F�Z� �={$vr����K����
��.3\����r���Ϯ�_�Yq*���©�L��_�w�ד������+��]�e�������D��]�cI�II�OA��u�_�䩔���)3�ѩ�i�����B%a��+]3='�/�4�0C��i��U�@ёL(sYf����L�H�$�%�Y �j��gGe��Q�����n�����~5f5wug�v����5�k��֮\۹Nw]������m mH���Fˍe�n���Q�Q��`h����B�BQ�-�[l�ll��f��jۗ"^��b���O%ܒ��Y}W���������w�vw����X�bY^�Ю�]�����W�Va[q`i�d��2���J�jGէ������{�����׿�m���>���Pk�Am�a�����꺿g_D�H��G�G��u�;��7�7�6�Ʊ�q�o���C{��P3���8!9����� <�y�}��'�����Z�Z���։��6i{L{��ӝ�-?��|������gKϑ���9�w~�Bƅ��:Wt>���ҝ����ˁ��^�r�۽��U��g�9];}�}��������_�~i��m��p���㭎�}��]�/���}������.�{�^�=�}����^?�z8�h�c��'
O*��?�����f�����`ϳ�g���C/����O�ϩ�+F�F�G�Gό���z����ˌ��ㅿ)����ѫ�~w��gb���k��?Jި�9���m�d���wi獵�ޫ�?�����c�Ǒ��O�O���?w| ��x&mf������2:Y~ pHYs  �� :IDATh�Y p��~���fws�;!"��F.A�A,uPQ�P;Z�N�N�V�S)c,G!���@ $!!�"H�l�d7���}��O6�&�3|3����~���߿
���|0 uOj�����*
���n����̼Rٹr�v��k��fN`��Q\R�+Wr�$X�6hu: yt0||� �C'�{zRKD6�n}}N%�A��K��V�G�o_��j������5��G�'FA��7�_Oj羁0����)HJ:�1#��mP��� Ue��!p�~ @dTT7$�^�O��0m� ����p��]���]"Sr�ȷ�v@i/G���Ñ#�p��'OEpp$29K����y�^�9�>��j7|�c�fw,^�*�C���l6[��6H����2��K�gL��A�X���;�Ji���� ���I�$�V"�t���꿮&�v��i�}���g�ܳ� ���|.�$�GJ�n��d�異���������\��K����J����eR"�ٹsg�^��z�=�&��]�����}�J��v={w�”���H? �"��NjhD�7��7�^ٗ����1$�^G�?��-�����!*���� o�]�'����=}��8z�(n���q��!�L����<��Ό$�Jű� ����!��5�c�I6(�:�*��RS�
���Ō�g h; �^`yÝ;w�g�^�M������^CZJ��{A���\�y,xc!"#�tBew�J�~�z �u�'�������76
���4Z�ЪUaG��?cϑ+���^�5���:6�~�R]]�>x_~�3�������{�&�C� .n�*dfے�dz.���k������@�� �FA����R�P!��j�
�B�b<�^�njU�"[�i�Z�Z�HKKǍ�����`���K��%��8C����3DJ�|��=,[�1�J�*(8l����VG��mT (J��y#%�  B�|ş����05L�S ���+;��y_^�-l���Dc�f��u^�>�7~�&�,.T��ҷߤ-,���i����If�����}�\�@0!o�ڱm˗xk�d�9!ZH��'��o��
��3��8~� �"��F+ �����v�wD�AsK:}����c���TD�3S� ��>֤�ԄYq����T�� �X��Z; �u6Ơ9D����a�����,���T�9"%W��*L�ũ�����D&�s��0<Dtb�e&dm�ⰳ����Z�Vc��U�bXT_�d���6 �Uk��]-�h�����o�DD����p�J�J��&
�uu���AW�Ι.Ӓl��Z7����ln�Ʀ��6%����Z>�y���tltXvf*f����jdg�@iY�M���/Cz�F�44��߸h�5�q�Ȅ��;(�뀿�B��`d�`ҊLյ� �&�i��������Q�F0�!Ue�H/��IR͌�����:
mL��:���N8=E'/�Z-jJ��z��!��4#��2:1¥F\���6c���U��v>b D��>�̼ ��������hv�=��_Ja���Z�kB�Ӡ��[v���A��~4ޤM%i��ȡ�#���Y'v���؆����b�p�{�~�w<�߄�
7
E�PMũ��֓�e81w��E���$��7��^��ێ�1Cp�V)ro�@c��t��==�D�V#������ƭ�!�$:pd�CR3��,
�Cq�J��z�]�S9C���Փo�#�� )�0e�`� �t�F2��Fo2;
�|�|���N���FܼS�2�=C �˓�v>1t��y�9} ğhyׯ�_��^/���'���!�LKE ��y�i$g�]^�� �"8Р�¸|�gDG��oXE+ust�Lc�#��̹���#�?�gO �׹= �ڪr
��ĸFH���.�~p�
�p����灛��SaH�$ t`Ye-BzyC�A]�������ٌbFFA�����RԕR5n���y��� �����:�b��A��Z�58aaf���g~;��X�]he֔���Xf��(�y��^�a��j�X1b`o �(4��ڳ�~�� �W@�aGX���&�U�6�(�5*�{|�(.y 1�-�`:74Q4s� ��j�@O��b��Q"9���4W{[f;�1�b�<��f�Z�(��ā�[z� ���Y��M��16? �����ܘa �^� 9ۄؘ1bZ�A^��@�OJ|s����J�F!ivSf���;���pfB��M��� ~3i��c+]��L}!A"b����n�61&x��y޲3b�1��@�A��f��#7^�����G�9^���������� ���e ��v���V�naJ2�b*�~<~�wl�{oLDdx�(�
�(�p�o����{y����i��G���~��'�a��/!<4X0N[h���I��'�2‡����a��1�t-�J�(�9|rb�蟇�O����31G���w���2�.B��xe� �^#��eKٹ]�`>� D�p(�O?9i��(,*$ƴp��y,9 ��T#1-���8���\�N��g_Y��H��L�o���� �z�
��M�b���#@��Hr$M� ��M[wAK!�L%�#������l��/`�R�G�����k3��P��!z�P�9�Z�j����س�{xUƓ��(Q6���+��lR��
2/j��7Rqi�^YS��������@��i^+��p�x����[�n���*K�X��Tn���*�
I.]�iN����x���
���4U`����2i�ΒvU�Q4��N� L�jd߾}�����ѣ��tL�U>l(�0��>xv�02�Hq[l"�Ⲧ�꫃?�#+��$�� ���NJq��e�qfc��� �L�aS),,DHH��NJJ
��O#00+���Z`�����<���a�����_x��ub�G�����p46�1g�xyy�d2�������.�B�9;��A��f|������������ć�`�+/��L4Xl �GEm�:=Ο�*xY�y< �?~&O���+W"55��H��[g� �d���۷K�����'�;v�~aa����w�u+�K�~2W�p�Di���Hs���5%%%Ҳe�$z�L��Y�U�VIyyyb������c��R�C�0��IK/�j��˗����9�'&%#/7���S�0i�D��ù���έf͢"�J!�I�f�����vw<??_:x� ��l+Q����9�Kk׮Zi^ЅN�j�%Fg�Z�%��1 ͂�9�p���}nm�j]_ �i]�]�ǁ����C~�d�������h���e�FI�IEND�B`�
�PNG

IHDR22?��gAMA�� �a
AiCCPICC ProfileH ��wTS��Ͻ7��" %�z �;HQ�I�P��&vDF)VdT�G�"cE ��b� �P��QDE�݌k �5�ޚ��Y�����g�}׺P���tX�4�X���\���X��ffG�D���=���HƳ��.�d��,�P&s���"7C$
E�6<~&��S��2����)2�12� ��"�įl���+�ɘ�&�Y��4���Pޚ%ᣌ�\�%�g�|e�TI���(����L0�_��&�l�2E����9�r��9h�x�g��Ib�טi���f��S�b1+��M�xL��� �0��o�E%Ym�h����Y��h����~S�=�z�U�&�ϞA��Y�l�/��$Z����U�m@��O� ��ޜ��l^��� ' ���ls�k.+�7���oʿ�9�����V;�?�#I3eE妧�KD�� ��d�����9i���,�����UQ� ��h��<�X�.d
���6'~�khu_}�9P�I�o=C#$n?z}�[1
Ⱦ�h���s�2z��� \�n�LA"S�� �dr%�,�߄l��t�
4�.0,` �3p� ��H�.Hi@�A>�
A1�v�jpԁz�N�6p\W� p �G@
��K0ށi���A����B�ZyCAP8�C���@��&�*���CP=�#t�]���� 4�}���a ���ٰ;G���Dx����J�>����,�_“@��FX�DB�X$!k�"��E�����H�q���a���Y��bVa�bJ0՘c�VL�6f3����bձ�X'�?v 6��-�V`�`[����a�;���p~�\2n5��׌���� �&�x�*���s�b|!�
ߏƿ'� Zk�!� $l$T����4Q��Ot"�y�\b)���A�I&N�I�$R$)���TIj"]&=&�!��:dGrY@^O�$� _%�?P�(&OJEB�N9J�@y@yC�R �n�X����ZO�D}J}/G�3���ɭ���k��{%O�חw�_.�'_!J����Q�@�S���V�F��=�IE���b�b�b�b��5�Q%�����O�@��%�!BӥyҸ�M�:�e�0G7��ӓ����� e%e[�(����R�0`�3R��������4�����6�i^��)��*n*|�"�f����LUo�՝�m�O�0j&jaj�j��.��ϧ�w�ϝ_4����갺�z��j���=���U�4�5�n�ɚ��4ǴhZ �Z�Z�^0����Tf%��9����-�>�ݫ=�c��Xg�N��]�.[7A�\�SwBOK/X/_�Q�>Q�����G�[��� �`�A�������a�a��c#����*�Z�;�8c�q��>�[&���I�I��MS���T`�ϴ� k�h&4�5�Ǣ��YY�F֠9�<�|�y��+ =�X���_,�,S-�,Y)YXm�����Ěk]c}džj�c�Φ�浭�-�v��};�]���N����"�&�1=�x����tv(��}�������'{'��I�ߝY�)� Σ ��-r�q�r�.d.�_xp��Uە�Z���M׍�v�m���=����+K�G�ǔ���� ^���W�W����b�j�>:>�>�>�v��}/�a��v���������O8� �
�FV> 2 u�����/�_$\�B�Cv�< 5 ]�s.,4�&�y�Ux~xw-bEDCĻH����G��KwF�G�E�GME{E�EK�X,Y��F�Z� �={$vr����K����
��.3\����r���Ϯ�_�Yq*���©�L��_�w�ד������+��]�e�������D��]�cI�II�OA��u�_�䩔���)3�ѩ�i�����B%a��+]3='�/�4�0C��i��U�@ёL(sYf����L�H�$�%�Y �j��gGe��Q�����n�����~5f5wug�v����5�k��֮\۹Nw]������m mH���Fˍe�n���Q�Q��`h����B�BQ�-�[l�ll��f��jۗ"^��b���O%ܒ��Y}W���������w�vw����X�bY^�Ю�]�����W�Va[q`i�d��2���J�jGէ������{�����׿�m���>���Pk�Am�a�����꺿g_D�H��G�G��u�;��7�7�6�Ʊ�q�o���C{��P3���8!9����� <�y�}��'�����Z�Z���։��6i{L{��ӝ�-?��|������gKϑ���9�w~�Bƅ��:Wt>���ҝ����ˁ��^�r�۽��U��g�9];}�}��������_�~i��m��p���㭎�}��]�/���}������.�{�^�=�}����^?�z8�h�c��'
O*��?�����f�����`ϳ�g���C/����O�ϩ�+F�F�G�Gό���z����ˌ��ㅿ)����ѫ�~w��gb���k��?Jި�9���m�d���wi獵�ޫ�?�����c�Ǒ��O�O���?w| ��x&mf������2:Y~ pHYs  ��@IDATh�YyXU׵�݁{�'Q�QT��X�Z��P�H�&6��!��h���ښ�iLR��k�Ɨ����D��iD@18 �
�˝�r�Z��8�d�9�}�^{�þ
�~C��AfA�}1Š�J�J��#;��2-AxO mkk�B����!�'ֈ��#Q�6Q\R�RQjk���� ����Z���.1���
@���|,��;�ܬG��"�����'�X[����D?�љ�j�4t�~. >����<� @߈�
}��x��Gb�Q�b��[�p,+ �
���� t���V'?��%(.��MM�q+�:����H\�,������dWB�C?��cF���܌2�ܼ<\�Z ��3����R#1irr�=�9�=;zC�lZgw�d"�W�E���:��F��Xv6�\����`Ѣ�n��q���n~�������Y8~�$��+��;;A��JJ�'��D�1`p,>��cx^Ȁ��X[[�0���8,Y�&�W�K��h���Ѡ�a��_dlڀq�oo��[��]ح�� ZW4�(������� ���8� D/^�郼�o`4��w���4����S����aDDF�Oo?deec˖��t�3�P��.]�W轸���a�:l�6�VM��� �7�Aڐ2\Z5^)M9T:��/�!�"�2�(�"Yi��uRIq����r�~U|wSZ�|��j�ߧ�K�M)= ��O���a/e�B��Co0J?�4IZAD��'��!��t���}���l�X��ٶMzy��Br�pM:��d�2���ޜ+�&e�4�p�������#ag���{(\��)�('\8X���d⧩)����� 'm
� �+, �F#|||�J��s�T/�幒��x1*Sf�@o������_�)Adx���A������3g����?'���r�&&"�GI�w��� &T$<�V+3��j�ZfB��9���� G���:�&� ~Vl޴ f�Ḏ�:�n�EL��hBƖ? i,�l�@�uF����_o���Xc2�p��A;vL�]�r�v�Byy�}̈�;i��TQ�T�&M:������gr�}�^����;�~
�>#`�)�)�Ph�9_w��TFF�ߏ0y�d����b�ƍX�b"""PZZځA��X�m�PmCB4`��ݻ>&�$󥽻�~�E����È���X�Q�ى� �JN���
bjkkq��QL�2E��EYϞ=r^x���9N�<����I<�J�E��d�{�Pd�؁ˤQ,��F�y����ʪ[�w3&M�F2���f�#jx91c$�.;5ggAtTT_$''c„ ���X����M.V�A�>�q�D�<uC��ʚt\#~��KIh���#��DR�nŭ�Ո�� _� ^À��W� �p�jH�d dV�V��`Æ ����9�/(�y��b��L�
N`�ԩ>��,���𱜜��C��#�nj�7�l�O��|�Y3g <,T�G��ѭC�eB�d6c�����[��6��Ȝh4X11�\)��,��s�0<�=�
���N�s�2tz=&��� ��Sh����Ӧ`�G9TZ_�T7����=4��v����}�N����
<]����(&&F���02�r����3���� �[��Q�,�P�L_� c�[o�ڟ�!c4V-_���;�T)�0� ��t�>�����=����������\�C���aF/�?�-Ý;w�-�>F�&�G���j���U��*�0Xm(�3!��
f��p;�V�Z�Z"���$_���K�_���a�3�1���ȿdwr #L����p��/���C�}���q�Z/;����`nm�F2�;vN�9��d�<�f1�}D0Rv�:�3�aЌ�PR""��%a~BI�2��r,JD��m���� �r�/,}��"����;�8��1T\~�hB�� U.��n� ɌЈH�ن����!\yk3h?�Ɉ��x��M� uCb�^�M*�3�ƒ��4�1�(ϣ�a��q� �cDLX�- ߂Dq�G 11,�K�&��X�%�/$J��� _�1�y�aX(��C�q�T��qC>f5�}�@eN�/F|t�&N��ΎV�T҆�X a�b�@{P�!M �wF��V�ĈPo���2�F���� �\�d��kD���.?�����F3E���L��SF���Z���z/>�I��SD�b�%6n(���K1�k劕8��8�z��t4��(�QO �)�G��+"������F�M�ә�*��! �>)q˅��g�d�Βj%��%Ż����}m*�b��~����v� _�����}#�^��X��<B��1/q,�� C��\��|�/���~檂{�����Q�������06�����+Y:��ٴ�~FU.�yP��u҂��-2m��#�S�pA:�)Q��H�c˜QH�?qq������]t:s �$0�O�6ZZ)�����#dX��_�1rWw��£�QC+8���@�d�u�^̺r�v���?�p'fϚ�Ӥ!{T�_����#k��9R1�l��^�}׮�we��H]�vO1#&�G�E�o(`#��f#� �_/�ÝF;#<���$?3 !FT����_63YRD5�8YL��,gu��q�1�{p�a�9s&�.q���&�5���'u2�W����4��%O21:0"> ��ETP n�V�'#B+����<�y�D+�[5��JwC�u�.��&�,ei��b�3Z�����G�i1�=�H�}�0@`�?V��M|v�
6�+���,?w'4R\�m�T)<p�ӉIt��M�'C�%&�ä7�Dci>TN�(o0�f����~�~�B��IW��*��n3�y�nw���,���AG9E%gY�b�����dzT�5ҳ�j)vp!�Λt�.̭��uT�5R{[E���������_�%ҌU�O���m;t�6�}�01�IXh(v�ً�~su69�p��NT6�e0[L��i��啥(+���vE��cq����O� [H<�o5�샬Y*aؼ4^�|��Q����T���}�0��lZ��������yԴy��`C��F./���|�C9[s1~�B:��#gB����e0P�N}u�P��uҠ�؂`*N������P���w��,A���O�D�8M�E���_,Y"/^��+H�����ܨɪ3���+ � �ۨ������:b��� YSS�ܻWVV���m4�A�E����� �{A�u���<T�c�!4$D�C��=��_���3<��ݻ��ܹ��#��۪p:[�trAA�5�x�����/�p�YlF����AD}}=��O��xh��5�\���6)驄���($�y֯[� � ��L�aGfn� ȁ��ph�|I��3�Ë��6�n�� ���NJ�*M���z1':�a�z���&��/NO���Ti�����"Bf2�ЧΞ�D�p��aL0އ2�@�a�z���b~�<L���ICQv�[$�ڄQ#G��̇MH���.�������_㟿ۄ�� d�Va���XC�i�3H�u$����#bqg�.])Ž���޶w�2H������a���/�� ��'��<�YTT��˗�� 脦^3���)T⸹��p�fF0$O>��H�<� q��?w˩<�����Zh�$bz�xX)<��ő���}�η��K�����|���tlo+����^&=� ���F�΀��BJ��6 8 �k� W�qQ|m�����`��!u�3ػ���"�65���F���Z��h��d�.n�ň�#���Y�, �F�0���fV#½f�dDL} S"���AM9��,���3�VW[>��o�1{�D����]&�G��JU���J����*�O���Tߟ������T1 XA�{*x��BCe� � 8w/n`�l<���?����k����@� *�9m$�D�§�d�op��QJ������s���QX��BChX~y��c9����<B޹��ʢ6 5u� DE%�E �tE���?�E��rq�����r0����;�+G�=��Č�d�'q��g���#�H��O
�����>ogxf����_���/�����OM#=��{��0��>,DP��:IEND�B`�
�PNG

IHDR22?��gAMA�� �a
AiCCPICC ProfileH ��wTS��Ͻ7��" %�z �;HQ�I�P��&vDF)VdT�G�"cE ��b� �P��QDE�݌k �5�ޚ��Y�����g�}׺P���tX�4�X���\���X��ffG�D���=���HƳ��.�d��,�P&s���"7C$
E�6<~&��S��2����)2�12� ��"�įl���+�ɘ�&�Y��4���Pޚ%ᣌ�\�%�g�|e�TI���(����L0�_��&�l�2E����9�r��9h�x�g��Ib�טi���f��S�b1+��M�xL��� �0��o�E%Ym�h����Y��h����~S�=�z�U�&�ϞA��Y�l�/��$Z����U�m@��O� ��ޜ��l^��� ' ���ls�k.+�7���oʿ�9�����V;�?�#I3eE妧�KD�� ��d�����9i���,�����UQ� ��h��<�X�.d
���6'~�khu_}�9P�I�o=C#$n?z}�[1
Ⱦ�h���s�2z��� \�n�LA"S�� �dr%�,�߄l��t�
4�.0,` �3p� ��H�.Hi@�A>�
A1�v�jpԁz�N�6p\W� p �G@
��K0ށi���A����B�ZyCAP8�C���@��&�*���CP=�#t�]���� 4�}���a ���ٰ;G���Dx����J�>����,�_“@��FX�DB�X$!k�"��E�����H�q���a���Y��bVa�bJ0՘c�VL�6f3����bձ�X'�?v 6��-�V`�`[����a�;���p~�\2n5��׌���� �&�x�*���s�b|!�
ߏƿ'� Zk�!� $l$T����4Q��Ot"�y�\b)���A�I&N�I�$R$)���TIj"]&=&�!��:dGrY@^O�$� _%�?P�(&OJEB�N9J�@y@yC�R �n�X����ZO�D}J}/G�3���ɭ���k��{%O�חw�_.�'_!J����Q�@�S���V�F��=�IE���b�b�b�b��5�Q%�����O�@��%�!BӥyҸ�M�:�e�0G7��ӓ����� e%e[�(����R�0`�3R��������4�����6�i^��)��*n*|�"�f����LUo�՝�m�O�0j&jaj�j��.��ϧ�w�ϝ_4����갺�z��j���=���U�4�5�n�ɚ��4ǴhZ �Z�Z�^0����Tf%��9����-�>�ݫ=�c��Xg�N��]�.[7A�\�SwBOK/X/_�Q�>Q�����G�[��� �`�A�������a�a��c#����*�Z�;�8c�q��>�[&���I�I��MS���T`�ϴ� k�h&4�5�Ǣ��YY�F֠9�<�|�y��+ =�X���_,�,S-�,Y)YXm�����Ěk]c}džj�c�Φ�浭�-�v��};�]���N����"�&�1=�x����tv(��}�������'{'��I�ߝY�)� Σ ��-r�q�r�.d.�_xp��Uە�Z���M׍�v�m���=����+K�G�ǔ���� ^���W�W����b�j�>:>�>�>�v��}/�a��v���������O8� �
�FV> 2 u�����/�_$\�B�Cv�< 5 ]�s.,4�&�y�Ux~xw-bEDCĻH����G��KwF�G�E�GME{E�EK�X,Y��F�Z� �={$vr����K����
��.3\����r���Ϯ�_�Yq*���©�L��_�w�ד������+��]�e�������D��]�cI�II�OA��u�_�䩔���)3�ѩ�i�����B%a��+]3='�/�4�0C��i��U�@ёL(sYf����L�H�$�%�Y �j��gGe��Q�����n�����~5f5wug�v����5�k��֮\۹Nw]������m mH���Fˍe�n���Q�Q��`h����B�BQ�-�[l�ll��f��jۗ"^��b���O%ܒ��Y}W���������w�vw����X�bY^�Ю�]�����W�Va[q`i�d��2���J�jGէ������{�����׿�m���>���Pk�Am�a�����꺿g_D�H��G�G��u�;��7�7�6�Ʊ�q�o���C{��P3���8!9����� <�y�}��'�����Z�Z���։��6i{L{��ӝ�-?��|������gKϑ���9�w~�Bƅ��:Wt>���ҝ����ˁ��^�r�۽��U��g�9];}�}��������_�~i��m��p���㭎�}��]�/���}������.�{�^�=�}����^?�z8�h�c��'
O*��?�����f�����`ϳ�g���C/����O�ϩ�+F�F�G�Gό���z����ˌ��ㅿ)����ѫ�~w��gb���k��?Jި�9���m�d���wi獵�ޫ�?�����c�Ǒ��O�O���?w| ��x&mf������2:Y~ pHYs  �� )IDATh�Yg�O�_��=���f��Qg��{����B"����щ�xW��hQ��:�{��^mF�w��~�u�7�������J������k���'����}� \[�lٲ ?���GE eLft�}ώP��g��@F����S����/^��s��ɇ$�j��͓Ww(��d���={v��>ʟ�ʓ'O$&&F�/��M?����!�1Ǐw����1}��Ç=z�߿wą��u��������1�l�2o���|VBV-�Uu�~���+WN�|��&�.]��M�6�۷o����R!����K��ʕ+˄ dÆ '�^����ӧOeݺuҦM�o����S`�VlѢE�����.O�<�
0��ر�=x���Q}^�|頂�;8w�\�D��P�B�ݲeK���k����&�Q�
�6ɼy����ƍv"(� .�����2e�h��p�`s%��ecϙ3�nt��ڵk�o�>iԨ�W����;�bs��Qcߵk�vQ5s���Z=@(_U[�{��ƍ�jΞ=�K��5k��>}�;r䈶߽{�q�L��֮]���ӧu<8v{��Q\���Y Y�H�&KIIq�z�r���:�Ν;���Ç�Q�Fi}�ʕ�E���3c� m?~�������֭[��V�$�MF�J��`ϟ?wP7�b�
�q�^�Z=z��]vܸqCێ;�x�w�vPM���G���)�'l̡�gϞ�[e�c`��J�Z��Gj׮��0f�^�� :T ��.]Z�ׯ/7o�Tr��E��O���Β 6VWC��痮]�zF<b��ӧ��s��B�@#߶m� hJ�5t\TT�� 2���+�TtS�'N8�AJj��Z���NӦM]۶m�իW����c�ght�7o���� � 9�sq0�F�G�Ɂ�u��^��ǏqB��H�j�$_�|"'O��"U���X�x�)RDZ�j��b: �W�∩@޼y5� ӌ�)e�A���oݺ�jG�1`;�G�'�1��.�kx��Y�2Bx���0��r�7'�`Brr� zk�Ԯ];ͯ��~
�\ j)gΜ�E`w)���.�@{�J��2D�/�!$ ��r�ʊ3u�Tm��͛7����I��i����}V�
��&��8x+eY��3g�t�n�v�޽��1����ݻ;؇����i_�t��
j?q�|�0����^{gKs�ʥ��7��ݻW=�^S�ܝ;w��,PE7�|׼ys;ŝ)H�R�R���V%H%d�5i�$ n�*U�� j�{�.]���-[V�N��v�9�xf�<y�: �z>�y�4h�p�PH_�и��S�4rӭ2�[a���n�^�qD*T� E��/�����[�+&�)����$gϞ���I�,�Yh�8Ȏyݴ�aÆ�
`v��vT-�!��C���ߣG������S��@��*�]Q:��^�n�<��bAw�v��ѣ�� ,P�3L�8QՅ;U�pa�R���Y�F�l�"�n.�����+Oq�����,��J�޽����%<,\���}�JPAl&�9��Bq��c��h�j�*U�� u7t�<�Jl����_u~�޽�z�Z��gw8�өS'�W��F���pU�%K�H߾}��n����.U�.5��|���r.�S���,YR�;V� �_��.Kc?��$v'ʿ�<����Yr A��X�c��d�m��~���<���m�p�@��3U)oT�sV �,p�g�vBQ�*�<�p�m>Ҡ�8�)����7^�
bcH�nZ�~��aIOF�M���5-鐘(o߼��8�7i�DW���n��/�:A=iG�h��;���U���t� /_�p��'�jEGG�}�ȑ#�$r�����p�BIHH�!��;w�0��[I�`���o��9��)�o#�s}�n�gm��۰s���J��8�z3�1;� �iN�~�ܮ]���?�J� ,(��8��� �"p���S����� �J�$�� �i�Vf�ZF�ވ�������^i�d��ڬn},��om���#��.�� 2���)
��P��0�)
����I�y÷�4���\t �R��y��}�.�} ›�C� 2X��$�Ǽ���L�����o�6���׭[W�g�����;���1��J�+鉎W?L
q@R5��T�ܹs�JԬYSW��x��ʈ�Λz���+�Ldd���[������^� (`U���cǎu۷o�3�y��_=l�QW�p��?v����ώ_�h˗/wӦM��#��V: ^\)�I�=3f��L9d�<-�V�%7,�$���l i��E�1�T| b�s�����#�t�H�0]tT����*�1W�W���=�)0*2RS�  sH~�)]\�e�
շ �:H�u��8����rڏ�F�,V��lF�l�� ��y����_QoC��Y[��ߏyE�5l��ɥ����8�%�?/��,� �O�% ��+~AHҜ0�2p�u~�IN�$���g0��a%;�*V�����K�[;2y�Z�cM�j8�ť�-x��p�%�g��'�kI3
b��f�XBɼȢ_��a_��xYnu������r=�][^bpJ�j���p�� �\���>3܅8d�d���
�2�d��t���8H��+�h~�k��9C 
�>q�]���}��� kL�Ԯ�j|�/���O4�:����'�R�a���uh�� \�G!�����e#�+C����;U���Kh�>���[XB�I��m ��”�A���<�� m�j�@۠2=�Y&Y�P��Hܠ�Vzf�z��O�g=�7!�4<� ,q1H���16�k�Y���� ���BV�Ρ� �cؠ��8bIEND�B`�
�PNG

IHDR22?��gAMA�� �a
AiCCPICC ProfileH ��wTS��Ͻ7��" %�z �;HQ�I�P��&vDF)VdT�G�"cE ��b� �P��QDE�݌k �5�ޚ��Y�����g�}׺P���tX�4�X���\���X��ffG�D���=���HƳ��.�d��,�P&s���"7C$
E�6<~&��S��2����)2�12� ��"�įl���+�ɘ�&�Y��4���Pޚ%ᣌ�\�%�g�|e�TI���(����L0�_��&�l�2E����9�r��9h�x�g��Ib�טi���f��S�b1+��M�xL��� �0��o�E%Ym�h����Y��h����~S�=�z�U�&�ϞA��Y�l�/��$Z����U�m@��O� ��ޜ��l^��� ' ���ls�k.+�7���oʿ�9�����V;�?�#I3eE妧�KD�� ��d�����9i���,�����UQ� ��h��<�X�.d
���6'~�khu_}�9P�I�o=C#$n?z}�[1
Ⱦ�h���s�2z��� \�n�LA"S�� �dr%�,�߄l��t�
4�.0,` �3p� ��H�.Hi@�A>�
A1�v�jpԁz�N�6p\W� p �G@
��K0ށi���A����B�ZyCAP8�C���@��&�*���CP=�#t�]���� 4�}���a ���ٰ;G���Dx����J�>����,�_“@��FX�DB�X$!k�"��E�����H�q���a���Y��bVa�bJ0՘c�VL�6f3����bձ�X'�?v 6��-�V`�`[����a�;���p~�\2n5��׌���� �&�x�*���s�b|!�
ߏƿ'� Zk�!� $l$T����4Q��Ot"�y�\b)���A�I&N�I�$R$)���TIj"]&=&�!��:dGrY@^O�$� _%�?P�(&OJEB�N9J�@y@yC�R �n�X����ZO�D}J}/G�3���ɭ���k��{%O�חw�_.�'_!J����Q�@�S���V�F��=�IE���b�b�b�b��5�Q%�����O�@��%�!BӥyҸ�M�:�e�0G7��ӓ����� e%e[�(����R�0`�3R��������4�����6�i^��)��*n*|�"�f����LUo�՝�m�O�0j&jaj�j��.��ϧ�w�ϝ_4����갺�z��j���=���U�4�5�n�ɚ��4ǴhZ �Z�Z�^0����Tf%��9����-�>�ݫ=�c��Xg�N��]�.[7A�\�SwBOK/X/_�Q�>Q�����G�[��� �`�A�������a�a��c#����*�Z�;�8c�q��>�[&���I�I��MS���T`�ϴ� k�h&4�5�Ǣ��YY�F֠9�<�|�y��+ =�X���_,�,S-�,Y)YXm�����Ěk]c}džj�c�Φ�浭�-�v��};�]���N����"�&�1=�x����tv(��}�������'{'��I�ߝY�)� Σ ��-r�q�r�.d.�_xp��Uە�Z���M׍�v�m���=����+K�G�ǔ���� ^���W�W����b�j�>:>�>�>�v��}/�a��v���������O8� �
�FV> 2 u�����/�_$\�B�Cv�< 5 ]�s.,4�&�y�Ux~xw-bEDCĻH����G��KwF�G�E�GME{E�EK�X,Y��F�Z� �={$vr����K����
��.3\����r���Ϯ�_�Yq*���©�L��_�w�ד������+��]�e�������D��]�cI�II�OA��u�_�䩔���)3�ѩ�i�����B%a��+]3='�/�4�0C��i��U�@ёL(sYf����L�H�$�%�Y �j��gGe��Q�����n�����~5f5wug�v����5�k��֮\۹Nw]������m mH���Fˍe�n���Q�Q��`h����B�BQ�-�[l�ll��f��jۗ"^��b���O%ܒ��Y}W���������w�vw����X�bY^�Ю�]�����W�Va[q`i�d��2���J�jGէ������{�����׿�m���>���Pk�Am�a�����꺿g_D�H��G�G��u�;��7�7�6�Ʊ�q�o���C{��P3���8!9����� <�y�}��'�����Z�Z���։��6i{L{��ӝ�-?��|������gKϑ���9�w~�Bƅ��:Wt>���ҝ����ˁ��^�r�۽��U��g�9];}�}��������_�~i��m��p���㭎�}��]�/���}������.�{�^�=�}����^?�z8�h�c��'
O*��?�����f�����`ϳ�g���C/����O�ϩ�+F�F�G�Gό���z����ˌ��ㅿ)����ѫ�~w��gb���k��?Jި�9���m�d���wi獵�ޫ�?�����c�Ǒ��O�O���?w| ��x&mf������2:Y~ pHYs  ��3IDATh� tTe����,U��R�!�I�]qcQ@VE�p\f��>=N����.���� *��:�qp#��(
F�-l d��TR�J������H#��>~u�-��޽����Dd�W04T?��fI�)�~����A��P�r:�g?��d��� G�4���b6gPR^����YH����#�PH��owF�_�<2��s#�E�X�/"r�o�ج}�um���V�|�%TD����'����qS���'��'����eLMɃ�r�ÿ��p���� G�'��{Y���D�Bt8:����H��/#5�i"S�\Y�"-�rF��'2�� #��Ȫ7�"�6G�cwG_� �ub� .b���E�X�j�1++�\���:� tn���Rެ����� �{��Ksra �O���%QǬ�\2s2F��(��"����[q�5���0���>|#��I��MzU>m,�i\8����8���yk���wyH��%��L4<�����~y�C����1�3  1,�,��N����x��J�ъ{m�`�P�+��V�x������Ե�� � �������ƿݨ�_���Y��xO��؉9�4�2�hb�u�X�ҳ���l6�|IaN�ho))�L�����#�'\����9����7q��|�*J��0�FH1����ňaC��_3硫Y���EPӴj�A���cD���z;{Y�����jW6ţ�)l��0� �9�������� �;�kw��8���$�棄�Yxǚ���@Vb;��s0?���9�F����v�`��Q��
k��r��eo<K������R����i4W ���,&�i(�GhL��m��{9Լ��1���{H�~#��q;_fT�<�N�e��R.�����c��Tr�Τh��1��r�R�S��ѵ�x@i�����<Q��a��2�_���";�\�`m��Ļ���ݐ��f�ۗ�㵲���ز���ʻi�� ���"��g ��b�)D��-�tZ;>�Af��-��Ĵ�gѰ�����i��@s*��֮^�¸�̸t>Ď&>�K%� +LC��bno@,���0�F����(��a��]��Z�ΐ��i瀫���������i��goc6����d �*&ar~N�e��6�~+������Z�^|�����y�K8g�j��y`�hֽ�� R[�+�\,��
� �R3u<�ƽ���)4�!�h��� C��՛��2��@,/'F�E��U�v\I Z&�t��W��,�z��'�ʥ�w������hLX-=�r��<��i����ϙ=�ʖ]Y8�3x�X�������X�"���;��q�w�L���}^|�>fd��|�����xf�f��� ���&��__<��a/n�GA��;�:���T��w���o���u�_LfnfTܯ��f�h{��է�{��&_M�����A�Y&�Z9���!ʲuh�zz����2
�H*qi/ѵg#cf.��d�l��B�C,�0L�ub�݈6�1t�yx��sIg�����e ��y��ڞ~v��;ȯ����z��O��Tp�eN�>h��ȋ���o� ��ؖ�ʊ��h�#�g��Ć8��$sT�_X ȵ&��;�y)�V�a��������������;�ZQp�%�Dx��#V��w0fp�� �c�q�*���_���$�1�n�[˥�.�����v j��r�W2���ydb7�=ʜL?��ΤU�XY4�!��x�A��`�ԓ�˱=BXHJ1 �6M�5�� ����r�%0qMk^f�[7S}m�O���E8�k��Z��Ɗ��e1d�c`��p��J�l���6�����q�DA(�@��Z�d�6 N�R��h+Z�WR���ZR�L4�m���6B�)��,����lw������'&�<T��X�C�q5ldDz(������x:�jftuy�i���N�ĉ��IF��X>��|�7F��lj���L"^g�*n4��:#��dq~㮟ƃ+������c9�����y��!i
Mb�^a�Gz���\#��,��EH����ƢK ��=��� q[��I-{K�����ĝ�����B���_u��1ih���Ã�/��gkc!}��<�vL���W�V�AJʔq�"Q ��t~�>���Zf5���h[��&�(-�d����Yӆ�ũ* ���=l���,i� N�^�zo*�.�_\ �G��,�5)�%a�j%&Vb,"�6��z+��:�ؘ{y�SFp��#髒�m��cT�j�V�Q�?g�|�[�s��DrB~2�fa�m�[�J7����_M���zq9vI��#�t����L� �C�=���y��Cn��^�N?��3%Yt�Kj���g���SyI�ɤ��0�ƈŻ��)���Rŏ*_�9a�Fy��)Q�}����+I�'I� 1laG�m�O�A�ʤ/� ���i�"�(��|a NK@\�́�6R GI�$�C�����Ŋ��>�ΓZ��N�ƺ����_a��Fڕ�7E3`}��H�h9��ɯ�#zc��}#Lt\�p!W~v%�;�����KՒ2�u�A�����iCI#����7������h����x��xQL����!+�@�|�?�P0%]��m>z�vM�ĕF\����Xl��T /G��V;i9&�n�@����U�*;�} *�)��h���q�y;âC2� ����ix����9$%��g���r��t��:ȟ�R2����q-�TX�x��F�14��w��:����o�������]\�����W��>�ŶŅ>'�7n�3^`�-�U��h e�@�Q0M�(���q��SV^ Ia�q7�_;"�� 񒄩�#qq�/�J ]�ב3�b�6�G\6H}�IJe-�����7<����%����|xz= ����fi$��N9��m��#�Ⱦ^���-F���PL��)�(�eU �����w��R�T^_JH�+1�c�vRr��6&E��x�JGK���=�pV����.����� �������#�P|I�=>��xX������k���Pd>QG���`��X����w<��'9�z9%9L���O�>ѻ��J� ���b��JzU{_�y#�L],1:�d,�
�lyMR��f��Z���������9b�e HL��+ʻ�;ٝ�zZ ��(s���~�)���w�oaӾT�哟=�BɆ1�������M�JjDx��ڻP���i�[1f Ec0�=68:h�K�� ��'��og�����)/�pq��4�o����Q}Sڒ���g⸉��p��W�z��R��mbz�<~%���ҿ� ��ҋ��.��%&���n~?�^��K��;���L&���2ރ�����:;/�EK����}�nl}����:ֵ�P1T��|�Q�������|Vq)0�}n#�Mܶ�! �aGG���(�v�y�@���ģ�����V镕���p]w'iC��$$�$��X��T�<?��� )i�U�ko���P�J�~��:q�oL�������Ry��.��\��O���Jܐa�E��Dـ���JI�� 4J{e���s����Aw�mOv��0`����Q�(Zlime��x���� $���m��s�s ~y���p�j���Ǝ�@Fv�M�4@��~yF�u:6�B����m���\<j/-�1���M�)��f���_��� ���ʡ���t$�������-j���r�s�~>{�)�q�~� ���Mk��l[K��6�_6��t���w��8+@A0ʈk��%ߺd��g$��/.�(PJeQ�@���dz$*�ɀN�W֝MQ�gH���N���;[� ��p�tW�K�G\��Q��d��EN��q����YA3�'IEND�B`�
�PNG

IHDR22?��gAMA�� �a
AiCCPICC ProfileH ��wTS��Ͻ7��" %�z �;HQ�I�P��&vDF)VdT�G�"cE ��b� �P��QDE�݌k �5�ޚ��Y�����g�}׺P���tX�4�X���\���X��ffG�D���=���HƳ��.�d��,�P&s���"7C$
E�6<~&��S��2����)2�12� ��"�įl���+�ɘ�&�Y��4���Pޚ%ᣌ�\�%�g�|e�TI���(����L0�_��&�l�2E����9�r��9h�x�g��Ib�טi���f��S�b1+��M�xL��� �0��o�E%Ym�h����Y��h����~S�=�z�U�&�ϞA��Y�l�/��$Z����U�m@��O� ��ޜ��l^��� ' ���ls�k.+�7���oʿ�9�����V;�?�#I3eE妧�KD�� ��d�����9i���,�����UQ� ��h��<�X�.d
���6'~�khu_}�9P�I�o=C#$n?z}�[1
Ⱦ�h���s�2z��� \�n�LA"S�� �dr%�,�߄l��t�
4�.0,` �3p� ��H�.Hi@�A>�
A1�v�jpԁz�N�6p\W� p �G@
��K0ށi���A����B�ZyCAP8�C���@��&�*���CP=�#t�]���� 4�}���a ���ٰ;G���Dx����J�>����,�_“@��FX�DB�X$!k�"��E�����H�q���a���Y��bVa�bJ0՘c�VL�6f3����bձ�X'�?v 6��-�V`�`[����a�;���p~�\2n5��׌���� �&�x�*���s�b|!�
ߏƿ'� Zk�!� $l$T����4Q��Ot"�y�\b)���A�I&N�I�$R$)���TIj"]&=&�!��:dGrY@^O�$� _%�?P�(&OJEB�N9J�@y@yC�R �n�X����ZO�D}J}/G�3���ɭ���k��{%O�חw�_.�'_!J����Q�@�S���V�F��=�IE���b�b�b�b��5�Q%�����O�@��%�!BӥyҸ�M�:�e�0G7��ӓ����� e%e[�(����R�0`�3R��������4�����6�i^��)��*n*|�"�f����LUo�՝�m�O�0j&jaj�j��.��ϧ�w�ϝ_4����갺�z��j���=���U�4�5�n�ɚ��4ǴhZ �Z�Z�^0����Tf%��9����-�>�ݫ=�c��Xg�N��]�.[7A�\�SwBOK/X/_�Q�>Q�����G�[��� �`�A�������a�a��c#����*�Z�;�8c�q��>�[&���I�I��MS���T`�ϴ� k�h&4�5�Ǣ��YY�F֠9�<�|�y��+ =�X���_,�,S-�,Y)YXm�����Ěk]c}džj�c�Φ�浭�-�v��};�]���N����"�&�1=�x����tv(��}�������'{'��I�ߝY�)� Σ ��-r�q�r�.d.�_xp��Uە�Z���M׍�v�m���=����+K�G�ǔ���� ^���W�W����b�j�>:>�>�>�v��}/�a��v���������O8� �
�FV> 2 u�����/�_$\�B�Cv�< 5 ]�s.,4�&�y�Ux~xw-bEDCĻH����G��KwF�G�E�GME{E�EK�X,Y��F�Z� �={$vr����K����
��.3\����r���Ϯ�_�Yq*���©�L��_�w�ד������+��]�e�������D��]�cI�II�OA��u�_�䩔���)3�ѩ�i�����B%a��+]3='�/�4�0C��i��U�@ёL(sYf����L�H�$�%�Y �j��gGe��Q�����n�����~5f5wug�v����5�k��֮\۹Nw]������m mH���Fˍe�n���Q�Q��`h����B�BQ�-�[l�ll��f��jۗ"^��b���O%ܒ��Y}W���������w�vw����X�bY^�Ю�]�����W�Va[q`i�d��2���J�jGէ������{�����׿�m���>���Pk�Am�a�����꺿g_D�H��G�G��u�;��7�7�6�Ʊ�q�o���C{��P3���8!9����� <�y�}��'�����Z�Z���։��6i{L{��ӝ�-?��|������gKϑ���9�w~�Bƅ��:Wt>���ҝ����ˁ��^�r�۽��U��g�9];}�}��������_�~i��m��p���㭎�}��]�/���}������.�{�^�=�}����^?�z8�h�c��'
O*��?�����f�����`ϳ�g���C/����O�ϩ�+F�F�G�Gό���z����ˌ��ㅿ)����ѫ�~w��gb���k��?Jި�9���m�d���wi獵�ޫ�?�����c�Ǒ��O�O���?w| ��x&mf������2:Y~ pHYs  ��rIDATh�Y p�g�咃�"A�`]U�L)E��*ZU�6L�Ewzh�E�T1c�n�㪭�u4֠���cۢ[WCҸ  9HD$���{x���|�m�3}g���������~^i�4�_ �SQF^^^��k4�_J#Ƹ���G|���)�_
��������dvv6N�:_?_�p��mԫWM�6���|��I�¤ֈ+����Err2���{|��W�������Q�n]ݒ�BBB���q���m�111:�i>����ϟ?� 6`ݺuh֬ �&M� ,, ��������HOOG^^>��slڴ ���&N��v��) W�N��T�mTTT����#>> .D�޽�q3�[�n�A��1j��t�^��~����
f̘��S�"22R�sNu�S-1������={� ""v��eЕ ��|����V�F ���{������ѨQ#}�ٳ��s��`<ֈ=r�:v�iӦa̘1�э7����v�xii�2m ���o���(���@�ܹs���ڵk�6�ؾ��7�4b�8t�z�!�;C� m�̐yJ���y�(�U
???Ԯ][5@-P��5��Z�j麒�\�~]�ܹ3^z�%<��sJ�Z�T#�b ��D�=��#�(C7o�Tf(Q:0#W�6m��Ξ=��d4n�X�IMME�-ЩS' ��,,�𽰰�[�VaM�0���6l�j�|�*��ӴL���s��itad�1��i�TF��:u�8������5kT��bTT�s�k����C��޾}����_�p���7o~_0�a��/��B�*m���9��<}�4�y�a��'#�����"ױ�� ]CӢ&I�ڵkj�4S�e�9k���5aRxU�*�����I�0h� ݌ �</J0)) �24nn&`O�͍����\�a�:p����aX&�: ����7�Tſ��J 6c�ƍ�J`tjJϜ�sSc��i0 :9��9�= �/'�VH��ؠA���~��3�F����1Cg��%Ɏ��%y���M����l]NN�L��'�xB���O���{ )))ι| �YS5����&K���h^O!�_1ٸ��vϨŬ���'^��@�a3�b��駟j���41�R,^�X3���2����$͈����T ���;�裏:5��\nn���i�ltt6��W�J��F,��߯���1׬�h�{5������B�H�O�Iˀ$&&��oժ._���i��XE�-X�@�ܸqc��t��R��d�*fޘ8a"��� �mٲݻwWG�m3�>|�v�B�T����� lH؀��gD���h�#GGD�z�9d���&�fٞ�3q�����_,eX����)`�Vb'O��шU)�QR�W�V�� 7f�vX�Ο?-[��� �X4�e�:u,���PZ\��?�KV~������Ƒ*�w�yG�j���B`��RX�+�g¤�1��Z�
43~�й��i��S�tؚ�LN$B�bY�SZ�����f ��I��1���i\eQp%q� 0np,ޘ�>zwk+�����?��&Sܟ�$ �0����~����M۶møq�ȿ��b��g�Mn'O�T������ʹDM1�q���cŲ���� <ک-�$�嗠(;�i98����է�Z��]����DNm�a3j�͎B�i3p�>ɂ�����N&���N"++K����H�̙3�߿�:y�D3�Q �|�k� #��FbC2ѧC+�������� ݷ�����e��z�if�}�%�Ή'�&�F>x��رc�ۅ|U�#�]2L�&�8M�����ݼ�·��l��͛Ѿ�d�^�K�S?����xw�/�n�R� ��P@3��6\�F���!�nݪQ����FK����VI#d�e'2��6� �1��ĦD�=*�,Hǘ������ZN���K�i��x���Pz�8�̛�A��9�J�� ˖-��o���0�р��K�.i�! ��6����������Ja��k�6�Ƌ�U�����4� h��� ��c��6s.: ����{*�ӟX1|��#0��7�FA&[&N�]��1��Fӳ*����1Bv@��$Ʋ7� ������4��9b�6�0n�(�7��5�}�'���7��“',��*�����,F�Χ��.ͻb+����=�aV%q^|�$�n��u(y&��_]�����ooo��t-"��S���5�יh� &lB��s��������Ƌ/��>BS3 � �:=s���#G�+7ta�&I��'A��yi޼yj�d���i�̚ᘉ�|���Um1�62l�e ǻt�b�d⊉���r�����uC�~h�&��9�}��GF|�ZW����`�n�=�/������hÆ �f��vg[�;V�fL2G�����}�m�С�4!����I$���<:�E � �@���\�h��y�9����> oo=�E�ٿd���_�=+!&���䛙e�E���\xf�`6\�]�3���<�rT�i���O?��
j����s���_b�C��d����!�D�esG��t�kk���ɹ� �Э��i}Ι3�!��!���R�;.^��smMr��W�����99�Y����C�C����޽۹ ����@^D� �JG�+�D1�D/�^�F�rHe������v�f`���͛r(���$-}��l��H��SqP
F����+ �5e��;$��R�"����J�k2��7���.]�ٳg�GrLq|����{O���tNF:��F�cTb�`��:�9jٲ����Ԯ�k�y�ӷ⟏׬��EÕ�����# �L�x�Q�'�#�N�&8�������D�:F���A�k��X|�}/Y*2 �r4���x�?9 B�%X��c ��U:gϦb��p��;e8D�k���[*���@�ݖ/��5���X�JD�L$l��-�����_�G��b�1� �@�+�X��ݳZ@(!�NR� �߰��\�#���y8I��&�1}ܓh%H� �G�����<p�g�_�\yy�,�� @�� L�o���?Qr�ڠ6�q��c � V�و��u���@�w$kJU��F�u/\����� l��vi� ����Et@ ����PD���w)n��(��W�_�x|�T� �#�~nح��c F��U�Q�7�G�KJE։}�M?��珢��5��\�����
@��̟��)0��ԗC���q�b8�j 0a��u�v���;AX�rb�����U3fƃ��G@�/����¿ ���̖�D8�S�X��)���9�G�h������ޚ�)��[c�է��A�z�����!���-?�Q*�ẨW̩����O�'[���Χ���x��ꊜ��d�}�ѵ�!*��|�#�N�j������(Ȼ�ݧ;b�Eh�Ĥl_�^��P��J�sK�����;.��� �^�^���'�/ �hO�G@H���=�r6Μ�(�/Ñ�D\���G�`P"�_�Աs't���!�$��i�Y�)1E�N�dP �8��K�B�n�wI#�j?Z5�E�:����Վ*n�(�_�(c��+���8���*ҳ��j���D7��n%��q)9+��:w��Ƹ�[��y�R�ߴ����o��n���?>����k�IEND�B`�
�PNG

IHDR22?��gAMA�� �a
AiCCPICC ProfileH ��wTS��Ͻ7��" %�z �;HQ�I�P��&vDF)VdT�G�"cE ��b� �P��QDE�݌k �5�ޚ��Y�����g�}׺P���tX�4�X���\���X��ffG�D���=���HƳ��.�d��,�P&s���"7C$
E�6<~&��S��2����)2�12� ��"�įl���+�ɘ�&�Y��4���Pޚ%ᣌ�\�%�g�|e�TI���(����L0�_��&�l�2E����9�r��9h�x�g��Ib�טi���f��S�b1+��M�xL��� �0��o�E%Ym�h����Y��h����~S�=�z�U�&�ϞA��Y�l�/��$Z����U�m@��O� ��ޜ��l^��� ' ���ls�k.+�7���oʿ�9�����V;�?�#I3eE妧�KD�� ��d�����9i���,�����UQ� ��h��<�X�.d
���6'~�khu_}�9P�I�o=C#$n?z}�[1
Ⱦ�h���s�2z��� \�n�LA"S�� �dr%�,�߄l��t�
4�.0,` �3p� ��H�.Hi@�A>�
A1�v�jpԁz�N�6p\W� p �G@
��K0ށi���A����B�ZyCAP8�C���@��&�*���CP=�#t�]���� 4�}���a ���ٰ;G���Dx����J�>����,�_“@��FX�DB�X$!k�"��E�����H�q���a���Y��bVa�bJ0՘c�VL�6f3����bձ�X'�?v 6��-�V`�`[����a�;���p~�\2n5��׌���� �&�x�*���s�b|!�
ߏƿ'� Zk�!� $l$T����4Q��Ot"�y�\b)���A�I&N�I�$R$)���TIj"]&=&�!��:dGrY@^O�$� _%�?P�(&OJEB�N9J�@y@yC�R �n�X����ZO�D}J}/G�3���ɭ���k��{%O�חw�_.�'_!J����Q�@�S���V�F��=�IE���b�b�b�b��5�Q%�����O�@��%�!BӥyҸ�M�:�e�0G7��ӓ����� e%e[�(����R�0`�3R��������4�����6�i^��)��*n*|�"�f����LUo�՝�m�O�0j&jaj�j��.��ϧ�w�ϝ_4����갺�z��j���=���U�4�5�n�ɚ��4ǴhZ �Z�Z�^0����Tf%��9����-�>�ݫ=�c��Xg�N��]�.[7A�\�SwBOK/X/_�Q�>Q�����G�[��� �`�A�������a�a��c#����*�Z�;�8c�q��>�[&���I�I��MS���T`�ϴ� k�h&4�5�Ǣ��YY�F֠9�<�|�y��+ =�X���_,�,S-�,Y)YXm�����Ěk]c}džj�c�Φ�浭�-�v��};�]���N����"�&�1=�x����tv(��}�������'{'��I�ߝY�)� Σ ��-r�q�r�.d.�_xp��Uە�Z���M׍�v�m���=����+K�G�ǔ���� ^���W�W����b�j�>:>�>�>�v��}/�a��v���������O8� �
�FV> 2 u�����/�_$\�B�Cv�< 5 ]�s.,4�&�y�Ux~xw-bEDCĻH����G��KwF�G�E�GME{E�EK�X,Y��F�Z� �={$vr����K����
��.3\����r���Ϯ�_�Yq*���©�L��_�w�ד������+��]�e�������D��]�cI�II�OA��u�_�䩔���)3�ѩ�i�����B%a��+]3='�/�4�0C��i��U�@ёL(sYf����L�H�$�%�Y �j��gGe��Q�����n�����~5f5wug�v����5�k��֮\۹Nw]������m mH���Fˍe�n���Q�Q��`h����B�BQ�-�[l�ll��f��jۗ"^��b���O%ܒ��Y}W���������w�vw����X�bY^�Ю�]�����W�Va[q`i�d��2���J�jGէ������{�����׿�m���>���Pk�Am�a�����꺿g_D�H��G�G��u�;��7�7�6�Ʊ�q�o���C{��P3���8!9����� <�y�}��'�����Z�Z���։��6i{L{��ӝ�-?��|������gKϑ���9�w~�Bƅ��:Wt>���ҝ����ˁ��^�r�۽��U��g�9];}�}��������_�~i��m��p���㭎�}��]�/���}������.�{�^�=�}����^?�z8�h�c��'
O*��?�����f�����`ϳ�g���C/����O�ϩ�+F�F�G�Gό���z����ˌ��ㅿ)����ѫ�~w��gb���k��?Jި�9���m�d���wi獵�ޫ�?�����c�Ǒ��O�O���?w| ��x&mf������2:Y~ pHYs  ���IDAThݙyp���� Y $$!AVA� " ��ƈ.�-m�����X�Q�2�t��T�V���VQv�@aI�$$$aɞ����� ���b���μ�~������=���{��ϰ��� `p�������|> ��c��2�r��ZZ�B�9��S�t��k:����������\�q���Z��o���:"���x�~���2/�֑�n^`�awYQ]m;w�C���Ծ� <�̼�B����{�5�x����NJ�� ��v�WX��d�C��;�0/�}��uh���w���2���N��w߾֥C;x�-_��J1L
��w�^k=i�͘1#D �B�Yz��]���w���.�j��ҥ��c�����/�}fI#GZ<իU+�oI(ސ�U�/-)�^;�e5[���+��v��������[4��|��M{�y돱��χ*�d��-.��=z��a����-��W]Y���ؤ$��� BM�9O�CkO��Ւ�u����Ч����|vMH�������r�T����v_���D^�fd5X/
���٦N���VGX��� ՟:e����9�>��7ݫ��� @ϼ�j+�{zF�M;�F �5���hixk�/A�Z�m�6VB��m����bQ�q���S0�PrB�SM�0�Vͩ;y�Z� ���zي����c�X�}\�{�G"��yq�(bz�������+(� �Y�>��#U�3��� �~=䀯�U\�,�'�&f��!`��+Əw�h\[�C�R�K��+ J�{̪a��o��E/7��!DN٢��Y� �_\w����
5W�ڵ��6o���6����g�\{�E�s��"�����I��͝k�5?�_Hɮ�! Eb��C�X
֏<�$K�[��f=��c��99���,�KV��,��/�H=��k�ؓ�ks'O�V'NX����F�r �VK*|H9�4�M�+����[m��  K������G�!X@R'�7Ϟ[��y�Z�IL����:౶�16��k����ۇ�֙����K/�Ȳ��ƪH�s���D ��S*�2/^���䲲�j�2�s)di))N�.b��/�dm��K�om۷�2ɥ��Ă � 9�1�z���I�SW���/GB���������<h (d ��>X���C�n`�V� ' �e-�O<a��hn�k��k��jaT��a�9s�Oͭ дO7<m��w���'�}Za]���V
h�W_��m۬�5�o�r(�]鞞���z�Dz���7,�����ŋ- ��A T�̞=m���6��m1�ͤnps��t�]F�U�; �T]�s�]���E�z^�g� [x-{�9[
1hx�9/k �&���x�AB���tx�^�L��P��E~�M֝��G�ڧ$��=�����{{E'�"�Uk�Z��\����ͨ�~��� �YC�n�����?γN�IV][k_|��rwd�H��i���6��'�� /t`C�����&�_HNt�3������χbXg���O�'r4�C��Ԗ|Z��68��KCx���P�>�槱T�O�{睶��V������{���� m���Z&�f�UW9 A����>�U��_ۅ��nB��ă�o,�E�P�=p�c��T�5;v���'gh��6EaE���A��I@a�h & �D��[o�J��I�g[���G�X�Է��"&(�m�VҊ��v������� �<"D|�.k��װ�@'��ҵx��%Kl�ڥP�?@��{ G�K��J���60�����X��ZJ�$(߄ ��������,�1�x7X&�Ev�/=�{(A]P0O��#��Z��j��7�� � Ů:�^%7���M\�E�<+��v���y�Z�Lue���>���!� �� ��M�eΚe��hHG�fY�Y� �Z\Y��W��'V�Co%aRA��9(X��)v�|� ����G�J�.�ڿ�W+F�>z,��� �\�S���N�xj��L��O�S���3���֎�F^hx:���@$|H�4g�z�C&ml����X c��u9}�BpT�4u���U��>�;-Lܔ)�Cq�H.m��v2�P��s(�"���P{�[r�����#+"\�B07��3j�����F�@<�eSi#QD��PR�'v_'�E�a�W����1��g:�4
��hTK1�B)�U��x���/)�;�ҕJ`�\�^C.������f��o�Œa3ׇ��V��oN��o� �()�����)"?���]D�u�Pt@Z���`���ۡ��`<�1��׾�_�Xx-5%��@��1�z)�����D8�Â
�:BV[�8�r�=�X_�Z�x]�xkHC
�#��1CCb�]�v�ԍx` �V8������j�y�ӏv<�g�ˣL ��P%�6,�
�$�!N '�g&C� y_�"�)�#&N����@x������ˆ ��@I����P0R՜�_��c1�+�񻩼oP���'%R(��%�J��b�{��l���S![E��"_�͘aQ��ё�.*+�p�Vt��~��b���YJ�BL����i�ܾ���p
v$!���"�^VsG��3'i[�!k{�#��%�wQh7��O͜i�xL{y�V�#�
aK�uy�-��g�@<7��ˏ�&:#�kũX,��� C-�GZ���1E- 4�H])�K>�'��G)1S� LO��h��n'ɧ�cd�!$�e����Ng9s�,o�N�����ǣ��pq*0X�_[cQ�u6m�hѣ�}��;[G�|���J�
��?@�R�35�������p}bC'+b)W��,��TgT��ru3��h.?t�Y �C�X�����V�&�#�<YJ씖�h�(���<�K���߇D� S����_�b�{� Yb���<^�p���)��5����P�s ������� w���,���D<
��v��i S,�!z�7�#�F>�ԑ�/��m���KK���� ��]ߨ1c,��<��˂� :�`)�x�;�C��@����\_����Y��8{H~U��J���.�9/v�4)�
�+<�a!�i���w�b��>VM��(�$z��<��t�ʾ���P�C�z0X$q�2(��.޳M?��d��$�����#��i��Z��G(���C���h�@�ue�:,��"*��ۡ��tp�m�mw���{�ݦ�?���䧞}�ڲ��ñO>��H��VS�����}6~(pM�q���\}:"� e�_,�V>���U‚����v�g�O�1j�o���l���F���Z�A�Iq�8\�t�_�3���Ir��b��Bx���P���N,�S�� -r7xk�IA�B��]lj%���oo�æ�W��,:B͆��:`M�������@I+ G�_�c��V����|�v�V*m�GJؓ�k��K��5���V�@�'8�=v�6��V��[%`��j����l�~��W���_����A�dߢ��`4�6�ûk �Mx�g���.���rCxk�S(�P.�� �&O�����d�]��KV��x�����]�]�n�~�V_��[i�.���5B������陁 ���^I[wTz�
���F��*�-�� ��Ck#`� ^�#���%ͯ�6�)'_��m����k��K�o-�%�Z�YD'*���,+���H�.��J�N�V� ����`�}B��#�Ի��ls���<�1Oy�\}
��E@<A���2��A8��ē�#3J��\[�$��"�MȩT�@���Ŝt�鯼Z�� � ��_] �E�Z<`*�=�gk����Æ����K����O�t�d����_PP��XZ�W������;A�7���Ƣb4i��P�����(Z�$<�Q�� �?} �}��h�;־\ �X��ΐ�����[��HnK��PFKd7��l�xR����؜��W��ݗ�z5�H-�:!���M���}�A�����ߣ&>�3��IEND�B`�
�PNG

IHDR22?��gAMA�� �a
AiCCPICC ProfileH ��wTS��Ͻ7��" %�z �;HQ�I�P��&vDF)VdT�G�"cE ��b� �P��QDE�݌k �5�ޚ��Y�����g�}׺P���tX�4�X���\���X��ffG�D���=���HƳ��.�d��,�P&s���"7C$
E�6<~&��S��2����)2�12� ��"�įl���+�ɘ�&�Y��4���Pޚ%ᣌ�\�%�g�|e�TI���(����L0�_��&�l�2E����9�r��9h�x�g��Ib�טi���f��S�b1+��M�xL��� �0��o�E%Ym�h����Y��h����~S�=�z�U�&�ϞA��Y�l�/��$Z����U�m@��O� ��ޜ��l^��� ' ���ls�k.+�7���oʿ�9�����V;�?�#I3eE妧�KD�� ��d�����9i���,�����UQ� ��h��<�X�.d
���6'~�khu_}�9P�I�o=C#$n?z}�[1
Ⱦ�h���s�2z��� \�n�LA"S�� �dr%�,�߄l��t�
4�.0,` �3p� ��H�.Hi@�A>�
A1�v�jpԁz�N�6p\W� p �G@
��K0ށi���A����B�ZyCAP8�C���@��&�*���CP=�#t�]���� 4�}���a ���ٰ;G���Dx����J�>����,�_“@��FX�DB�X$!k�"��E�����H�q���a���Y��bVa�bJ0՘c�VL�6f3����bձ�X'�?v 6��-�V`�`[����a�;���p~�\2n5��׌���� �&�x�*���s�b|!�
ߏƿ'� Zk�!� $l$T����4Q��Ot"�y�\b)���A�I&N�I�$R$)���TIj"]&=&�!��:dGrY@^O�$� _%�?P�(&OJEB�N9J�@y@yC�R �n�X����ZO�D}J}/G�3���ɭ���k��{%O�חw�_.�'_!J����Q�@�S���V�F��=�IE���b�b�b�b��5�Q%�����O�@��%�!BӥyҸ�M�:�e�0G7��ӓ����� e%e[�(����R�0`�3R��������4�����6�i^��)��*n*|�"�f����LUo�՝�m�O�0j&jaj�j��.��ϧ�w�ϝ_4����갺�z��j���=���U�4�5�n�ɚ��4ǴhZ �Z�Z�^0����Tf%��9����-�>�ݫ=�c��Xg�N��]�.[7A�\�SwBOK/X/_�Q�>Q�����G�[��� �`�A�������a�a��c#����*�Z�;�8c�q��>�[&���I�I��MS���T`�ϴ� k�h&4�5�Ǣ��YY�F֠9�<�|�y��+ =�X���_,�,S-�,Y)YXm�����Ěk]c}džj�c�Φ�浭�-�v��};�]���N����"�&�1=�x����tv(��}�������'{'��I�ߝY�)� Σ ��-r�q�r�.d.�_xp��Uە�Z���M׍�v�m���=����+K�G�ǔ���� ^���W�W����b�j�>:>�>�>�v��}/�a��v���������O8� �
�FV> 2 u�����/�_$\�B�Cv�< 5 ]�s.,4�&�y�Ux~xw-bEDCĻH����G��KwF�G�E�GME{E�EK�X,Y��F�Z� �={$vr����K����
��.3\����r���Ϯ�_�Yq*���©�L��_�w�ד������+��]�e�������D��]�cI�II�OA��u�_�䩔���)3�ѩ�i�����B%a��+]3='�/�4�0C��i��U�@ёL(sYf����L�H�$�%�Y �j��gGe��Q�����n�����~5f5wug�v����5�k��֮\۹Nw]������m mH���Fˍe�n���Q�Q��`h����B�BQ�-�[l�ll��f��jۗ"^��b���O%ܒ��Y}W���������w�vw����X�bY^�Ю�]�����W�Va[q`i�d��2���J�jGէ������{�����׿�m���>���Pk�Am�a�����꺿g_D�H��G�G��u�;��7�7�6�Ʊ�q�o���C{��P3���8!9����� <�y�}��'�����Z�Z���։��6i{L{��ӝ�-?��|������gKϑ���9�w~�Bƅ��:Wt>���ҝ����ˁ��^�r�۽��U��g�9];}�}��������_�~i��m��p���㭎�}��]�/���}������.�{�^�=�}����^?�z8�h�c��'
O*��?�����f�����`ϳ�g���C/����O�ϩ�+F�F�G�Gό���z����ˌ��ㅿ)����ѫ�~w��gb���k��?Jި�9���m�d���wi獵�ޫ�?�����c�Ǒ��O�O���?w| ��x&mf������2:Y~ pHYs  ��iIDATh�Z lU�������hy����>" %-� [��)�eѱ�i���%ۢ� 4n��D7�Y�E�_K��2 n ( P �\i냖~����w��y�G�ږwޒq��{�=����w������M���8`�Ip��(JN�i�v&}~f2�r��t�2$lH�1��l� K��1�e���"�t2��Y7>:z�m�iD�����Z���E0[�����A�D@�㭷��m{��Ew�� �ǁ֋���-x��?ì9�`��u� �m>���z��������s�lr���lO?�f?���nM�֤1Tjpp6/Aq�lX�y�<���p"�T�)!//F�;���Ɏ�����&)6b9w��cV���]�c ��2��?��v�������������:4��$��2z)�5�R�<����=.���<�R��R�0J<_���'��݉��+pi��£�l([�*�[��a���v�
'�|%^ ��Q�_�7X������/PS��-){ I@���PʼUXQ��?�p(-1��#A�ˆ�`#v��4V�{//'�H�#Z/\��-y �c@U�bDL,F��
B�8�
o����翀���$+ӓ�9J<а�ITZ�§���/CW+�~VG<���n������{�����x})� q3�W8ŋ/ná��P]5�� ���ly��^sw��iq�-�L
z]]�:ʡ�,/��zu�����c�<R����.��37ֈ �+����G ڐG��t��T�@Q=�3�ͦ/�� e,HP~e���p�@��` j K�K3��q�G��f%�y.ra9j�B�c6s� @f�B���5rF�`�U���j�XZ�䚇�� ,@�UX�ܳ�_���l��r�C�DR���0Ⱦ�i'�ґGi �*$�K�`��g�$� K$%C"�@ ��
y-—�EO-�aR�H����:������g�H��6��1W�=g@LHx�9�W� �E��� I/&[*9�玊�%�H88�Ct61�4N<~mθ�/�)3�j���;ues��� *��Bo�\rzI���7�}�1S0ҀL0sgϴ��:��(�h!���r��E�.����?'����_��H0�~� v<x� L������oA?�Y��5$ԫ����C[���l�-"��5f��GGh��xb�c�z��`��dM
#���ۄ_�X� �ɣ�OFNjE���ݭv�U�KOᥗ L�:fC�T�9��D����x��y�@D՝���<��l�����Sh�Dq :ي�����s�bAŗp�{+v��)� w�--FM��(�:�wQ3� :�ݳ�� �]{���zJ �I�,���Ӓx&V�@���B������R�����;msS��Cϧ���gN�)c��E��W�;��JN7*1�V!�t`<��I��L9�Е�����w����̔�����e�<�X���mQ�j.�'��S4a3�� �Ç���W�W��� �� ��X�*U��OESPK K9�R�� %lʕy��00Ї]{�F����8��p^k|�T�Hǥ)�ф��ȈI�-"$��}��<JZl.����@d�x׳hx�I���%�0��tY1<��;o�����1ȈH��[�)�����,�����������&T�/D�Z�X�� �4cb_H|b��k���o��Ǣ*~��MsnG�%��e�g1�d"�L��\nj�����0���NT�*S�w&�t�%�d)^X���6>�k����2ӧ3y�$�x�|� D��0D�(J�-Q����-��AP�O��[CʙLN����)�W�l)6<�}(%o"��d���(*�S�L��˅[�' �v{>�յ� a§��Ds�b� �˫���* ?�@} ={��
t.��ۓb:�h4@��Pʒڄ�B&���d�Sd=GFb~ش|�|��� bi�w��Ň��W-����E�%��l�R���8����\3.�]�r� w�^�ۍ ��h�؅����+��D�|�a�V� x&p�@�pGG;���蓚��t���'�����υ-$)F��Y#�ܨ���}�@&cj��6���LN�T � 3�76bÐ3��X�^�id6�@2��/�����^BIEND�B`�
�PNG

IHDR22?��gAMA�� �a
AiCCPICC ProfileH ��wTS��Ͻ7��" %�z �;HQ�I�P��&vDF)VdT�G�"cE ��b� �P��QDE�݌k �5�ޚ��Y�����g�}׺P���tX�4�X���\���X��ffG�D���=���HƳ��.�d��,�P&s���"7C$
E�6<~&��S��2����)2�12� ��"�įl���+�ɘ�&�Y��4���Pޚ%ᣌ�\�%�g�|e�TI���(����L0�_��&�l�2E����9�r��9h�x�g��Ib�טi���f��S�b1+��M�xL��� �0��o�E%Ym�h����Y��h����~S�=�z�U�&�ϞA��Y�l�/��$Z����U�m@��O� ��ޜ��l^��� ' ���ls�k.+�7���oʿ�9�����V;�?�#I3eE妧�KD�� ��d�����9i���,�����UQ� ��h��<�X�.d
���6'~�khu_}�9P�I�o=C#$n?z}�[1
Ⱦ�h���s�2z��� \�n�LA"S�� �dr%�,�߄l��t�
4�.0,` �3p� ��H�.Hi@�A>�
A1�v�jpԁz�N�6p\W� p �G@
��K0ށi���A����B�ZyCAP8�C���@��&�*���CP=�#t�]���� 4�}���a ���ٰ;G���Dx����J�>����,�_“@��FX�DB�X$!k�"��E�����H�q���a���Y��bVa�bJ0՘c�VL�6f3����bձ�X'�?v 6��-�V`�`[����a�;���p~�\2n5��׌���� �&�x�*���s�b|!�
ߏƿ'� Zk�!� $l$T����4Q��Ot"�y�\b)���A�I&N�I�$R$)���TIj"]&=&�!��:dGrY@^O�$� _%�?P�(&OJEB�N9J�@y@yC�R �n�X����ZO�D}J}/G�3���ɭ���k��{%O�חw�_.�'_!J����Q�@�S���V�F��=�IE���b�b�b�b��5�Q%�����O�@��%�!BӥyҸ�M�:�e�0G7��ӓ����� e%e[�(����R�0`�3R��������4�����6�i^��)��*n*|�"�f����LUo�՝�m�O�0j&jaj�j��.��ϧ�w�ϝ_4����갺�z��j���=���U�4�5�n�ɚ��4ǴhZ �Z�Z�^0����Tf%��9����-�>�ݫ=�c��Xg�N��]�.[7A�\�SwBOK/X/_�Q�>Q�����G�[��� �`�A�������a�a��c#����*�Z�;�8c�q��>�[&���I�I��MS���T`�ϴ� k�h&4�5�Ǣ��YY�F֠9�<�|�y��+ =�X���_,�,S-�,Y)YXm�����Ěk]c}džj�c�Φ�浭�-�v��};�]���N����"�&�1=�x����tv(��}�������'{'��I�ߝY�)� Σ ��-r�q�r�.d.�_xp��Uە�Z���M׍�v�m���=����+K�G�ǔ���� ^���W�W����b�j�>:>�>�>�v��}/�a��v���������O8� �
�FV> 2 u�����/�_$\�B�Cv�< 5 ]�s.,4�&�y�Ux~xw-bEDCĻH����G��KwF�G�E�GME{E�EK�X,Y��F�Z� �={$vr����K����
��.3\����r���Ϯ�_�Yq*���©�L��_�w�ד������+��]�e�������D��]�cI�II�OA��u�_�䩔���)3�ѩ�i�����B%a��+]3='�/�4�0C��i��U�@ёL(sYf����L�H�$�%�Y �j��gGe��Q�����n�����~5f5wug�v����5�k��֮\۹Nw]������m mH���Fˍe�n���Q�Q��`h����B�BQ�-�[l�ll��f��jۗ"^��b���O%ܒ��Y}W���������w�vw����X�bY^�Ю�]�����W�Va[q`i�d��2���J�jGէ������{�����׿�m���>���Pk�Am�a�����꺿g_D�H��G�G��u�;��7�7�6�Ʊ�q�o���C{��P3���8!9����� <�y�}��'�����Z�Z���։��6i{L{��ӝ�-?��|������gKϑ���9�w~�Bƅ��:Wt>���ҝ����ˁ��^�r�۽��U��g�9];}�}��������_�~i��m��p���㭎�}��]�/���}������.�{�^�=�}����^?�z8�h�c��'
O*��?�����f�����`ϳ�g���C/����O�ϩ�+F�F�G�Gό���z����ˌ��ㅿ)����ѫ�~w��gb���k��?Jި�9���m�d���wi獵�ޫ�?�����c�Ǒ��O�O���?w| ��x&mf������2:Y~ pHYs  �� �IDATh�{l\��w����뵽k;�+�k��@��p����G)�R�&j�UU�VT���J�ji��j+�*�HM+Zh*)JB
8!OǏ�v��8ql��}����=���Mp��F�JE>���{ι3��|3s�$��30 � ����_=�@$EQ��l��������h��d ��N���/t�}#멘5 "LG�F���E$��Y�e��g� ��;��.���k���� ��a�0ծ�;�?��DvW�T�mki#�����р ��wn�9��"/
���G:��|��� �*�M�I F��,\&��O'5�H�R=B��%�Ɓ��nn����`�@<
�8��C�nZ�5IyV��>)S߿�<+ a������ N��S�RV`���e�~/�@���A�����(�oă�]�圤�]i���%&� A
�O!!��s�}�}��G��`O'γ�W����:zh���7,�x�KD�O��Υ��� �G>��P3�PP0Ӡ�I��ܗ�s�ӕ6�z�8I�Wa2#�`��0��!���b�����g�,(/'�C��L� �<%&� ƻ[�]$関�4Q:&���O�c�~��7q����)γ��JG��f�x�" "�a���ct~x�x��/2د���G^^Zd�sfGނ ������J���P�E8qf?��(��Ԓ�}�G�n�`��0)�(��&ۄ{�F� wS�Jj��56h�М:�x�l�� �� -�Mh��(S���{t�Ųj7JBer����_��[R�)�H߱��o�&0ʚ �"f�^>�cϽ�٘b�x0ā�^����p{*��X9�?�2�9�!��a�K\w�}T�y�$IsY4���K�� �v���Gh45�W���R�[~n�Ѱ%���(/u����Xo��n����B�N���/*���#V��r�h9Ԃ�'Y�t#��):Z�v����W�/_�X B~��r&#;O�� N� ��|�w��w�Ռר��1#":��ǻ�|���+aʸ+㴟 R`S�(40*�h ���J�C�G�$��#�;��\�I��[�cC�kD�j̆ ����/�鉭��>&���{l"}H�,��N�f�w-��lR�T�GY�9;��y����ͽw%S$t,��� |�Q�?� w���I-��s�i;;M}Y�V�lf89�Pb�k��`0��;1�Gş_t�N���>�W���^,�f�v1������j �r�k���L$�b�Z�8;A�ǁ�AB���jt��n� ��h�H�E�=]?<v��mtED4\MX�AB������ bU�x��r�r��^(]�#�B%�����+�p[e����)6]q__���(�i_���<������?�L��=/&��8a�:S��pV��s�܋V`(l�T�6*��[ ��C��/Ŧ|�l�?|���Z��l9L��'�/[�{yq���G����%Q�����ֲ�l�_�>B��H:k�{��w{"��s��6�f3�Aˮgُ%���Sk������قg��? �f}Ǐ1��{�~�k�~����س�{�8DJ� �Z���|>�F������ ��:��� ���z)**�*rF��m'�U#K� zEɳ����7��9�bIrr��jCy�]V�^�}'���_�y�>6>����RdP����^޵�Z\���B�7 B���Զd���'�ym]�r9 ��-�N���*F� ����'�Y]��I
�&<5&�'�/���{��j4 �h����Ț��G|���5eD�:��K� d�Վj�嘍��!w��M��K0�ϐ�&�5}]��]^���1/���֋�{?IŢU��?�Թd�D">B ����
��p,!��x��dž�mj$?�4�L��A�$%�z5� �.^�4�R�T���X��ǵ_XF4r^k��(٩�4 ڎxQ
nc(��P���r C�۩��n[�]�S��i��c�|�s �X����Y�^�)Ji+�\[fa�h���LD�Q�p >����/5�-��b1e ��B4-**�J��n���X\�XE�_i�]���X~��"Gw=NM�tv���.���D~��H�#\K�a�TI�h<��nXDB���� HDU�wr蔒�Z�h˗/��g�|"Gfn��]�L�A#?���Ƥ��w�����P:ʑ��J�x�Xh�Dx��T�X,&
�I�7�Bzn��q ���rv�iDt��1�ܱ�h8B��F�zzmy�h�r����k�b�������HJI.�K�����䈋�Ɯ�:t0��UE��7���֥�d��r�9���9"�k
�V�
o��rƥ�]2�F�Y��}� �X5cA7n�r��jFg^�����e���z5��j]MQ���d�ó�?��z,���#�m�V�|Df�l���H�=<[����Dz}~>"���l�f"�o�z���IEND�B`�
�PNG

IHDR22?��gAMA�� �a
AiCCPICC ProfileH ��wTS��Ͻ7��" %�z �;HQ�I�P��&vDF)VdT�G�"cE ��b� �P��QDE�݌k �5�ޚ��Y�����g�}׺P���tX�4�X���\���X��ffG�D���=���HƳ��.�d��,�P&s���"7C$
E�6<~&��S��2����)2�12� ��"�įl���+�ɘ�&�Y��4���Pޚ%ᣌ�\�%�g�|e�TI���(����L0�_��&�l�2E����9�r��9h�x�g��Ib�טi���f��S�b1+��M�xL��� �0��o�E%Ym�h����Y��h����~S�=�z�U�&�ϞA��Y�l�/��$Z����U�m@��O� ��ޜ��l^��� ' ���ls�k.+�7���oʿ�9�����V;�?�#I3eE妧�KD�� ��d�����9i���,�����UQ� ��h��<�X�.d
���6'~�khu_}�9P�I�o=C#$n?z}�[1
Ⱦ�h���s�2z��� \�n�LA"S�� �dr%�,�߄l��t�
4�.0,` �3p� ��H�.Hi@�A>�
A1�v�jpԁz�N�6p\W� p �G@
��K0ށi���A����B�ZyCAP8�C���@��&�*���CP=�#t�]���� 4�}���a ���ٰ;G���Dx����J�>����,�_“@��FX�DB�X$!k�"��E�����H�q���a���Y��bVa�bJ0՘c�VL�6f3����bձ�X'�?v 6��-�V`�`[����a�;���p~�\2n5��׌���� �&�x�*���s�b|!�
ߏƿ'� Zk�!� $l$T����4Q��Ot"�y�\b)���A�I&N�I�$R$)���TIj"]&=&�!��:dGrY@^O�$� _%�?P�(&OJEB�N9J�@y@yC�R �n�X����ZO�D}J}/G�3���ɭ���k��{%O�חw�_.�'_!J����Q�@�S���V�F��=�IE���b�b�b�b��5�Q%�����O�@��%�!BӥyҸ�M�:�e�0G7��ӓ����� e%e[�(����R�0`�3R��������4�����6�i^��)��*n*|�"�f����LUo�՝�m�O�0j&jaj�j��.��ϧ�w�ϝ_4����갺�z��j���=���U�4�5�n�ɚ��4ǴhZ �Z�Z�^0����Tf%��9����-�>�ݫ=�c��Xg�N��]�.[7A�\�SwBOK/X/_�Q�>Q�����G�[��� �`�A�������a�a��c#����*�Z�;�8c�q��>�[&���I�I��MS���T`�ϴ� k�h&4�5�Ǣ��YY�F֠9�<�|�y��+ =�X���_,�,S-�,Y)YXm�����Ěk]c}džj�c�Φ�浭�-�v��};�]���N����"�&�1=�x����tv(��}�������'{'��I�ߝY�)� Σ ��-r�q�r�.d.�_xp��Uە�Z���M׍�v�m���=����+K�G�ǔ���� ^���W�W����b�j�>:>�>�>�v��}/�a��v���������O8� �
�FV> 2 u�����/�_$\�B�Cv�< 5 ]�s.,4�&�y�Ux~xw-bEDCĻH����G��KwF�G�E�GME{E�EK�X,Y��F�Z� �={$vr����K����
��.3\����r���Ϯ�_�Yq*���©�L��_�w�ד������+��]�e�������D��]�cI�II�OA��u�_�䩔���)3�ѩ�i�����B%a��+]3='�/�4�0C��i��U�@ёL(sYf����L�H�$�%�Y �j��gGe��Q�����n�����~5f5wug�v����5�k��֮\۹Nw]������m mH���Fˍe�n���Q�Q��`h����B�BQ�-�[l�ll��f��jۗ"^��b���O%ܒ��Y}W���������w�vw����X�bY^�Ю�]�����W�Va[q`i�d��2���J�jGէ������{�����׿�m���>���Pk�Am�a�����꺿g_D�H��G�G��u�;��7�7�6�Ʊ�q�o���C{��P3���8!9����� <�y�}��'�����Z�Z���։��6i{L{��ӝ�-?��|������gKϑ���9�w~�Bƅ��:Wt>���ҝ����ˁ��^�r�۽��U��g�9];}�}��������_�~i��m��p���㭎�}��]�/���}������.�{�^�=�}����^?�z8�h�c��'
O*��?�����f�����`ϳ�g���C/����O�ϩ�+F�F�G�Gό���z����ˌ��ㅿ)����ѫ�~w��gb���k��?Jި�9���m�d���wi獵�ޫ�?�����c�Ǒ��O�O���?w| ��x&mf������2:Y~ pHYs  �� �IDATh�ZYS�W~������P@E@-�%&Qc&ǚc����ܘ�\�*����T��f�&��H��e�dj�qŅ�}A�p�}m��}9mk\��MU�r,���y����9GK(��_A��Яl��Y,�
�����H�111����o�G�A��A=����i��̌�����>�.`��ݘ;w.��󑛛 �ժ� �����744���n\�xK�.��ŋ����5drreee��l8z��I)X�`,\�@P�F�B ���hhhD�`?<���G__�)��Zd��� ��S�� cA~v.�/_���4e��A�z��%4�4cbҏw6�F|(�M�sr��vֈa z��ᅦ�� ���x�:&�-����v�en�Ҍ��>555���sQ�����S�X�����@L�u��rapx�PYT
�+ 7��`����:5q^^�S�)��'a��#q,�.Cjr"&��q�ۊ@L�@�6�Q+3#)���{���#(&QYV��`��N�?>�O� �l��̙3����8�V�@�Æ����z�;'�)3�X#��~���Xc��Ej~Xcc�0e������7H���M��ۅ����A,/(Cl(���)XlVt�bZ��U4��!���@�d����`V� w;����A�,~,�_���QL�1!��1�2���r�h.�3x��M���⭰�X�#a�l3 ��� #RZ�[�q��׃I`�LNN���3����Z�� ����i�y��INE���B�]�3w�:���Fo�̙�ph�e���f�7>��sq��Y��nfļ�! �Q�py�9��@3LMMUy�n���ۉ W
<�9��H���Vy�sa��!�� �4"��� ^Lc������FFE՞@P2�%��I�wwJ�r��� $K``�D���v�9�h�u��D8\�h��[ș���a,Y�Ĵ68�p�T/M��:x�l"�� zn�#/#_ڏ�������C��4�O�� ^ZR�D狙B�����ٶ &rG���D$���ӧ�����0�p+�+�&e�n�'Ȏ��wv(�Pkݢٍ7"))ɴI�9���BB#��M��믿�@\�pdrժU��oݺ���V,[� ����sOO���Q\\�����4z���@K��#G���W^Q�+M�Zy ����EJJ
�^�� 6(�������X�7��z~}5��zГ��Ν��ؘJddl͚5��q��=�߿_1N�Y�~=X��Xk�=��|�|��{! :�0ݹs�6mR �Z �۷o�����u��Q�K4���Q�+JJJT'S/� 5^�y� z�S��=S ����֭[+����� gϞ��fS��EX��Z���(M���*$����a�ڰv�ڨ�t88�&�N���\H�G݋I�iI�
?���ϑ7�}�Y���"iD�y�}T�.Dæ@��4ܲ�IQ3��l\�8N�L�V���d�oiiQN��$��`�Ǵ���$!����I����h�٢���o�Wh9[��Kua �1���+���PM:׮] � ��n�����?�q}����>�m�m�ݤ6 L�V��Kn.pY��z%n4��cgg'V�X��ҋ��B����ݻw�nǮ]�T�c����pK)�ʺ��j)Z;PTZ�B�Ν;gM��X]]��:��g4}�`L��6���f�#��n����:u
~�!Ju��ب� e}Ĉ������/U~����G���RZ�i�[�.*?1 ��"�o��+W�T+B�c1Ⱥ�����D����P� �Վ��~����*?�z���Yx����.i�2X$�\�i��f
�&�59��[o�6��_� ���|E��}��0�=��[}�'M��;��,A��H���^�z����N�L�@6�=k�F�u�Ӱ��������ҿ'������c������[�\Z0z<͐`��;�4�L��l�2\��i��;(,
srrp��~�u��0/u1���qM!ӓ�/w�G|jL�)
���#_�7DK��,wKt�{��db˖-�J���o��Vo{dK}�d] V�����bQ��'�>,}&G.u�)"Mь��٘C��L�G�Dɢ��(��h��BJ(p 4a�CvI� �������(�h�<\�ijϸj���G�'�sm�]�]_|�������({9A��u��lJfF�����_�U�2C6� ��3Y^�~ݴ���@�,'c9�57������h�����M����{�ޗZk�q�=���Rp��1���d�i0�444��W_ ��������{��!�yN�uvyy���@ش��̹S8y�<$�`˶M(�7��Ҹ$�Œ ��w�UZK?����4B&� ��b��^YY���NU��%������mU���V�&Ҭ+j:��X���*XP�EEE�Y?1��Z�,��\�T�CͱN�����Mr��b� d�2{��0X�C85�hŕ��ի����1lZZ����jsa���J��&횹�Q�'Z�2 �($`6�Kun���d��<��}b.w��a��'w1 $r8��;ML�`I��)�h������g��;��a�=)�7O�p�X=�ٳN���{��xm�s>�^$�����? ㊎�J�^� �|����;[��$�>�}rj����Pmm��������!g\2�zE�yE�,������� ��;.;���.��m���\)r�r@�CS]��_����Ėw�Ve M/��R2�`lb&69B�?���eHpģ��T�T߰�c>9�JQ�d�;�rp�ƺߢ��M�oV<����./�R(�H�
H���33 ��:��qhkoE��{(�2ŕ��N���46��ۍ�� �ɑ�h��Z�ys�)?!ݨ���h���Es��u����
ϓrO�Yb���P�y�I��1��� ��`$s�q���@��s�ya�"COR�ӤK��x�{����l?�i͒�e���l���h�IEND�B`�
�PNG

IHDR22?��gAMA�� �a
AiCCPICC ProfileH ��wTS��Ͻ7��" %�z �;HQ�I�P��&vDF)VdT�G�"cE ��b� �P��QDE�݌k �5�ޚ��Y�����g�}׺P���tX�4�X���\���X��ffG�D���=���HƳ��.�d��,�P&s���"7C$
E�6<~&��S��2����)2�12� ��"�įl���+�ɘ�&�Y��4���Pޚ%ᣌ�\�%�g�|e�TI���(����L0�_��&�l�2E����9�r��9h�x�g��Ib�טi���f��S�b1+��M�xL��� �0��o�E%Ym�h����Y��h����~S�=�z�U�&�ϞA��Y�l�/��$Z����U�m@��O� ��ޜ��l^��� ' ���ls�k.+�7���oʿ�9�����V;�?�#I3eE妧�KD�� ��d�����9i���,�����UQ� ��h��<�X�.d
���6'~�khu_}�9P�I�o=C#$n?z}�[1
Ⱦ�h���s�2z��� \�n�LA"S�� �dr%�,�߄l��t�
4�.0,` �3p� ��H�.Hi@�A>�
A1�v�jpԁz�N�6p\W� p �G@
��K0ށi���A����B�ZyCAP8�C���@��&�*���CP=�#t�]���� 4�}���a ���ٰ;G���Dx����J�>����,�_“@��FX�DB�X$!k�"��E�����H�q���a���Y��bVa�bJ0՘c�VL�6f3����bձ�X'�?v 6��-�V`�`[����a�;���p~�\2n5��׌���� �&�x�*���s�b|!�
ߏƿ'� Zk�!� $l$T����4Q��Ot"�y�\b)���A�I&N�I�$R$)���TIj"]&=&�!��:dGrY@^O�$� _%�?P�(&OJEB�N9J�@y@yC�R �n�X����ZO�D}J}/G�3���ɭ���k��{%O�חw�_.�'_!J����Q�@�S���V�F��=�IE���b�b�b�b��5�Q%�����O�@��%�!BӥyҸ�M�:�e�0G7��ӓ����� e%e[�(����R�0`�3R��������4�����6�i^��)��*n*|�"�f����LUo�՝�m�O�0j&jaj�j��.��ϧ�w�ϝ_4����갺�z��j���=���U�4�5�n�ɚ��4ǴhZ �Z�Z�^0����Tf%��9����-�>�ݫ=�c��Xg�N��]�.[7A�\�SwBOK/X/_�Q�>Q�����G�[��� �`�A�������a�a��c#����*�Z�;�8c�q��>�[&���I�I��MS���T`�ϴ� k�h&4�5�Ǣ��YY�F֠9�<�|�y��+ =�X���_,�,S-�,Y)YXm�����Ěk]c}džj�c�Φ�浭�-�v��};�]���N����"�&�1=�x����tv(��}�������'{'��I�ߝY�)� Σ ��-r�q�r�.d.�_xp��Uە�Z���M׍�v�m���=����+K�G�ǔ���� ^���W�W����b�j�>:>�>�>�v��}/�a��v���������O8� �
�FV> 2 u�����/�_$\�B�Cv�< 5 ]�s.,4�&�y�Ux~xw-bEDCĻH����G��KwF�G�E�GME{E�EK�X,Y��F�Z� �={$vr����K����
��.3\����r���Ϯ�_�Yq*���©�L��_�w�ד������+��]�e�������D��]�cI�II�OA��u�_�䩔���)3�ѩ�i�����B%a��+]3='�/�4�0C��i��U�@ёL(sYf����L�H�$�%�Y �j��gGe��Q�����n�����~5f5wug�v����5�k��֮\۹Nw]������m mH���Fˍe�n���Q�Q��`h����B�BQ�-�[l�ll��f��jۗ"^��b���O%ܒ��Y}W���������w�vw����X�bY^�Ю�]�����W�Va[q`i�d��2���J�jGէ������{�����׿�m���>���Pk�Am�a�����꺿g_D�H��G�G��u�;��7�7�6�Ʊ�q�o���C{��P3���8!9����� <�y�}��'�����Z�Z���։��6i{L{��ӝ�-?��|������gKϑ���9�w~�Bƅ��:Wt>���ҝ����ˁ��^�r�۽��U��g�9];}�}��������_�~i��m��p���㭎�}��]�/���}������.�{�^�=�}����^?�z8�h�c��'
O*��?�����f�����`ϳ�g���C/����O�ϩ�+F�F�G�Gό���z����ˌ��ㅿ)����ѫ�~w��gb���k��?Jި�9���m�d���wi獵�ޫ�?�����c�Ǒ��O�O���?w| ��x&mf������2:Y~ pHYs  ���IDATh�YyT���]�{�w�DqM�ǨQM�JҨ�kz�9m:�6M�4�D�ƙi�ԙN33�s�z4M�cԪ56.�o� ("�"���.�y~�2����9y|���{��}~��>��.߂��-���5@\��� �4�L���;�^�&!�@>��}�����������3�yo�������z�LPCқpUU%
n����4"��a�!H�;;;�XUUn\��9��� �4{��py0d ���`ǞCp5{�[tik����0?�Y477���J�K���{�*PPPkc#�BC�?�����a��a����=��a�.�x�+��V+���8^\�d�`�ĐJf�G8t�@�
��s����ԴI�H��]Nt�����!´?��\U���h��DUe�n���f�x���Wڈ ^��K�q#�J}�յ���e˖ p��e���1@ܾ]�W��)c���.�<>e����o��:���7Wa��6a���[x�� �_�]\��$�m6��iLt46��F����������W._��? #�G�o �3���~�}�; -u�x~�"DDD"��u�?6�mm
���]�����hinA[{:D �?�d^����*�[�� �ho�@����ͻ.t#� ��X��a���+����~��2(c �����Â�����;�g&>2I�looW{7�-bJ���򂻻�F$77wxy{��\�y��j���bNi�%b�[�����h�[W��0�68a�@��Bavs��8������q���CMu�8(���+W�����Q�wY�?FMm��F�h*�L��=�/d^N�E������$t*��Q����0���[t!jx�L#���R����a�yX����v� |����b\b�,]�����⣏?�߰Q���W��w/�X�1cƢ�~��ݎ9��37͍M��*>F�kniCM�elܸ.�W�t*�� ��2K�VTT(��.~Y��&���D^^B<;����" �@���j<1���#6��o$Ѭ�ظ�}�5#55U͌@�O;�~FI����u}�lZ\�����p��滻�vEHTMU9.\�5�{���ԩS��E ����k0��
�ܹs�y���s_|a1ښ�z"�0v������ �a�dz���$NjF�8�������@z�֬Y�I�&!??_�I0�}!!��v���Ґ����w��|___��:�2̰�܂�8p`��1��/.�!F��s�yI���@'=z䯨(/��o �K�?{���Add�nDz$??+V����#��(�[����rr.�zQ),f��e��_LL4�z�i+@�9�!������,)M�-[���\��hn���V$�M�;��3f ((�����3'q�d����Eڨ0L�9K�,-)ƺ�7 %u��Z��K��ቢ����q��;�ߒ��6�� �R�6N?���N��jB��XؤȺr�>��?���.��W��䑣�j�*D�K %A ���>�D�?LAcS3̶����z�<{O�}ޒ3��$���<�$��C��bu�1+=3����g�*��Ҁ��E��]HI+uR�&���cX�l��EW���� h�Sƚ��#�R1�l-��~�7�� ??�ĥ�Ra �]�xn�JxJ�m�b� Ԧx:L�7�_�h�w{֧Z�G���`���
q��&[PWS-ۘ��� _a��{������ �_W��O�J��y�a���G�џ[�V�t ���a��BP��/ t�\�w�d}����D��?_�<�sP �<!��jb���4D���^�;w�2�{)��ϟ�y���K̃��E�wvv���0�֊)g�%�c*�ݽ ]�I��
b�����(;4-b�z��R�F �]Z�-+�3��7�a+
o���{��&Hy#2]VZ���Dut���w}�I�H�ɌN���{��WP��8����Ŭ��}@P�kk�2�<�%/��y��`ʔi�;~bn�7���j������[�3M�vd|(��E�70L�8��\�`�
PM2����_ �Ģ[�PR^�q=��nCtl.�����㥀t��~�
N���޵o#%)QQ���;L��`�R�� �0v�����ֱ6z4��ڊ��
����7K�)�[�|9
3��T�� ��h���[M4�f9_��H�T/Nڬ��֤�S���G�(,C�������.��[���<:s��[��0��h�"�Z�rnqM��֦ٷ�7�߸��1�I���ΌKz�SPr�x\�v�'�IL���exLL�l�R�������sE�89G��ُ�ѭ����IZ��7Mp��Ţ�����W�ήS� ��8h��̈�cp=)=�q[k�&�IzMM������١�\E�L_���.��b�DUE9�ss'�AB9�M�ȱ�]wRB�\" >��{:�#��b��,� >*E�!�I�Rkdx�Ώ�̸.A�K��i����f�QiR{�� �4Q�B��O�$}���$'I���0 �����!1V�)I1���*Ej�y >1YL�gO�HF���d����ە��7�����h�h��u����wJ4��˜�1���E��ؙ� B;08~���Epܳ��1�R=�T$�a��#�D����:�)�z� v5�'�~oۤ��!i 1�0����?�#��N%�Ҝ%���W1-�͍�º�����{9�����i6{h�5ˑ�^�]�U��ϐy���@��Sn۶�o�`Ĉ$�wz$.�]췡��l�$�.F��m"}��͌ ���0<�xL�t|V�l�ݕ���O�b���tp�0 ��� Gl��Ē�X�r���H��E�ܐctJ
n߾�L��;>���X�\�m��{8s�Z�qw�0�CM�aj�M4�%�4Xl�J����?��Yb�4��W�����W�4=���8r�8Ə��<�^�A5����W^��G��J��+���{J�*���N!
o\�U��Q��”t�`���]l���R"�UrM�"I�Vi�%jQ�*%|DT,""c��(+�ee%�l���M�-�O�F��H�>B&9Y�]�;��Y؟������Ze��i^ =A!a"qw�a��Vk�������9C�����͉R�V�U�b�����S� Lg�)*�<Հ¢�l�rA~U�`�����(3K��X�m�I�Y�!���%M�^�TUܓnz�:�2+�9��n��fV���yy��n�9B���� ��NL�>]��� } ��eL0�p��)�����O_�m���C��)�1�r�h.2*��7��a�4�h�t~�;=�g���)-����(���,��(Š@߉����>�����>�ɓS�p� �:(N�/P��p������I��SڟL�ܠQzXe%���<��ӟˆQc��ذV=�$ryjep���RΤ!*:^lα�e�q�g��N5~�Ϋ�G[���J��偀�Ƌ�����9�j!LK2ʄH�bx�����M�&M�I��n�)(3<�9�O��|Z��L�2I~�$�={�8�J�c�.�!H�g�᷿E��n���'�=���O�Wm1C[E+t������S�v5>~�Œ����T�D�N�9jr� ����F�� -M�fp���!1B.Oy5��%qIkF"%h�f�ޒ@�:�/�B�h鞄�<��̜=_�۪� ��ہ鏬x�8z�K9U�*ycc��>��Xȍ�GŨ��X��7n�;����ֻ����i龔#��I�*yfl6��_ʤ��='}���$JG^��Pǀ�/��bO^-H�u���EXX��N-'h�����S���f��AA'y&T;��%l���ԠCj��piPK$�qtW���i�����h�az�぀��oh�G΅S�Yˤ����aq�2&i�E¹�]M��j��r���1���l�?��^{U�rOh�̝[h�_'�!��"�� 7�GE�б�(.�y �P��1�#/j�i��׮}C������zs��w�KJ���]��~��U���g�s�αϛ�a�F�]¶����ؗ���=*:�.GV���e�;g�����.���OΘj�W�Jw��U���X{]]�~7��/.C�R֫��ڹ��.�l٢�g�8qR��8�-����Rwݑ�{6l���1ƍ����K��yU/on�q��@KW��m�&&[�o~�;�o��o�`���9�<b,2��ߥK��O�e��fޒ �5j���5�3�`x�E����c4صdu0a�]�������@����x߹}��؃�%��E����P��g\c�����X���o��������o�6��IEND�B`�
�PNG

IHDR22?��gAMA�� �a
AiCCPICC ProfileH ��wTS��Ͻ7��" %�z �;HQ�I�P��&vDF)VdT�G�"cE ��b� �P��QDE�݌k �5�ޚ��Y�����g�}׺P���tX�4�X���\���X��ffG�D���=���HƳ��.�d��,�P&s���"7C$
E�6<~&��S��2����)2�12� ��"�įl���+�ɘ�&�Y��4���Pޚ%ᣌ�\�%�g�|e�TI���(����L0�_��&�l�2E����9�r��9h�x�g��Ib�טi���f��S�b1+��M�xL��� �0��o�E%Ym�h����Y��h����~S�=�z�U�&�ϞA��Y�l�/��$Z����U�m@��O� ��ޜ��l^��� ' ���ls�k.+�7���oʿ�9�����V;�?�#I3eE妧�KD�� ��d�����9i���,�����UQ� ��h��<�X�.d
���6'~�khu_}�9P�I�o=C#$n?z}�[1
Ⱦ�h���s�2z��� \�n�LA"S�� �dr%�,�߄l��t�
4�.0,` �3p� ��H�.Hi@�A>�
A1�v�jpԁz�N�6p\W� p �G@
��K0ށi���A����B�ZyCAP8�C���@��&�*���CP=�#t�]���� 4�}���a ���ٰ;G���Dx����J�>����,�_“@��FX�DB�X$!k�"��E�����H�q���a���Y��bVa�bJ0՘c�VL�6f3����bձ�X'�?v 6��-�V`�`[����a�;���p~�\2n5��׌���� �&�x�*���s�b|!�
ߏƿ'� Zk�!� $l$T����4Q��Ot"�y�\b)���A�I&N�I�$R$)���TIj"]&=&�!��:dGrY@^O�$� _%�?P�(&OJEB�N9J�@y@yC�R �n�X����ZO�D}J}/G�3���ɭ���k��{%O�חw�_.�'_!J����Q�@�S���V�F��=�IE���b�b�b�b��5�Q%�����O�@��%�!BӥyҸ�M�:�e�0G7��ӓ����� e%e[�(����R�0`�3R��������4�����6�i^��)��*n*|�"�f����LUo�՝�m�O�0j&jaj�j��.��ϧ�w�ϝ_4����갺�z��j���=���U�4�5�n�ɚ��4ǴhZ �Z�Z�^0����Tf%��9����-�>�ݫ=�c��Xg�N��]�.[7A�\�SwBOK/X/_�Q�>Q�����G�[��� �`�A�������a�a��c#����*�Z�;�8c�q��>�[&���I�I��MS���T`�ϴ� k�h&4�5�Ǣ��YY�F֠9�<�|�y��+ =�X���_,�,S-�,Y)YXm�����Ěk]c}džj�c�Φ�浭�-�v��};�]���N����"�&�1=�x����tv(��}�������'{'��I�ߝY�)� Σ ��-r�q�r�.d.�_xp��Uە�Z���M׍�v�m���=����+K�G�ǔ���� ^���W�W����b�j�>:>�>�>�v��}/�a��v���������O8� �
�FV> 2 u�����/�_$\�B�Cv�< 5 ]�s.,4�&�y�Ux~xw-bEDCĻH����G��KwF�G�E�GME{E�EK�X,Y��F�Z� �={$vr����K����
��.3\����r���Ϯ�_�Yq*���©�L��_�w�ד������+��]�e�������D��]�cI�II�OA��u�_�䩔���)3�ѩ�i�����B%a��+]3='�/�4�0C��i��U�@ёL(sYf����L�H�$�%�Y �j��gGe��Q�����n�����~5f5wug�v����5�k��֮\۹Nw]������m mH���Fˍe�n���Q�Q��`h����B�BQ�-�[l�ll��f��jۗ"^��b���O%ܒ��Y}W���������w�vw����X�bY^�Ю�]�����W�Va[q`i�d��2���J�jGէ������{�����׿�m���>���Pk�Am�a�����꺿g_D�H��G�G��u�;��7�7�6�Ʊ�q�o���C{��P3���8!9����� <�y�}��'�����Z�Z���։��6i{L{��ӝ�-?��|������gKϑ���9�w~�Bƅ��:Wt>���ҝ����ˁ��^�r�۽��U��g�9];}�}��������_�~i��m��p���㭎�}��]�/���}������.�{�^�=�}����^?�z8�h�c��'
O*��?�����f�����`ϳ�g���C/����O�ϩ�+F�F�G�Gό���z����ˌ��ㅿ)����ѫ�~w��gb���k��?Jި�9���m�d���wi獵�ޫ�?�����c�Ǒ��O�O���?w| ��x&mf������2:Y~ pHYs  �� lIDAThݙyl�U�O�R��e_���RƂ(��DL����+
�h\P�$(fT2 ��(�"�3��P�Ed��,Zv
���@�����{����O�o��{�s�}1�� @�_@�/#H��i��<566��jkk�j�����ƈ1�8 �0^BBB��� A��ɂ��/u������̙3�x�b9|��4k�L�8~�����J�n�� .�>}�Hrr�?�Õ�F��$A��;vL~���Z�j%�:u��/�X222ty�`֩�����ٽ{��ܹS:t� � �+��R����(dP���ۉ'd޼y�v�Z8p����W�v�b���8u�lݺU�c��뮻���:%���hǢ�`������^�ѣGK^^�$%%�4� ���l,����?�P��G���T��y��#�(8 �8�}����c�y����7^�h�!|��?���|��ޮ]�t��ӧ���0�k� ~���̙3}�pFl�9�]��.�:�=��#�s7Ea�h�QA����"DP@px�v��pm��~�رc�K�1f?��z���TUU�w����k���^�?��ḋ�=zT�),,ԡp<÷{���Ԕ�i�&q��ԩS5\�D?3�KKKe�ƍZG�����/��֭[k��N8i׮��1B233媫��K/�TiA������8!����[��o�{p=��q�u�,QYY�3���@P+�\]]�}��7�СC�F�-Zx.{�����第,܉'zNh}[��N!ؚ���"f��?�\+�ȑ#}͢GC�Eڜ4i�Z �o�^�(|�PC��b�6k�,��f͒��_-�w\.�����˓O>);vԵ�r�x�NggL�*����\���j������٣n��]w�uBU///���
qVRFa*x��ɓ'�;U}Ȑ!�[]\hs�M����|�y���"D~��G��k�~�o�ā D��O�#�)V��k��t������+�K.�D���/�\{2h9��O?�T\����V��Z��s�='·�]\nW?d���>�,��,Z3�1� �ڌy���X�e˖��O?�����'/���v(�bIII��n�I�l�� !1kI�6mT�x����?`���Wr�@���0�υh�ƃpI@}�u��L8\����� �'�Ѳ��꫚�pc �"
B#�F6lؠB�*�>��,�\<7o�\[�m۶��T�z�Ҙ������������ @!t�]�t�w�}W��gŵ.RVV����u�� v�Z���[nQ<Ŋ�t�R�41�|��]�� [�l��˗ ��� ��t�2y��5ƨM4�����&kB�l�d��Ʉ��^�e�J�tN�O�E �K��O<!?���f.��m۶���/k� �Çׇ����ݻ��#�mΜ9r�wذ`-�����k�����w������r�Whv�޽�L�>]v쐮ݺ� x�Upz��w�}�^��(z�� �����bgE� ���ʹhY+�v���� ����S���n�5=�!=��Z\)Œ_.cz=������k�ù��B]�f� ��y`ѢEz�[l?�E ���t������#I'6�Z��"H.��W�پ}���%�Ѹi}PG�A��| Ɔ~<�C�}:�뱭�-[&�i #�&�3]�e뱎�ٝB�|S�"����q3�a�!�d0|xʔ)�T Z�E��o�Y���ѣ�̝;W��5k��霭����u���i]�I�-O�7C� �y܄��5`��,³K�J�m)����e�…�j�*M�&L�3fh@�!�a� �z�jq����;�{ ��NP[�bY\�q�[$�ZH �hq�ʕ�Y�l���D���B|��Y_NZZ�~�j0O�P܂@d� ����1� r�MU�m���������b!2{�lu���y�*
n`��h�3���\�����8��0�JpX��@�ώ�� �?�:�3�Q�#��Z ���QTP\���Fa��mǕ�����AiL=[�۸ �� ��X�����!��`tX&hA�Q
'�L�M 2EK  ��]4��X!�fn&W_}����ݻW�����J��p�É��+v��I{4��Mzg��g�yF[� `Νn���n��VY��"ɐ���$�wh�y����d���| �:�����뫸h�6a���OР�ł�ݘCh��1�d2��)w,� �:h��_���Lq�_��%�8��z�!���A����x@\K�ՖF�� f�j4ud��3��x:%��A����3����Z/�(w�n��[�N�n٤a��=S�V"FQHnn.d#
���8�!&1{d:w!�PϞ=%wh�+;"[wm�$���%P���v��3���`���R��(�L�:Epe�cVE���sn���뮑oAey��Z6h����W_}��)~�.�a�F��S�rF��b)YJ*�OJUu�TUV�6�%,N�f�I4�-O��M�20o�d������@X�>.E��6��'�E��0�2�+���'���\6��N��˒�����<�k�G�����J��K�C����&]��c�c{�v�9Q#��%kB��J���*uIp��ui2&/���*�,e���d?~�IeU��-�) W-��3EZ�smL[��2=U�ȓ��e�U�.� �u���� ��H������VF���"� u1�-.�٘Ѝ# ��x9|��̛?I�z �ڡr��X
���e݃m�UI�4o�"9rdԨQ:�$����{�[�b� �rjK���u1�昔���2%V`8һ)����ިEL����d�S�܎O$�)Gr[k�=�D�V�I��'�G�4��� ��֝A�|���2m�4-�In��ڒ�ZY��z4��awj����
� ��>�5��ܶ4�e��2yb��.L��+�ؿS�sv�$�&�镦�}9�Ģ��i���LW^^�ٍ,�/��S5ӱ�߼y�\v�e:��-ԛ�� �7ʵ��]�Z�d�=�������孥:���֞]����/;=,�{��8�A���r6MoްY �%���^����g��#�[�3��46]�~�^����K�䖉�����.Bܤ�/��B�(ր.��t���0����!��i����E�))����8����J�.� \�q�����S/��"uv��w�
���A�N�Ql��� ��=�u��y���8�C��ž���]�'��i;��\��\��9׹�犥窾��D�u�:� �ύ��`�O;Th�I*�[�G���̊;�Ǣ\�-�b<tȴ5x�d-�~<��& ��LCk����i/|�I�@��H�66z��5���5Y#��r�/����
iIEND�B`�
����ExifII*��Duckyd��,http://ns.adobe.com/xap/1.0/<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.5-c021 79.154911, 2013/10/29-11:47:16 "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmp:CreatorTool="Adobe Photoshop CC (Macintosh)" xmpMM:InstanceID="xmp.iid:2E7C0ACC87BA11E386EED8BBD13FBACF" xmpMM:DocumentID="xmp.did:2E7C0ACD87BA11E386EED8BBD13FBACF"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:2E7C0ACA87BA11E386EED8BBD13FBACF" stRef:documentID="xmp.did:2E7C0ACB87BA11E386EED8BBD13FBACF"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>��Adobed������d����
  
 !
1"#AQ$aB3q�2R4%�C&'!1A"Qaq�2#���B3��R���br�$ C4�%��ScsD�� ?�)G���~̱�/:������6�6�:A������-���b��4�Q�r���HK(�JQ� R��G@.��b�=Ӧ5H1C�"�:4u��:T�V>�ѱ�sc�����H����Y�0�ͭ*�pf^TU��A*�|ͅ�ӧ�R����)G��Q�(�qJ8�R�)U��?*=<�F������;�� �\�T��S���*<)�l�Q�o՘�e�enej$���a���"�+7 U��"��О���6jI�
���sye�M�'P��EPX�Y���SQ.g�x⋷����A�ZEsb���_���\4a�Sz��k-�?0���i^2߿���{F,��|�7�č�� ��>��|�$�����0_b�!(����A�T��W�·wk�7��h�;;��Qg�
��&�S���è$OIЏ�B%[�̐�!�X���i�YJ�M����b�s$�E�խ�����/X�w�q���дa�i m�־�_ČF�0�=*�y[V�8�tm��u֜��6Vټ������%��?Y���%zFf\��uim��~�\RP�)J�2��ě�?<Oʩ����Y��X�D޷ƏI)����w#��%�`�U����Nr�� �u���+VR�Ye�> ='ˋ}��s���_�Y��Yz�� K\n*������W���in�j��������Z�ւc�Q-e�}B��L�H��z�Zɑ�9���k��>���$rƲ���0�e ��#B*�,R�+A:2L�̬`G�Q�J�\����qJ8�C��w۫�>��6���]"�f�1R��EW��6�L�:ycW�uh�Y�""�p�HK8VS�z�C�T�֛*����/k��\5�\�Z�=Ɠp���a�u��Y����#J��b>�{V��ڽR��iRp�c7����w�ٸm��ma�*���[�PP�㨓 �2A���' �0�:IO� ���Z�*?��i����h��`����S�W�p�Uo4��6[Q�ʬ���k��!�wprGw�ehu �S+�Q�(╬�.ޡ�-U�B]p:�Y�%-��V�.E�b"XS��X�Z|Í}XKL��2�]ZS���)���`��;1誠����퍏>^Dx��_&YGVw!UE�.IR��맘�vF��`����o�D=&'nTkt�u�:� v�)c��b3 �#F� ��K ��Lg�;�{�$�p��˚"6W��@�eY 5;n@ԋk/�On�ϴ�w7�$xʬ�ƬM��Dϰ���`M�76�D�]XUR�)G��USZ|������׋��&�`������fXMN�t[�^��ݖ�g�rX��� ���[-��S��({�S���%�1��!�9(�b=F=�u+����]�[���f�8����o�H����企�1G ā���d�l�_��Ŕ�����BM�Ya��U�h����pS��� '1$3fGJE���x�!�^ikm�Յ'9�q�eu��m��> ��#�Pz�O�Q�(� {�s��Tܔ= ���S4���U��� �ۛ���_rl�����sC�6d�q��I �댫 ��O�J�/��Y��Խ{�����+���ATe��}�*����MZ�Iǹ,��C}I��J��)Z��/��Z�:����Q6=^��\��ɝLq+ �2�e%����l�fD�^ml���m�ХK.���Aw;U�z�~kd�"�V:�V�-5�*z� ���p��ʹ��O�����)9�3�*D�J8�R�6�Er�Z��\&�+UJ�4���b�1��x8(pސ���8��8`G�:�uū B�璳*)w �z5$��: ��\}J���n�m��掸� ��g��J\uͦ�Pܐ4������+<�lG\����2[)�&4Ҳ�Ö��n��������r ��0Į�/k�����y$�!ڷ��E�ʳ�\�֎)G��Q�*:�k�c��͇��o��X�uMsN���"v�z�ݥ����i���O��4�����0��e�[l���$�G����`��1��������b�)f�m� 3��:}�
�\����qJ8�b'�58I[5�n"�[��Y���PА�a4�̒���x`#��en��m��9Vq�qJ������������6�[*��v�ʻ~��� ��j�`�;tl���E�@���Ȍ��6���T�� �6T+��ڷ�;E�PF��iT<����2����Ҍ��&�Ŷ��(�܋ j�t��������nʩlꋄ��Iq�s*��a'�J�#]� .'/s#�����c8�����$��B4 ����GZ�ܚ�G��Q�*�v�� ��+��T����۫�%N�i���;F�t �D�������s�XR�e�Y!�4�e�]����fIݹ|�ql���M9�j� (F��m*�!e �t�;?���lX��p���n���p���$cҭ_U�x ��);>���y�FX�Y9��p�H��\�6�Y���{�w-�Ʋ�y�kZ2�gJd�M������V�6�@?���]��$Ctaq���OG��W�kChS�)(m Rֵ� B�eJR��� Jq�\�?�1�*�/�Y��V������T)d�I���ڞ܈E���l�'�z�h��Z�d6VZ�N%^�'(�\8� �ء��>�m����DŽ��o�S��j��>`��i.&߮{9�b�q��b�iC���6�o8�egQMl�0���}�i��>���e>���7�������s��8������Mu�u�ݦ@�][t��*�L�_�S�@���83�N5�q� a�_o݇}���R��Pt6=j��:Wv�qJ8�k���*�_Xl=�w\�t�aK��m.B�=.��R ��eFB�2����%�l4����c����!T��?�����
�4idX����6���H�6�=[��[bzR�)�y�wԹ�t�h�l�#Mm 54��0��d)B�^o&0�s�R��� M�>WU��rFM�?$�7M�p�x�a���W7��8�.9Ca[�#���yH{I�����zU���V�8�R�)Q[�]��]ҩl��~^J������/�d�P-V]Pp1v; ULRΨ"Z�Nᕔ�Yw �#*���h}N�d,�� ~ ���:���IZs��+
N}3�g�8�q�L�ӊ��J�ݍ޵n���q�.�99MҚ�ߴ�uA�>�)L�2�$,�fJJH�q����2��>�I�I�����]Y��&���hԛR���v�ܺ�p{.��T����<62��+V��fb
SJ� Ϩ2ӇY^0�.�M�Zs�@�2�\�= Y��I��?0ka�5
�MMCV��V)h�� i�3��'  3��J�����G���}����i
R���9�K� _���OwsK�
JZ/iC�<� pֵ!�A��f\w�
h�뮊�KK�-mg ��0��2-���}V�;8��"kZ���{���k�5��ֶv������Ʒ/W�ԥ�����qKk/ ����CKe��:������:UMZн���Z�Y\���� ���w b�G������6�EN�[F�&$~G�;,����!�-T�K)�J�S�ƿuzE�?�
�������/2&���QR�]}�e� �GpT�Qz� n�Z����Ԍ��wd�q�q�V�N)>P�����-k�Pm���Y��鐄����\c�5j\��j8�q�("�� 68(��d0���oQD-�a�c9R֬%8Ǯs�+���(��1�CjCoH�F@}u��$���y��;��)*�q�L�W�v�d��1S��Z�L�<��a)Ƴ��i,'�c+o?�X½q�<\��~�&���)-7��m��Œ�ul>�� ׇZ�y�!x³��9�}3�)Y>)G���w ;���k�-��in�9�hqԶ�B�錫 Vq���?ӏ��@��u���&S�6 ���@� !v=�[M�z�~`=o;J��Y�g`��QX�TtL�y��BJ`E�G��_�t����sM�r��҇U3�]7�����<�$��(J���۞C;�^o��e��a�VV oS�
��'q�쑣��Ėe[B��C^/B������GԠ�%�[�{B {����֨�֪�|���J��:�{���V��;��� �a�B����E��o9�
�$�k��U�2z&N#-wTR�l ���LJ/vy��I"��V��ݞN{�e��}W��} [�}�+vU�z�x�)��
r�_DEmk�J�{�0����6����Wܰ��ذ�<'n�"崺� ��>`�7��jN�����I>R͗+�*!P�%Գ 6� ��'��jh���VG��Wć���{*K#���� ����HS��Zi+u�a)ϢR��9�1��*�`�������� ���UGR����j%�]��^6��і�� ��J��G"�!g6Ɇ���6���+2�D����/�������r��d��M��Fv�؇>�biZ�c�;5�2s!���)(�V��ٓvs�
��
�D%
���3��X+teFg[��̷�H�8٨���s•��I8�H�6>J4��(�0e�9a+�q�[R���'9�q�u!��W;��R�)Fs�c�?�1��9������y������Y�X�v�׫
!�j�g@KIֆ�"]�˲����'��-�H�b� YHh QTɛ�&S`�,m���� {\�����U�q���!,2��Ր��k��MG�t�WJ���hRT�'
J��)*J��%X��S�g��*j���R�)G��UW�l�?y�6���ʡ�ш�OID�M�����!�UJ����8�u R��bN=�J6��� ��mҦWd/� ��]��i����U��d`j��ͭ��ud;�����f�NLX�fM�*�$� ��T!�
mga���52�*F�R[p��7�ի
Kf 1l���d��V�ӟ��|�9�����ǪU�e9�3���_~)G��V*vz� -d�L�Wk�1�K�O��  ��>RZP��:8�S�>�i�ӕ)X�3�)\ k�B&6zr�[���:
2"jVr2:&VJ�`�՘���d3��H�����o<�5��i�T����(�qJ8�&�z�'�zi�*��CWnˬ}��^:o��X�U���c���$hқ&A-��
/,����/߫���H��0%c6NQ�/u�voupb?��[��iqL�G>5O���(�F��OL�Ѝ�A��ЊԷ�o�]����n��������Q���.k:�0��v̕Z'�Iu�M��zU�M�E,q�\��C�Iڞێ[� ��dIF�]�~�k��I��vפ}����r H�eS�H��z${<�}����z �}%7��4�3̍� p�;R�=��3@�����˜���ڪsT����N�ӆp"\x~q�e֚.�I؍���7-�q����M��O2�Z�2�kn�};�ܓ7�#���>#���楑�d����7u�*ʪNӢ��XX���էh┋_��i�3�3��"|��:#J���-��P6]�}��S��Ɋ�>�����~^B���ע�ʱ���NLx����1e.^��Wn�?-n���+c�w��$�9�̈ K�*���@[���iP�[�� ,8����J�_$��f�i�~�<s�a���%Nc9�1��[�PJ�Kzb�ߠI!mr<m[; Haa̦�Ԓ@
�k������N�랲�x�v��6����Wq_�v����p�� m5j�舛� ���`����[eYO�y��W��w�5�/'���q�HLp$�$+�ivm�Afƀ���6��n�>e�����9h�Y�|a�o��$hB�u* ��O� -�X�@��\�=��@�X-:��ik�&�+K���f��DBX�S����v��Uu�"��K#:��e�VO�f�Oܸ�r��?�D��t`�����%�ј47"�c�ir������+���*� K�Um���V*u���>������;h����@���{0Q$"SQ��0�L�v] e���9��h�H�\��e����S~�re۸o���n��?�.���:�il��v�'�;��[Z�cֽ*�N�4�����>���ږ�]���W����q��br$� �Y�D��x������l�u��2H�k��|����� �Ǎ��<���!@�#�; ��]��Pv�6T�j̤����#��KjI��:ը��W5�oS�?t����4�57k���z�Sq)jƭULBW#�;5`�*&�6���&�ҿ�~�~��^~�v|���M���i�#��3����ޜ��y�9��̑�ě�#LX�7,ھ޶��o=��yE໧:����g��!A���� zX����� �;*.������� N�׳ֺ cc]nԛ��I���{mJ�5 �f�ᢧ�7 LȬGK.�V�k��է��;O�9y���w���̟Y�b�/�������Hft�C�#8��4���ҷ�� �<�R����������M���-��.GC�l����ݝ�ޛ#��GKn����j*�Ի���)�k��P���D�2�B+5\yڒX�zI�(�����~���P{I��|,�8���y0s�Ug�x����6,�SՅ�ȒG*�T�n��~����EU�o<3*�$w"�,�~� S t���g_j2[����iy;|�y��4(�Ta'm�3T��G�C��X��k�c�.��ʘ+ -��sq���Ӿ��~��q{k֥/%�R��LUo0�&�_���F����)�� �o%��xYP��q� �� �*�T���� ��T����H�}X���ԝE�����OE_-�N�F�31%t�$��3 օ� y��B�dz� br�5�Խٍ��]���� ���̋&|��Tb·,���������pr�vW)���'��D����f��Ǒ��.v�Y!���6m�h ��J�� �[����E�� |�D�Id�C� Q�[j��{U�c9��� �����#��Ց�*4qJ8�F�v�]t�S���HL�d��= B��}��9%�]` �d0�,�ZF�}yVR�׍ww�=����ܳz<V8 nwf6H�K��9�V�Ř��0�}��������^�����Qb76Ȣ��i,ޜ1.��X�UZGDo=NڈGk�e�v�pt�3U�Ț�D9H,��2��,�T�ԡP(u��g�wE�S�lT��1��}�� �ܖ_zc�R��K�3a�֙áa�q!��6����{�!,�� ��~�{� �.//���q����&4�L�I��Q5��y9��#$��/E[�IU[����B��ߺ���zvuI��—�'OJ��4��g���d�P��yC_�-�b�4� �w�=��<��x���y��$0��,2��(�豁�I:� ���ַl/�_3�����<� � �6L�� ι��y#���.d�����Fٔ����H��Ti���-;!z׺�ɶ-o����!!,�z�s��ɻ#`��!m�uE � �n"V\�� ?�ܼʕG;7���ϯ&;=�~���ՙ}�H�v�����h�B�.[�ZGP�z�A�h 0��驹q_e�ؐA�<R�ch�
��f������5m��[���ָ��GQ�d���~>�n�j7���`b��T���bEm�ꔗ����}���]��[��b�~����+NէO�H�k���){ �i'��M�yw�A¬^)�I�de)L� � ���C�]Qݻ�j��u�v�_D6���̓�nyƥf���za����R�<�M���7��i�ƴSr )W�&��Hy�"�`ܖ���ru���Y�2R���EV=N�D!��m!XJՌaYR��R�)Ua���f�_�ȪAD�5�b,�O
s��� o�K�Q �&�E@�y�S4�!ܥ�)X����9b1��6���� �z~�6�5��z�k��鷇���� h��0 �.1pQ���vbB�M �5�������nBTr^eF�#o���Ō�q�c�v&n.ߧ(|t��@ �7�Џ��C����u��yt�J8�R�r21����˞\TXeH��Ȕ�1��లM<�I[Cc4�u�% �9R��c9�@$�u� ��I���OJ� �V��`Wlv� 5MW����X`��{�ޗ�r�Eyg?����g�1�/ ���y氞���;_ �Y�Y}1,��K*M� ��-�ň=�om�������/P�8dA†U��$�Uu��(-K��N�n^�� ���ޔ�i�׫(��/\u���eό�ŝr��[��c�9)ظL��!��aR*V> !�i������13�<���Y�&G%�J���# ѩ;T5�I����O!���o��/+����C$`"0s�y
��fd��5�X|�t;�Hw�7X��;�oLl��M}��ž��(�N��b�d�pu�l@IKa��S�).g�8�{��#Yx����ɴ8G�6q���C��m�;s��$d�1f�Rf����Y��<����⬟�j���(┯�ʫ}^u�Hu����DvCi� }��h���ڶE�>��Ia��r�4K�ze�8+o���a^�r��]�� �fi㉝n
F��H���͵�w�3? �O$���`yᣊF>�+ U����Z�)�ߊ�|}����ӭ�m��ZJl]����F�������i��?&�*�D��h���Zv�6!c/�]�0{o���q���|����A�t��搨r��ֳ<>��F4\f*I����X�Bo�����9?��n������u;�Ss�2ܑ��k A�"n�k�5ڼ�M�ؖD��*�bz�k�N y$Ƥ_G]hV\]������C��=a�f@n�d�TMN��k: ����#��10����~)�q����X2��2G�
g�YVBl��I�s["�)G��R�y�6���r�c��������1�ԓ��*=�ޓ�#sF�a���loޣ���Q+;"�1m���?g����1v,qB2��@���U��c�'j� #"��Xp��q�?0����u����\� ���ߥ��M궍N�:RB�B��S���v&lP8r��t8�A؀�s'2ڲ�D�ik�XG4/qG������ ��ʗ��p�-o�I7_�mY�c�G��]���[����Pr�UTqJ�����C�w;>�M�bf|J}�$�p+��K���u���`�+��*��g}r���$�23��B�������ԓ��,��Gî�)_�W���wn�6����)�B�^�[v���4Ɉ�tZѵ��j4�µ[ ���Y-�ڙ�����bX0XC%)�_�8�!=F/k���k jN��X��dg�b`�-��ο�h?�]���75�_\�f�Ը��mo:f� �.Uj\���S�Z�Z�&3h�H`'�H�*�� �c>��Vqp��q��08f+ԋX|��o��*�:y��T��7��5¡Ӷ���v=ߩ5�w�aY��� $�`ߪ5�����������W����}�
�t�&
=��%�O�bA?�C0� X_�����Q���H�M7�=O�V�Gpw�L�j#��x`(���6ErB���F��_�l�;8xo�t� �P�1 �8�b�ʖ�ʤ� �t��Y�%m��Roס�Bt֦�ʖh���|5�������~�rf�5FƧ�Q�=d�lqu)2i7�i��#�Q6AŴS���쑋.(�$�X����F%$�lo/ �$���cӧ�� �j񏐳�agG_��.Q�E��nq�zgەc*�3��g)“�c��\z�ׁk�Ҕ�[�F��Y�ǭ����U���3^S��T�g�(i�Tt,=��]�U���a�֯�_�*TVHqՐG����m��v6q���w������ɉ ����#��ϽO���R�>L{B6�;�s{x�',�h8�r2x���H��]�GK\(R��7�t��Ҷ*����W<��Ŏ������Gj�ZNGLNS�G��0T��M���LG���ǝ��d{1��'�^�������Qc͂����&�\d��g�gK��q��rG-����X���w�<'5�1�m���貪�� # ���{n*H�Ƭ�N���u�]�c��6�]�P��^�W� ��L�U�n���-��0ť����,�9tF��c돰X}�?cq�����';��g \�!I0f�Ăi"�h�lЇy6��|��m��;�~4r�ؘp�ϋ<��#v"@��vSpAr���]77�bTqJ�Yb^��O� (dP��,MGe8��zH�jP ��0dz�íz���cב��.�0=�?t�H��GOw������5e���}�$æ\������r�DW-�,ɉe����#�-����~W�;����s�'%�4�9@�%C��H@쪷>k)�z�;{���N/&L���ʸ��VFEv -ۥ�6&����x�?U�GT�;d�N��RթY�x�<��5A�"����l��#v[
y��5�vD�]q��R�ã�\Lf�RI�����A��j�3���e��\Vg7��fe/+$P�4{m�
�r���TVB�V��8]{�]ݍ�ݺ�[�=yЛ��=F�Bo��_���Sj��%"�_��^����1�A�hh%��r�*�۽Ùɳ�x\��3��+�Pt>�H3 ���KՃ�{o �T�s���$�\f����D�d6�[��
�v�m���c�=d� �-�= �cgP L�ƛE�v��ri ��Ҡ�`�|Q9RT@4�[k*���1���<[���T��v�.~fէsr��6l���g�� �M���>��=����s���� 7�[-��D�^��7�s��~���a��mn�K���xT� ��C �[FT�)0e�[�L�Q����{�֎���\6OYz������֭E�bz��#̽R�ey�J5�v�cQ5��sPi8{�;+�R�$�EC��c��v�WA����:X�Ua�H�Y��N�N��O��z��t'x��;|V&�wX���k=2��)gXl{=K8 e�2�{nVF�Ex8��)L ����0�u�m8�3�C��][���^�1����F��Sk\��/������ܝך�vN���-"Ӳ)����
�����^�T�E\
l���Q�2Hz��g$m&lp�K.f NVbK�W�Ŵ�M5��S��M <!� �-}m��C~�/A����.���r���5�t��Vc^� C�֛�@�z��v*�Jfb���b6�3��هm���R�So%���-�7��:�o�?���,E���o��_�׭]�%��]e�;)-��X�J[Nu��� a��r�e��)�1�+��3םr8�P_��.�c��r0W[g]�{"���T���.޶cU����B�1p��EjL�&�p�D��� 2eE�o5�*�)XB��<��k�\��p�"�񰽪�%�R�_��k��6k���*� ��:.��6ڷ�f�n"6�l�"C^�Y�B�;(&��R�.����:z�y ae�����-�),�&� ^�A&ڐ��M��Z�<�R%�x�ۭ�ȷ��jk�EQ!�>��Z+z��g����E����Y1��*��u�n��a�ӭ�'X�i��.|L<��4��|�zn�z�Qkn:�k��ƥ�|��z�=#���'����b��vc�;ơU�KS4�f�����O�\&������R�u�S��$�uDmਲ�����\@�1�
-���rE�2v}P-��7&�I5�m/n�_0�sC�� hI6mwM�- �;r�U�qJ8�%�޴t���#��m�TgBk��^�����Z�A6K#0�Z�Y��H�U�l5�?��E�&�lۅ�3N������0;��|>Nl�+�(�x!��F���j�̽kw{K��8�?pr�Gp�bc�h��
�eȞ(�%�H�hQ{�>V&ƪk��Ƽ���B�6���V��{!�b"h��=u����n��j=��r!��s9�3�>W�ߗn��DM������^�?�!�X67����y,�G�f��?�[���K07��_SiCh�e�mp"ܧ�:�M_�l�~��~8)�6��+�`m��VźE0�;@zκ����IIO�"�c�x���e�(����n���<��i0�v��1 ��{�� ;\� �~�P��+���q�d�!,j-x�Tk���(�遹�VG��Q�*����^�W�U+]�˛����Iq�=k��[a��b"����0��ciŴ6[��4!�\����C�O+~��^;�{k3خ����=��,8�8�d� ��,��YR� ����>��'� ���粱���N�̒L~B]�c�0���]��1�Z��[��������.͗fs`P��n� 3�</�������$:���df�-������6���x��� F&>9`]�0‘B�0%.Fij�X�p���'6l�$�;�mp� ����`�Z��.�MG��V"~2�5[� yk L�$���"�*�!#�� rE}hZ�!iVq�g�8�%�f?����^j�gq�^�� ��p��xl8IZ(���BǷ(l�>"\I$A�Ą|j�y��c F�B�|���2yiy�g�5��ɴ*�[X��uPTn,��8�p�lnߛ�4u}��\F w�1V6;B�WW���3��F�#b٦v��j��(;:rI������閘�L��#o2�e���ȕ��議����!Y��^O��{yf�K�D�zc!a��f am�k���Z�� ��x��hxD�p&�ǟ�߼��+�%�o���6 �[̾��8�R�)Q+{W'(wX^��5�>̱���k�M%�V��չ[+l��kۥ��" ��R���$`��q������P�]�ln�>�X6�*� ^�M�w.Ĵv�;dz�&,�.U��&q���l����&y�db�s �� 8�s��zK ��U �Ak�N�����r�G��Ue�c��C: aU�鸚;e�G����c�f�#�a�ߙ��q1��eI[*�25/�iSyZs��*j�.=4��;Q��Q}W�wz]�]RꝄ���K��U&����hvx6�MpI��rY�Hm�.c ���S����(�`lu�� �~T�]G��/�}��V��m:�h�l��l=�T�\�TO^Z����޺�l[�{YQ������5��e֫���X_>�qצ�/����g��1�|��H�6��ox����47�4�/�\����ƕ�������h��h�:,Z��^AZ�<� � ˖X�;X��>J��Ā�|���֝�e�
�ަw��]㦕w���m�� ͞ ����)���j�h��P���ᬚ-�זV�S�qJ�<R����\�Ul�{��5ڕ:b�h��w������Ȗ��=��?Q��8��ϵ�y.mO����?p�5��7�>���!��n� ��#٫:OZ�1����d͊�c#
(}�jz�$ ^]DT#-`�e<Y�����?�s�� �@�Ӟı��� .�@�V��k�;'�y������΋�����Τ��N�ۢ��L3�$�6�~�&շ�+P��fѥK���� �J[JG��{��S�S�� [yk�9V�e���>
\Ip1�˕ɋ0H6����J���{oq��%~��6.C"(P p�gyk X�BI�Z�pE�/����]D��n*�r? ^����.�
����% %w`ɷX~F�f��|/�I�c����y�s��w.e�q��$� �^�G�XOBR�Uce���|���i��0N*7��W�X��,�� �����s�����h�m�O L�gW�����9x�R��M֬{��u��<1�#��� �aJ�p��\3C�
d�0|iQ]te`
������Z�i��1'|L�h�r�����0?az�J����*��;^5���ut+��A����}I����b5���uHe\#�F&%n� �;��u�r���+���p���6=�� R|/
�v�2�$�d�a�EJn>,���xך�� �R]�aaL>^�I�J��?G�S�ȇa����8+;Q����,�������[:]�.;Շ�&-�_P�!Ш���A�#^�UA;^ͼ�MȘ����@���
4cP���f $kk�f nK���v7q1���kF�覯���hy��$]N���"J�-Y�̎�`�P�x��*�Ȣ�J2���'��Y�'�������<)�+����U��6b�v�I�Vwql��x�nW?�ѕ'M�d7Fp�u �x��:.ka��y�Q���om*��RNJ�cN�]&"��^�U�|PF���pXS�` ���ԗ�p��)9T�n�ʘc��#'��t .#1��%�&�XmupmSe��d\S��k��r']�ibG+`dy���"�ڡN�d"�FzQ~�������lڷ�Rv��^ʾ��K_���^�/�1�ړeݫ���U��8'r[X'.��DSC��c�ɏ"�VSue:��Es<�O�;�e#E�tafV�H����(��^U����Zϯ������ܥg������F�1C'j��v�z�TY��a� mrI�K��t��I[9Z�
fH����u�|�l �R�����p�.��Zl�[���W�!���@xMc�� ={&�$��ck��m�(��� S�`vB�m����{����x���q�����2�,�~z�\�� ���0�\�1bؗ�stװ�\lyI0?��,3�K��
�(��%����5�&t�+���$�����bs�b��j+N��3}b�mjɹ��:6j�2d�DŽ��>bH$~8�0�����d_����7q\W2s0�Ӆ�x���Õ��c�`1�D�I���#�$M�U�'qy1�kَ����Xeß(�2K�gݹ���N���@�*��� z�Yd��=U�t��MQ5��GRGhV��k���;�]��Un���$Ч���e1�:������>F$*�n��Q�e��N�n'*2�;ˊ�����"Ñ�Y����>@�a}I�<��eIH��'%�|�ݏh��.W��;�
_qb�rt��y��`�~�m{�{����i���\��Mzu_`Kkk�J�N�r\���Y�7Jtl�N0��Kr>�\7�����黃�����9m���&>_#��F<x����(G��x�r�b� ����|lY"���'1*��k�U�Ef$�v�2��q���nK�[%o���m�j��|x�%� �o��f��_*�.�ӰS���re�V�,!Xe���*����`A��|�:|�������*5�+#�bTZ�hD��Jq�0�M��՗��R0�ho�*Vs�n?_\p.M�Z����^lt�{���A�>�I��U�����+إ55G�Q��Mv�Ʒ��utوx�H�aĒtf .��'�{��9N��,�>ؘf��Gc��S���^6
Wo����Q�݇��ol�fwtC
F�]!��������J��%W�yн��]S�ؖ��ϧ\w=_�]���;+ ��N����{3UE�v�A�b$�YzE�>�D��XN �����CfI��,�<���K,���p�I!d�b�+k�{���_4�Q�3d+cD�c)�Z$۶%B,����A{U��j()�u�f����v8�6���S�v�5��Q��&�c�D��u�� Y�ó�\uQ* L��8�K{�g�G��drVrf�S�b}DPJ��đ���܋�Ts�������Ca�lx����H�� ��`B��Y��sgV���Q�)(��wT��v��8����_���0z�k"?pOS�=@]�'l<%�fi; ��`DdVԤV��d��{���;���gpݧ�C.ld��34LvAKc�>�r7�e�NK������\�Vkq��ߝ��0R$����]H�vPx�Si�"�}��{*��/�G��a�v��1\�̣U貫T�P}���+0�v5��GDJZ��L� l�q�,^���/�߳|��|ċ/=�q��R�דeˍ$��BZ,j�,?Tr6M+� ��N��?�ή���gs����/��8�h��2bɔ�����6� E���{���.��j/im{����:�}����ThH�)����ԺMd�HHت�f��츠�� X����4O������b���{��؆�������PY���6T��2@����B6;�pWm?�w+;���G�y��nv,+1X1����I�rŒ��.C#�lVi%П9]���6�6w���zVRyP�ޚ���_��m�$��r��??x�,�i�U�׷�#��J.o���/��r��XH�Y�4�c UL6��� �ħ%���ա���+�|�nf���r���&^F&fE�#�W,�ZI�H���#�Hgq���E��^m�S��.!+�\B�^0��X��^0�/����L���H=Epz�e :�@�%�����P���Z���Q�l`#$f$u��v�B�ؑ��B�q�z�4t��=�G%>�z�s
�G.�i�y�����t��[������pJH�?ct�(]O�J�T�'!�������ԕ3 S��&~E+I�n��h���c���Ikp�6���kcx^�������ʱUH��{8�5����X�2�A�j)�hf �Op�DM���Y�3��v���Wݴ���-?��Kk��V���^�\5ԍfZ�Z��3Z�ڒm��|еɋ%%���
�R"�Pӵ�� ����~���q��Ս!�A�fm)�U(��l Ѭ�ӱ�1����Z�H�2�H6Z8�:�c)R��
j:� b�!%�OEG�E��g &:PFN��?��ϥX���++�(┓~q6?c������� ��]o\��`����6�t�V��TF��f{`Vv$,�O*�]`�G6��"�S�ܬ�m9c�L�Vj� G <0������W� �4CV�������z�:��~"�¡�������h���W��C���z���X��H߭;���X���ɶ��xD�`�g��-��Nɓ����{_�rг&AO�EI6d����̻c�0�PS^8�X�E�ٺ�5�_�O�4�J��)G���K�a�4ނ���к�~Yn�n���b���$ �D��X���)a�٠/8\��Z�\$�:�ܾS;��;���"g]
�Vb.? ����a}ke�S�`r}���o��ʈچ}ʡ��� K��v��.ǎS�� �5���MK]Ii���$�վ&hP䠴�ou
�_����y,�\�h��!���Ͳ�f��NG�x��8����m��َ�.�W!�7y]H o���
��l�~wo�|���U�^��򲄙 읱��D�|�c�+夶�u3'������bt����s��o�&���H��u��wP��mӲW���t�mW�e�ڪrb��lc=�{���>Vq�1��;I$7�@��1�[��
�e>e +]���[��� #-�b'���'!ĊZɢv+�5M;��a6Mt|X`�}�6�6�-T�h����-�"�ӌl(Z��#�")rJ�Z^2�r�g��ϙ��%����݉{�Xew>��򯕂��GS{���H0��� �����3,.�4H�����˼uhі֯E���c�LJS7���_�7�Q��["�/��r�\��.Ya�Q| ����|��e�嬣9��I�',�d�F�W��($[�5���,xY�bB��QJ��’�B~?:�TUR�3�G[z���ة�eB��m�F�"�Ͳ��m���
.���Wp��%ӥ�󤶔�*n��<o����rͳ�W�����M�z�_�����4�'#�� 0��u�$[�O����{ם��5cGu��}J;M�܈��[ ��'�%C�g��޻��WĠʿc� �Ͼ �C����l|��<[�~�eg��ܣ�*x{$b8�ՂNg �<�Y�mdh�� ����w�3�oyok9."NZ|�3�A�p��F"�ۗ|!�&�{�jj_���>��+��Il��h�=�Z��:,����L�阑�~M �/k��3D��M�4k�l���������x\9%�T�� ��nO�c[����C��Q`+ �۲0�O�l�"dr��;ȧr*2�ue��uw� ��6 l�8�R�)P��� � lvO>Z�e�1վ#F��f��٧��R��G���_Ό{�m
{��3�lq3s;����!r��k�T�9#�0�ά��$Qp�-/�1o�:/� �l�W;0�]��;X�j��ȼ�����e.~�v�i����Kks?d��L��[��,��La]�\H�mfK��"ޭݙ#������}��M[74�eTqJ�O+��n��M�Z�>�1����΀����U�U h� :������|Ȣ%�[�ia�e�[�+x����I��w ����֩��3�k��q��}-���+{j�ę!q��:
�43�-�"��j݄��$��Ll�E��eIVrC )�c(mY�nO�B�������X���������;�:+����軄��j����M�nj���|Y �[m&�<%`�-n��6�4D��1(m
e�Z��h'��q�R��o�����>ʭ��e�/D6�}>�u����ky��=}Ƒ����h��[�����Rҷ�6�-����Lvё�^���l���W,��O���>[CR����O��:���x�h5��L���E�mc������]7aO ����� �1��L���P�{[kM7z�0��Z�9721�W}���q�ܤm�E
i�'�N��U)1����y#��s�+�l��W���nb��hv}-6�m���34����}*KG���t(��R����|T�/�J����2�c�o�6�����z��Q2�J��}����˜G��]��;/�b����>]"�N(�>��Q���T�@
B�5�IJ�g��X��O:� ~��9M S�ݯh;�^�����lS�۹�H(�&ǝ/�d��c�� c��U��7VG`o]��<�kr����.0AUu?�\]M�B 0 �Ks�J�N��=W��J�`Ԡ�a#�lv:}�˘MRx�+ZnD�}Xw_ئP�(���dac�B�Ie%c���C��O�^�M�2�p�n���1}2bd�O���m�@����1�b�C"7�N�����.��ߏ>T��UUb�����Q d0�v66 5��i����U��*�:�X�@G!H
"6c�@�[����S�Z���jR����\q� k *�
(UUUU@
��EUXҹ)����,�I$�I&��Iԟ�v�OR��*��j˟J��6���xk?d�w�9d��WS�12&GJk@��Lj�Re�%a+�_V3�*���#��n`�J���0�H;����W� �<o,��j��Vk��P�ፆӣ^Ƽ�t;�g��6ܽ�[�����[�7�w���4V�UF� J�uz����#���[�7��S�d���|���G oM��2B��+2��`%}��|��Hի�3r{��2�e�HC�D����\E�&$�SC��ltd���x���
����Q�N���TR��w��ݺ=R:W�6Uvs�vF:�7kl�c�����b+��<���;s�#�,,i�,�I?$#��l2l �lz�X��+Pq��� �����K��̤�%�OL��ۼ�};�����#�z�pl���hx�s��V��hm����M�l �������d&���{�é�>@�$f]�i�����v�у�qq�=R�"$>E&@K�fBŀ��'\��9�䟴��.bIwB$8�8���HR�ܖ[�4n/�S�ѽ~�o��P�]ؠw���z��CM��pi������N2�W� *�
KKvDi�#��$){����3�FS�T�HҲ�^=ͭ��P:�@��w�sǒ���9˸�Ď
�I6��t`���N�I\��7X \ �Z���\����0��W& �Xa���$�`g�[e���6�^Ɣ�} q9“�)J�׹ 4e�{�����e�Սk�g��R�EP#Z.�?+��aov jU:�����"MD�V"dCx�<��,E�^1��rI:_��C�e�� �k ��5�5�dG�n��u���lؘ���6�ڒ;�������*�`ic���XzRרc�r�klBǛ`Pu� 2�mu�ń!���u:�����V�%�3��-cpz 4�5��5�uu�q�֥j��J���V�n*V;#?ٸǵ%W2�ѻ��a����[�c�[��*�DL�Q�Rm��D�Ώa0�良G��k�L��� ������U��`<��ۛ���N�1p�ܻQ�' ��V)� 'Bے����v5��V��v
z8iI�#U�1�dV΍$�=�DjPD�V�����^9�RAb [��=/���
d�Wվ�)K�C�F��#h*�c��zh���ƑFT�V��Z��W`T��@�[�lӟ�B{d����%�\!2�[t���/�������򓍞��H'�����Qvoolfz٭��Q�f3������>��D��<�=O��ބ�A�����m8��$!s2�n�$�bd���n@�?�dݾ�A{��-o�QL�o��M�m��c�����ۻq�}P�ל��OC�(�#��U����fݗ�ݠ/}9t���m��lM�g�1ecf��n�����/����:F%ݾ��ӭ�K[�P��M�ͳn�x��e�o������Kt�Z�lJ!���DGv%zdj�6��i-�����3)�Y��[X�Dab��bc=՜�)�W%�^�~��췈�~2L������W��߉RT�)9’�aIRs��I�=q�g�q�s��x�F���z��n��>��]wZ׳ <2̽��"X��
T"��YLź�" -x�l����Fм�77�×��q ����UE��|�$�����o������^G*U�5���l.|j��ʠ��y�w��}����zn��j�EHIc_�s.Tv��y���J|i6�D<pQ3�6�̜�mB��#\[�>�g��&�9�L;[_K%�$D.I��Ɇ��! n�.������⽺�W+����޶L�R<��66����E�Y%}�r� ���S�D��j2ַ��1`�[�:�_ta��kA`��4�:��K(}�aJ��#�o����Ń7+7 _Ӈ�&`�����b��\������rr�0q2ps�Y=Y�2Q�`*�Cc��v
�����-��j��[���ٸ��:mk�����L��h9�,�B����ee�ġ`��,���3e9(X[%2f���ݼ�G�N��R�<�+� LM���n���7�,����kٞ2N��eu�1"ߕ� �Qyr@7# k,�|���8�z �8�=q��?�3��s�+�z�:Q�(┴F�[���;-N����u\��m>�Q>ߵ�ؕn;���5,��x%�;h[*�6R�QS��mL�r�� ���l���������L�RI#�&|n65��!�K��y���JA�><��f_ �앱��m���k�s�NO�G��$��;C�6�J1�2�! ?� + ����'g��tn����ۺ�FU�]��(�`���6LW0Ŋ���
�� P\PH`0�{��8;��?�w��~��9/s�n ��^;'nR ��.#;~�GN/ZV���*(ُ�+@�d��|OkK�/6>.?���I�2H��^7���i^6�: ���l�w�A�#�{���Zis�4+,��T�:۰v���b�Ж-��.��L6aޛra��,�\KzQ�C���K��p}���n���Y�Y0������y8�����4����0���M�>��my�=���o<Tqɛ�Ί�L�H��t��(�S@�� 8'>�֋��Q�*���y(�x��ɸPt��ocZ��e?��l5�4l�D4a{)��6�2I�p�
�Ͷ)��qV�_�^'� ���f��b�[j����]�N/��"��{�].���]�tP젞�>R�}��/k�� +��I���@�M��W+������u��ٵ(�3]fӨ�tq�IV�$�P�$���9uz�}���VÊH��e(��&�n���F�H�T��^����2H�-HuR��;�) �]���et`�V��w���x�b�^�� }u�b�vߢ�C*�9?T�^�V+L���U�Q������həB��Yy%hw"��r�H�9"��$�RB�p��(K;H��sX�r�_��o-�d`�I��%X��tF�5�5֎��vwQ�n:���:�̲ ��"Tm�G�����p�LM|p�_&r2�q���+��?�wB1tU�� �>L�A����kEJ���=��6܍�O�,4a�#C�[�T�qJ8�Q���*MǸ�ζ��a��{b:/~mk�#֋��s�-h��̔ʣ+p���D
��2q2jyL: �eҔ��u;���Z�}u�i���]z�xi���͒�\����� �p�MFB)�����"�<l3��u*�u&Ҩn�eF�T�#O�5��<� �$XK��q�)G�b����%��9�S�+bqJ�[� �+���V�����Mwp��3v����&�8J���E�s8�$?�0��Y��_nT��ٿ���nQg�}֣�;ͮ�T�`�;J�k�^&d��>�X���Zg/�eM夾4��x�\�?q�����E-��^{���-�j�.��=�l1Ff~OZ�� e��(�8���88�}�1?��S�G�+Ǣ��(�:evp�μjJ�vm��g_��+R�1
�����vp��, |4O�����a9qHB��տ�C�6�{��_wu�SK#)�|\v�VE��:��b� ��IN��,�)��R��U��*x����v˥�#��������ahJ��&���Y�V�5')��!��$� �dԞ-�+�O�2+�4 �$�)M��*�<�_&i^2��l3���u�ڢh��\MZ岫��FP��M���{�g(Ì�e_�k�����\�� �A�B~�Ʋ��ċ;���y�1}@rC�H�TR[4��$P��N�8VJl��Yqn
�.�� ���2�-���hS*V0�}yw�;��+��6?��>]u�$0WXg������R��"��K��M �*N���E۶L�6���~��՝���qq
vBZ�����Nj�SN���Y����HL�@�w S��맢�w+�� �[xry,b���+�v��n^�� ,G8�'p��8�חؼnHh�1�ek��"+X%�� ��7Rn��. �)*�������)z�#�̜��ep��ba�&=Ĵ�K�q�ֵ#�q� p��1�$��U��V��%�7�ib@�o���9�p�<<���[�v�]�BhW[�I���KcKO������r�6��X��)D�܅���)v��Ƈ�xH�b���J��>{�����z�e�4ݧK{E4����v��a\��<0���E`����״�'�B�4˼��(���n�}��k�u�J��5��k0q@DbK����g�P il�ɷkQN{�}��3�g<�?q�����c�Gء����S�
<ug�x���,��䖕���T}��A�ǩ5Tt��zo�E$K�Ə�߫��<k�Q ��Q��z�^��2}U�L�1 2H�e�)KJ2�����K��q��03F4�#���:3!�X�o�wڱ���}*ߙ7qr�y �:F�OU*:�1�U_f�F�a(7���&�xuע�s��b#�E� h`
.���h$E��~��!/�x<��c8B���{���T��)��)�ًG��)f�Ӵ�Rn#����O-]N$�D>��*��m��TK��F��m��:���V�;���5eP*�:�j�Au�/�V��-�v`U����kh㖔�)���+yj����:L�l)M�6I �D��s� xn�Q�7;���l�s���6���P�'�m5�6}j:�]��Mmβ�Y.KCם5�+��&� 3#5%R�b ����
jk,8�)[n
����*Ǿ3��c���]M� ��\]H�W��j������\��q�.�v
����$�ԙ' N���@�l���@��p|KdR�mXfg&�p��6���oOh{���q~�=�p���2sq��M�,�E���db�`L`!�X���RRVd�|��.��p}���3pY���\��В$���щ�owR=���}U�t_e#:������9��lާo*��"X�K
b�#���fq�%�$�=ۥ{?�&�sE�r��Ô���� ����З%%Y�܁���s�1�`g�@�O�2����>���Gu/p�~s���${J� �L�0Ր�]C.� )>Dj�g��vK�=����5f��m_�JE��׭{#$<���>b�r�;�+;��$\0�o�˅����L<纹X>��9�<�o� �rr�k&���D1/�"E.<r9�\T���%��u�D�����K�}�˦fo��8�� t��j]��,�@�Ě��2{'��ol���4����\�[G]a-8/읩[�8JK���1��%ё�0�|(�},������_�.��F�O!��xr8����ؘS2�@fd݊��>�����2FXG���9�>�����lLq��d�]�t�jm� �š~� �� w���^bx �����#�@�������H�V�T���K(�g�j%��y���륂�������V�$�,z��VY�B���>ڜ�]�!פK�����{�J� ��U_`Yb��M��Ph���(̜�-(�+��2��=��dp���rX��ZcB:���a�u2n��Z�Jͽ��1������Ч �}I��
<�����k�bn@֓��wru�Y��Ω�%���#e�Ꝛ�%X���o�Ċ��3M��c3��vX �T�q���N����h>�����cs�*F��i!MLa�xu�D�r@7E&��ۗ��/��31�#�7�)d�w�JVM�H�u�'G`,t;ˬ^I5f���զM��À�����|Z%�,���Z���9*BOU#�Gץg����E�ڦ��Vp�r���?��)��l�%�f�U��+$i���76۱�#�|Kk�[ڌ�N 4���2� �f���2�#�LX��ڪv�t���"WF�.���[nt�sd=R�u�_�_dy̰Է.��UZ��<v$�㟬[�%��>�0N�YSh^0�l�#�w&D�48�ٹP�4!��II�=��FçZ�����#� �6F,��s"LAk8�K��G�jt�Ju=rR��ݩ���kJq67��@)��۩�r(�E)�� n`���n3����D�_���/^9!�<�F��c^s�0��-aCB��,(
��݆�h��Dl�M�� ��pX�>�G)*y�������W��~^>R4�4�9i����6C�+��M�7R��k�W�ǂ�����8I8Id��f �S�@����l��)*��,n$R��7�K�o�F��Q�:��T��We�H��EnR�8��B��+��&��HY��N� �ɭ!Ym��V;����?x��f\���ǃ�h��ZORx&,��%��(�H�C
�L��j\�i��op߽2[�ΐ<�Y�Džg�3���X�2�u��g��W`��l�Ӫ��mY.���k|�6�h|t�2�S���ףp�ߌ����[����^Ģ�����q�7e�w�`�J��esX*"�P��|
��gq�g3��+���"���}8U��K�ysv�a��6���'Kwooew˥�۾��T)(����(٭�v�������͋1�.o�,���;D������k�w����׉�� � oRiN�
�X�1��P�G$�� _}������73ۘr�8�S0$ �%��y�L���rH� @�T(��Jw�h��q�C����uj��7+�= ��ˁ"�������1&��GF=f���s?O@�&P߽�)P{�|���_Uk�j8[^����: �nP2J��=nhoX �;R�++�=2hs9�
��$�T���*T��Xt��ٵ�ݵ�4Y{���v_XoJ6ý�&���Z#Vk���*�f���3 ��3�̙�T��,�9ʈ�D[[����j��}���Ib�H3>�`5��+��: i[��� ��%����T����n���v����j�'}�x��HV�u7T���Ӳ��xi/ۙnl!b�72K���<�m��5f���o_+_Q�tֶ��ru=z�T>��c ��Ӿ�tc����m;���֖m߶�qs֫��vRj��6�>�!&\�҉X�I(w
m?
[i'ά4�}}��� �u�Ƿ��MC�i���9��F�L��;ۇp�p��
�=�¿���J��R�+ZB�qIChJ���XJ��*R��gJS�z�9�1�$�u�!ߘ�U;���.����[W�5��X�����{����ܕ F"�e!̄dd3/*�nG=�4�Xk���7-���`�8��l�E�i+<�)@���ɱ��Y2�Lڷ[�O]?�C�;�>��#QnE�ͭ��M��6�hǎut��3V8D���*&�c̝��Gd� '!�#��+}&����8��=�.C�aa�
�Ri�Tk�uV ��u�Hf�������:t����v�v�l�]OaR�X��]�����޿�� I���-8��YJ��#9��g�:�)#�%�'P�GB�.�A}q��j��8�Wϕ�/��
�F�� �ʚ��ep��䋓��x��llj�����Pn� ��Fe��صc6�{���xL�7 �<ɱ�cn��׌���_*�ۜ�7��ry��
��U�-�H-�t-��������Lܩ�򯺚���GUF�3U���~Z"���z�Ђ��e?r0�:��Iuĵ�+�����FA��3Gy��%��9� �b�3y]l F��|�8�9>2#�ۓ��Ѝ��m$j?���W�\�C�L>���'i���6��������ɾ���-��,��Bõ�'�-��g�s+ Sy�]�3�}���6& ��2dn�h,}",֓�ܓ�g6j�]�
p=כ�/!��&Hq6�w#n�7[��,�k�j|h>���S��C��-����=o��l}�j�5S�E��5%�%�G��6>D���K ��|�*>j~���r`��)c�bH��'��-���cP-Ʈ�@t����ol���A��ıE�
wzj-�Fb]�tE7$j}B��C�� X���><�A� a�:`QEa���Д�N1�c�9�]u=k�:i\�)Z�z�guސܛ�"$,�mU��5�aқ6v�Q�����m��A'��2�%K^�g9����q�* \ڐJ�n�n�-h��XM�>����냴7~��'`n,+Խ��R�������@ x薚�ub�2i�ӯ9n��7��3�Y�jN�[r2��
<�X ���Y.�0`�؏����@ػ�\�l7gh]��beI�tD�38V�V6��J�K��vD!H Ɠ��9S�%n+Y��'
��?�c�wy�V��{�Є�7Շ��V���2v�!�3��r� �JV5f�ZEYdk��*q�֭���i����1(���X�� +ir
��my�ݥ���_���2Fo`{��a�:9��(����0�y^a ���c���_LR6%��m$�u�n:�k�x�L�8�E!�����e�) c���ޛ��v��ﮇ(�%�ͣ�wn���-��䕩��O�;n��혩>Drt�b5� �=�s;Z l�8��s�Y����/{؋�5�U`�H*F�j�W[�Z��)Zkyov��5p��(�&A�W��#�T�zA��6a@��B�A��� �W��*����w?/ ���g�tVv>
�Rl|� &vv7�ٙM���'�ē����;�{G�]���L��:O�z.t���Hl |@�˔IDz u$���
}�*Z\@�!M������/�y>C��=�� B[b�{5ʏꯦVڅ6$��������q7�Sw;���� ���.-Y^�w��`72Ǭ�s�?��9�=8�r�q�s
l���EX��V�$f�Q�ZRHB�a����]�}�ݙ����Ǫ1h�= "]�gi.ʢ����]���|lXyJ�o�� �Y���S��4j��X+�n�X�b�h����K �di(y�ِ�9�zP�(2�aIJ���gϮ9�쬌Q�WRABЂ<:� 2�����!Q��R([:��k [��V�S���ٱ�V!%J'_Wv�*�h~�cUԹ��ި���eC �E���Z�Nr�s�׏U�'������uӡ�_-pk�-S��2���:��+D����'�=\���}�Oȋ�):v�*�n�D{nۮ���o��h�ȳ&�|�*:�fQ0n$�~�j�[V�52!��V�,��7� sM���U�42FJ"���}���m|�w�΀�Jah_��R�}��=b��*��l��1���2��I�a����수aߙ����C
��
�� #�����[
��d^�n������[����}���mjV�U�p �+�~wVϳ��l9[]N��c��l�``�d6��l��(�ᡂk��df%�66��G�T�R+�b�
Ao E��?�Μ��Υ����ֶ��]~���f��q�;Y��,���a�|��K+����;���n)J�"��ƀ�?�ޯ�
�S�?`���jj8�A>�vX�s9��}dk���}� ����'�U|+�U�d�(��`Ƈ�(��!պ3M|��Է�������wk�?q�FA�����-�)!�h�joe&Y�a�X�Z,˳{��|���� =G=��j.�jņ���LZ��N�Z+]��m���ʻ�5�KmX$a���;6'���R��L�(
�Zy�#�# A&�c ������}��o�v��v ͎0*D�<�Ȼ�ߓ6Lq��#*z��H��s�>�vj�l�ۆe��d����'�Mŗc7��^��:7tV7�+�i�c��Ɇ�WO|��H�4�SJ�(س���h� �E<)�������;��S������9]��E�&dh�B Y!��Ñ ����$�E�lljy^+?��%��8�y���x|��a���7�9�պ�)T���d��/7+pͥQ���WW��X���M����s9�����FG��ƟZT�'9�?ݍ*��$�_�R��lV�o�I���&�-g��s���\����=�$����2א���O�97��p�:��Q�7Dk
t�yX�XfM�c.�𭒜g {ә�����\ʜ�W6YP�ޑ'��1��(z-u.l�q-�mg�%��(%����R��D�j���V�3�����@��U�Ueq�H��
X��t!���|�9_ y�4�?"���۔��N5_K,�X�7'�H@�k�}Cp��e���BNvWc6�\?��'�*ĉI[0P/�m,k��N9��٤՚u:�2�U�}(�cH s5��7���q���5�6�YZr��8KW,|D�s�f[��S��������{��M�6��^Vc�F@�p�$83I�ʧ�j|wZ�Ā./�@��Ş�7,�!1h�K��u���*�x��E���R;����$'Ȝg�-�����s����H{P$���H��T'����ZS݉b���H��#So�Z@?���c�
��G�HHD�'�2�E�w^w9��9 �I\��h�XKO��Z>F��/*Zq�j��_gZ
^ͥk��z�xhz�/��yG��؇����gc�e!Ǥ��&�F�,F�� s�4���F�-��\kK5�ͮo������YC����:|G��:���XV;��#i�
KkT$@��؟���N��j�EN�L����R�a6Qfۮ��$�-�k�:
[Kca10�$=�����_���P��R�u����h~z|�Mm�\�5M5�j��v��T�r�S��"�N�K S��'qlH��\����n]l�"���<�e� w6�~���i؀�����¤�S������2��_�rrz�;�������f�7��:{-�Ԕ�5���lg†m��Ѵr��� '@E�e��T��c�C_��E��Vj8�"�Xl&�#jI[X��]�q����h���G�����$ܹ"DxV� J��<�]��0��a*�x����?ҭ��_����%�f���X��X�R�f�쎨��dn����u{&萷艓�]����ͶyG�K��Є8,�6���X�C.���LFA;�R�S�c�<4��$� � K��پ���\��k���m U�{?Ulk֠,��ɣ+FFh�
�=Ӳ�g,��[В��[ϫ��c�L�l�`���x��j�
K�q�:u�¹�� +�&䭿qZ�������fRa�Y�ݏa�\+Vf�X���!9�B����[xTru�C�ݕG��`$���T����"��]���zWԋ��*T����J�0��^�����Q+�ξo��^˙�V�=U���}s��6/Y]J�)K9���h���޽˸�Y�G���-ho���FϜ����-��S�%XW���X�Rq�j�zfȇ�̿���hQ���5�W��}��_rai�<<����O�Fs�^� dF� �J���M�@CeZ(��#�JE@R@G˶�^}��,�>���)_$��W CbsI���:2�,�&��Ȫ��-�j8%���G_wn'7.:�pRb�LH�� ���/$n�"$�&�΄&�j���� �Ʃ�:|���)ѯGÎ�]�闙)��2�(�m� �n3��.q��yǦrl\�2^C����3���<q8�#�A�)rC�V������_���q0�|���<e$� s�H>P}R�0=5VRZ>��k���LU)q�"CCC��bi�~V�B�� ���~tF�
NX��2�?LLa3e�W>2����l��A�dfR����H���:���8�o����1�H�����3���Ec�b�@�=Q�n�_�5��Ҏ~+b��Ѥ��a�~�lz�\���)�5�2�^r��s)W����.�i� "�}��_��̱�H1 �H$/�K�B�\)#3y�g$d�3 %xmO�f{ �j�R�����9�1���P�*1������� i#����f�m��L���>Bj�7`���Y�m���McP�7kn#`��s���N��Q
I �)e��J�:]�����{���5�w�s30�&\��ƕyLy�nJ3��K�sD�Qcqfx��%!�,{�Qq��`�_"
Yv���o+�G(.ŗW�Y���y�,>�u�{����{2�^KOGAk�EGIBQt�<U���#��Iѕvh�z�V&�-<�
��l��v������S��xl���8$���Nw^c깑�#��/� [��k�G/��e��`#�� (>|�3<���oGd���j[y�\` ��{+�a�����ʮ=������E�k�Gvq;=��ͳB��=i���
4� �߇>(�ӈ}O��1���!�{��;�����xl�C���/�$�y|a�����)
�RG͙�<Ϩ�bCW|�8��V�x���
�˵�溱?���G�
 kS|t/n�o^�hm�:�bvb������8̔�.VN�-4 �)e���W0G�m+xgм���ݾ��2{��8~{4�����f��̒@��’��,� p4�s�1��<�Vv��ȑ�YX�bz�:�\���G�{�O}��7�H;@UUz򾫬�ɱk����4�G��]�W��?`���ˀ�5:6T-|�be�{�%�krg�lh��c�̭)b���&>S�&��|��ml � �y��(��
�&��ZMT��n�̬T���ٻ�����e�F53��� l�N��lI���R*�! גP�w‡�X���K�R,��̴y"HG�#8g_p�\ݽ�qR��4�����,���V�d;V(��7�Ђ�d�l^ㇾ!�I9>�����hQԖoJ(�h��< 4�ɹ��8�J��d/#�=#,1�›p�ѸӺ� �T�r�%#zz"�6��Uey���-{eZ�U 63 ��6G����;�~��y\i{3#��Yfq�L��Fޙ2"�Y�,B��V����q9P��[�ȳ�B�C�*����2/�n�$�5�uPWA�7[^d��D��x����b��.uJ(T���
�`r�g��(q�� W>+�q�a�-{���O �cdHT6$qf�@� �4 �<w^;c����Y�Z��\\Xu�c�� _�/����(┉;��;��v��6�K~�F�6���†��
�b��S��d��x��fhr�y.=��\k
S�>�ԭI?`��Cb��,LL`�C����a�*q���Ҟʱ��BU�V��R��.���~�u������Y���o3#Xi�,�"�h�뢕\���#�� �R2�yNQ�*ø�R�)_Y�#>x|�ì�����c.��a��U�<׻܌��V1�N@��5�TA��Q�S��N��վ�S���Z� �0�ǫX� ޑ��լm�ʂӒ 3}}E�S�'�R %�}f��+ø������y9�k&,&�;f�d}C�Q�DJӌat��A�n �f� Y�d���l/�����T�證�"#1�J@;���s2�r�)G�C��'wC�݀� ��].��IkibԄ �)�pA�/8��ܫ��Z�_Aw��?L��a���M���Bx��ak��_��������y,_�" VE�T��x���̶:f�$øv�<$�t��<��+c�nbE���ه���@�H��(!�4��k*c/0�<�P�x�n+:\ ��ȉʑ��F�f.�{� �����Q�g)��`E�bc��*V��ScuP��#�m��ܶc��ȏ�jd7�!�$}��J���ï�DL�E��H�9��l�î���ڰ�}8ٹ3#�i��H̢�Y- ~�6
w)�lc,E�ϓ���1����,���-{��2�A"�X�Sz��˜Tq*������"Cf�$>�.:K�X��C�-ϓ-4rp��p�}p�ұ�Ș6^\�!#t� �c#I�Z� �_
�Q�c�S�_lk I>Q��܀�O�Ɵ���u�;�޾�3=n� ����Yqf "�Z���ת�2L �YL�V�T�P_\( �2��5�u7n��q\&6%YDa���K���l@����\������=��2���R�,�FvY��\W�o�¯#�����+�c̾���k����:�;)M�Tܧd4��`�,)ۛ�9�!$0�c�ަl��Ù}�+��m_;I��+�7.y�t�*ۋ�E`�����sp������+�I$�ĸ@���X�TWqa�đz�b�NH6j*B f�MF��@��,�6��� u��T;Kq �>d�����m��lwIB���+�{n*���%I��������`ʍ�,l�ed&��ܤ�k@`7v�A�M���*&�55�{����ѩ<n2���ȊQA�O��03o#8Z2�e*��
(���G�+��i�1E ���[��gK2�1�\܋�|P;T�);C A"Ɯ���ˌf���l-�� �/ume@���|ƂŴ)����ˏGH�^oa������Đ��q}��ۊ��!ɐ˹H �R��&�F�����?ry�yn�h�^1��c
�%�|E��FԂT�MC�ް8�y�y���o��.���p�!;�~��k�G��OlM����[5��ם�"Ad�nU�EM��N���s��?������7��79�x8�OC5 �s��1.A����"O�� ���,��E���Gk+q|�+��s�B�nДݧ��C����zRxv����%���z��3j�$��iu7J+�XOү����X��BX��ĵ�JX��B�W?�?W��
v��>������?#9q�Ȝ*�+ �X�7\�$���M��3���ny ���9�x�%բv(�����Mm�@�����5 �[7��O�~Fg�o;�_V����*8&=�!�qQ�JZ>�K�B�z�F0�����+1��������^�{g���b�[5����޾JC��H+�<ɠM�cR7�� �]�\�ܻ�|�).����[C��u���i�'��Z�S:��WE:�?F�lͲ�&��L@��%��~޶ԁv>���-�J�XiGO�95����-�a�!`{%���z�{���q.[oh����, )3K,�_.kI"���FY_�q'�^+��p�r���Z���<.h����V���V5���^ܥ9r��W�,��xY:�jb:,aM�5)5/V��,�S�d#ޯw�1ڕ��`�J��K��7�^�m�ON68�Bl-\,�Xh9 �����@W�,�|Q�\��#�+8K#�8�z�
Nl���G�<_ #l02�C�ѿ��*���i��_�[�~��<.}xŜ3'�� ���tl�/�Ⱦ��7��Yl{Fn�kXu+@��n����ε~�+�H@�KE"Z%�3? C
a�%���-|�r���v�p��&��Xݔ.�c�*e��P]�o�Ѱ��3��^�tv�| E����[A�Fd �h6M���Y���`.�������蚹�9@��h�CD=��XR�fIE6��K��9D)n���]��_��ƙ!�re�l(�B���ƚ m"0�v������m�ۗ��煱`�\�w��1�����dfO1b�]�Kz���n^zu'؞��jĽn֝|��{;�]�"\�\�EMN���5U��Ǐ�q�"G0��c�H�}�mOg��q9ܿr�̅��0���25V`l�l7��2H�\Y�V�ܮc��;W���N�<�{��@|��1s�Ҍf%��$�E>o��:8�R����A6�K�������=u��˰�l��TC�_/6S���1˲Q:��<��M
��D:[�H�0�J�#��b�2��n�S���D������YT�H�$V�$3(��X�P��!��eEÉ���)oI����A0J�v�))P�rmtVz�g��Rl�!#�in��Pd���-jjE��i���9q(�0������}�����4�mh�W������^��3�}L�I��%��������uH��u�J���這M�~��;{r���U��&f�W�>�G��r� �`\ e6i�e)m�zKٟa%��Ng��Ӆ�Ǩ�O���E�G�}Yj��X���P��\^����g�N��-�E���2rfY$���§Y쨪�^��*=[X���ލ5~�A���*PAc8�Y�0|+*^Z4&�NU��8O�s����z�� <��bY�g&�rIԒ|I:��k�r�M���S�zwc�[�Lj��*�����q ��[^��$!� `�K�Č{�J�ɢ��L�}8�S]#�!� ٭��'R���=��q����j�R���Fa�:>�b?�H�pD�fM����p�"���Ex���l[g�+HY{a��!�|����Z`�!c��v�L�R*a��#�W ����x�e��Ï�Wt꧔}���n����n�ڨ%�a�˝�����5k����P��Z̭rԡ$�S�>�F[k�J��4��k����[�YJ�[�#qn���wf�Lf�S�k�@"B�[��͂�Pΐ+Je�q#�R�/�Q�+���I�U�)*�R���T���8�3�g�5�-�]�Rk���l���Eϳh�ֺ8�}.ւ�m�)�iw ��HI�"R�P �3���F�q �-5����~��\��> l�&�Y= �� 0�; ��+���U.�.ڷ�/���YK^�\ �m���֐�/L�=ق�
�ʃԵH�:�Aޮ���ϱn�I����vw/zgN�4I"�!X��}mǤ�HѼc��c��=�?<p�q����6I���Y^�c"���6� ��k^X*f�(l�VM��ڜ��W��kU�uN$8�V6�^��o-  FNJ��J���\�Y�=s���<�1ƑF�DĪX�����,:V{��h�qJAo/�?L� �є޻ݠ)�yUM��!+ ز4��m����ܖ�gY��X�]Ukc9� +!8�F�vrc�Ϟ���?�w���m�I ,0��$�m�RC���n��K\[������d�s���1NJC4�G aC���1M� `�=p� �����ݸ��鲽T� �r�z�J�kMl�� #Gݠ�F(���j��Z&�֩2��D��e�_�ظ�88�s�/��ދ-�
�}8Vcwf�~U|�,��[�rs2�s�U�1H� o��$�t�C@,����v�5�8]k�Bo�������� ��b^>`��!{�]���*@j����dec�4i)�" xx�cv{w��
��F��Lຄ �턯K��m��e߸ֈ�7�8��IxI�~%aV�r�������{)ݻiR��,N�>�oG�9b�p��c ��)C>�8�ڙ}��V2���K�U����}9=( ��Z������T;������A�~bz��ߴU"nz�o�r&W.� ��5�u���f������r���e\��\�]�7h��k��.LJ!td��@��.4R@[���y;{�Nk �(N%(�Dn��m��nu$_]j��Z�d���l��g�=�2�L�n0�m~�6l���V*���(��^l��w��M��>��JО,��~Z<�,FX ;Yl� �C[Q�"�O�����0Ft��@�A�9[k�
�:���M�>5'����6�\d͎^�m�٨�yQ�:��_�]�>ݗp�1��v�-3���Ua�"S&p�E �Hd���a'����+ێ�s��L�c"A ��Cm�`��������
�r��}�'$d�^=G���Wz*� ��ض�\߭z[x��W@z;�z�\��\������$6=�fF�{}�ˊ-�u�F)L0���e��f.��y�Rf�0l�[sZ���*�(��%�!�$�ASה��G�������!q��.�%�A��C̰��2� ����\��R������j[�\�}Q�=��p���ɟ&ޱ�f1�ڔh�p.-}���+u�C�����bX���P��� �n`>�*�t ʭ?E�Ɋ �X�lNp��,��_)2�$Lu������,A�ӋFp�vi�S�I�e6bd��\;jWBE�YE�ċ�9��AB��U��h���[�]oav3Q���1#g��"�q��̂��:Z~�e�DT�" ���P¯+���'GR���)�>k�����K�=�{~IBǠ*����]mS���64�o������n~�f���J��箃M��V$����W���D�SS��4�}�|b�yP�ϸO_�8O����^�����<��<��2fK��#A� �|�n�>9!��)��� ?hP-�t�k�VQ�)o<�i��ct�»1h�+wS6)}�f� �v������-`�g�ٙ/`5t�i�/Z�m�.q}��f�� Dw�^��6�Z�AƲ ���:�<~_ �3�5C��=���e���J��m�SV{5�j'Q���q�y��k����2P��YR�,�aƉq��2D}x�\wI7��\�k����J� NZğ(�}���_�]��\��vJ�R6�!��5��luh�"����Ϥ S��%p�8��g��'z���i�|΂L��:FN���G�K�AN�KX~!קC��w
�����ǣɺd���v^�v&���W,�۸s�km~�3k)ik�C�������h� t�T��n�1ᖌ��.M��I��𸪾5�dmp��a�}����!YR�)K���v����ǿH�H���1r��j��f��jZ,��HJ�x\��C(�����<� ��
G����s��q~�f��v.�g��?�˗2I$� ��h>����2&��`�,�G�����o�� �b9h�ܤ�3�¤[_�7R �� 4�;�}ua�OwtD\���2V��b��*��qI28E�E��+2�[�J�C��$��\��Ju�<�6l��,/f�K��>7�=�"�̞/�RGK�6LQ��F�?���-�.�Q6��d�9x���4��~V�հ��D0󝍇�����CM��G�z` l�ߙeX�>*�.Zi�� g-�e,s�'��׿r}��9�q2g��N���I�����i.�����9{y﹏�d�H��n>n�x�L%V���v[��t�[��q\� Zf�)Q�}r���[�������킒T��Æ�ϑ+���#+k ���DleX�_���䮉,m��:�a� #����$2,��#S�e �����7%wbu/k�:�ڸ�Qv���]vd�Zy�[`�e��\�xy�7R��5�����|u�R� �|����q����q��2�uOV馁� �i�����^6<��9 ��F�mQ���T�C���U�p�֤n�J�MVm ��H�ƕ��cf-�Bσ] ޸K���1��˹��'9�1�q��d\|_�#�<�7D����F��5*�6�B��3��r3n�9pg+3:��+�RE���0w:�/��� !w�9�c�[z�8w��*��/d�H��1BUk��[%�|� q��k��w F3��8Ơ��c���2��6��݉ݴ���A=ͅ�)��N���74C��.�F��:��������}��9��)���Q{�� ��x0#������Z�c�܃Z� ���h��V[y9�F�r�<lX
C� ����\��rM�r�rW (=UY��S�15o<�U���qӑrP��#0�r��# tt��hd7��� �!i���8┧�Y�:�g����5�~�����9�'��j��X�|�GfHDG�aq���I`��7���qvl�b$ܝ _p�DϙF���UYw�Sj�ñ(���>��w�&ձU:�o�P�\]\́= �ݧ�m��i�a�+qcB S�3�����Ʊ�p&۲�x�Z��x��-}�#���=lI�H��^:���-F��jv���=�-��t��?u����ѯ�/CH���e�V�I8{.�f�G67�lj7���:T�E�_U���o�մ��ҷ=ϻ-���m��N"
ï4���8�7�%���vM���W����*���9�&\eN0��"����OO���i͛�}���~��S򮨨┛=��c�>��]D<F�\�6{F���]<��/W�I��,�U��T�4�A1����X�CVB�$qS
0 �������$�TtQ������a�����b��������>=5��:_��C�]��2�d*�t�9��� ')_���u�oF@��
<�Τ��s��E����W��j��n�XCj���;��Fa�0�����h��X�������6 �fڟ�����؋,� �{����ӬMk�?%ֽc��',�}BE�l��ƶ�j4�uY�ȇ)��f軋\��@�6��ʨ�HV�F��V��'�Ɵ��KJ_�>�����n���v�H�/`�-z�K���{&��J#X�k�6�8-k+.4c�bjqa���ұ��1Á�oQ� �/�'o�]OĚ�<Q(�v�����7���O�Q���ju�Md4�V���Z�z=+S��4DHiZ�"�#h�s��>�טx�J�+��J��7|��Ʒd#�jZ����ގd����$����6�e ���C(qՍ*���ڌ�9�3 ���Gh��OEP����Kn'��Z���/�p=Å��J�BE�R;=5��j�M�_J�Cň��J,[�Y�i�p|h�!��2�tde�0��L%�2��ʱ��8Ǣ��nj�W-�q��|q'd�ʦE��$eM����ko$����I�x�^W���SG��c`.U̒,�����V��bF�Y� �Y����v:!#��? ��k���6�)�_! ����R��༱E�$�yx3�\xw�+ȟ�Gq�HȄɹLaAs��SM�xXy� l��(�#�:�2z����8��$�:�\�Mèu����QzVϳ�{�f>(� �����Zfj�� ��B�c8 ��g�߯��������� ���4�uX�oP�eգ��U �`���m)�,0�p�VN��_��\�qG�}!(� I*X����=6Ar\>�0�1p0�Ppa�  L<xh�a�+Adž#i�� (�� ���c��I$�Ԛ�u( �Ւ�*5�Z�ۉJд� BӅ!hV3�%I�3�%XϦq��8�A �hE:�i<��:���Fܭ��/��nZ����/����rU+d%�V�Fn^J/`@*:��ֵx�{,э�w$8�@0_�?�?k;��.���b������<�P4C&L�2�������f�dO�?���bcc�x�Yf�n��Nc���%��f3 R��u����Β�@�C�䛅a�����cVשq� i��=�R�g��S}�#5L��1��e�
U���� �fc`�N)��d��2�-�۝��<�/�s��2s�x��9Pρ�d?!VDI<ѕ���H"|'��F�ݢT`�hɊ%�8t�����{F��#z[� wo�X�o�v�ż>�k�$�l� ꪾ��Ai���D��<>�����p4��Պ�����?$
L")�]ic��}��<�~;ӎ����Oo��s�ΆNBQ��9��9<Ir^|,-���FG�/����e�����0�w��&YY3`��
��=P��вM�%��K��de�����L�{�+M�z��S��m�>�4{8b�i)m�ky�L~�s9���q��x�'���q0� �R�5'��('�\ѕ��yRe��Ydg?k1c��l�\kŽ)J���:{=�(�òՊ��Q���h��iH�d(4 ́l�[�fɇ��^`��I)���\�oc��_u�܎39���\3#�'w�w�p��]QYAx�Kh���������2�[0G���b��)C�x�FV!$BH
.dEVLx�-j6^�_bZ�= )!�(�����U|bk���1ߎD7������ �H����j���O�O)�2'uV*���7�"I m����O5�R�ܸ��P�I��B�aJ�̻��#y����.ݗP���`����q�������!�z�D a�Z���ԙ���e����� ��8�G�K'�!�>e<�j8lg�E���AD`��=@l��I��T:�ŗv��i�bu�el��ok;�c���b��0�Q�@�i��+�3įT�zwэO���CB�������e�����������( ��<h��R��ŧ½s�=��M��8�nC�@k�k�CI }�ntQm+�{�����,�SB��1+e � 7�^�Ȱ�c�Y7/����(�HU|%P<�l�C�읂��ImOR���P�Ѭ�Y��L�RdΌ4�GB��>��Ki����YZ�S�TB���A\�ޚ�c���-�:z��T�gYZ޲�]z�r�b ��5���� �s�A/����0�3���Q�(�qJ8�R�)G���`'-z�`ի2���Yh��
����?����>:&S�i:���%�}�J��g�1����N� �5+ �W�+��{��y8�+UU�aB;�i�w#���A��ï�|3�nW���JV�)���5V��pC�y1$��.���,ZWf'rvB��������9��aed`Lؠ�DW,H�G���^�U ]Ƴ�t��W&n��N��~��Q�� ��ݲ�����6��Š}$>��%������㐙�<ر�8�r ��k�P��
�M؁z���;��q�DrO���s��m��6a��: ($
�J�6�d}��5�hԊ� �9�ǜa�J�J�g0�íbƬ���aM���r��.�}�aJ؏H����K�����n�A�-�S�' p}S����o���=m��uO}Wޝ:�d��+�Lߓ�6�ͺ�jq�,-:�m.f>Y�A��t�W�&��/�-�e_�9wnq���/� �h#*X^����B�
.N���G-���W/�E�+[u�*�6�T`Z���գ��V8�)���D���f6�X[�Mѱ�u�6(���=V�mrSe�=
,ypů�INYc�K���˿�HB���y��S-���_N@O��R�M�]��|F}��ݏ��&N��>J����k*�$�d;�� �|A������HKt��� ��Š0؟�2�G�p�oΊѧ
�� ~찜�j%�Tz7�l�{��c�b�S�%ٕYn�8"�l׺Z�6�u�#�`�8�K�.<��U�Z�2 ��mg�w 4ж��1� ������1�~&6?�1Q��
�S�0���Ko��nq�q�w�>�)�p}��8�O����Y��s����Ө�im,����Nd�@s��c�Ue@��l6��Dܺu:�[�Hx�m:)�7�?����L_�eb�Y��.L�iqz��e�,$tXle*(fT�ZÊ�w��}��S��� ?�>��ɑ�-��=�Q}f�A���^�N��������$Y8�g۹� y����Unu;n@�U��#�Z�)J#�<r���Gq�6N�ۺ}�>��r�T����~kOC��b�+���u�Vf���w����� :���q�s2�e’�D���#�;v�GBRt��֖-�.��|�r�Z�k+�+B&�a�����Lu&��2^kt�)Jw
W�j�N���ĝkVOk^�Q�)�m�f�F�YA��p%u��mܖ���K�m�dd��}���i*U�Cx�����R�6.�uo^E�]C@�MJ��Q�l�H��wc�t��{"�mR�rnx�gM}�rm���[ʔ�ѝ�>�������mFiuv�Q��~n\ � ,�%�`� �U��.Q�?��ݸ�R��>$��l^��3uh��7-���.�Z�[[;N��_a���zA�Ԝ\Z[}��`�S��d:�+����%ݽ����!|Sh�#H�C�Ue�3nX��:*����{���wm���Z�#�Ʊ���LT�fV���7P��uf d�Ǒ}KZ����hO���d��=`�
vx��S6ضŷQœ��+�"�=ż#��Ў.���z|�qF4�;���Y�F_*��bWA�n�ۮ75��x�團2cGf�$h��)H|�@���÷j���.�>�k�:]�}�R�6(Ѷݡ�[�މ�Q�i��r~�d����y,̏�eoz ���ͥ��Om��/ �(�X���ز�o1P�����*�5{�����\�- 3����k�-�1M��&� Y��y�KX�R�)Ta��]��ܴn-i�(�q�&����7�gnU�R�b�v�t�0��UTrf`���&�9)uωӾ�{g�{�����s^3�p��4-4s2�Jf8�H���2zp� vb�#RH��������C���C�d ��w�X%X^%�;a'��M�,bI�3�E�ˍ#��������N֒:�W�Z���0�����:�d���-
�(Yv�o5�Jˌ��-�b]�1�j�]���}���/���$�l����6D�X ���3=��oM�m�������sS�ync�E� W%�ŏG
��M�gw�:� �x��Z��e_4�Ƥ�����T�6���I�N��5�����n���rHF�7 (���I0�(���������Wh�~p�ܶi�r9�L�YX���Y>V�7Iˇh�y2��cV�L@���y8��� �渌Q�Gƶ6Fn,��%��I1B�ƕ��ׂ8�J��LD�'������Q�)V����������gT�������uڜ%*�{]F����Ó`ّ��#,��J.:7l���}0�4C�B�[}�>�Rud)[&�;�:� O����Z%-�o��a�+��f����AvpRgAn?Я����FR�6g���݉0��B�4����vb;���*jv�%9S���y!���M����ܴ�+ʔ�:y�n�tr#Avv~�u�7e�]�M�*��5���&��*��aI�խ�iE�&ߔ�[�o+ʕn�R�)G���޸�^�n>��.Ux��M����D}�Uja�W�) )*6,Y�XɃg� _��T�XRh� (� ����4l��~�b>b�u�B+A��錯Hz�^�7l@�q]g�v��z�i�u�/v|
�uzČ�q&ef�Y���׳���Fq���b��8d��%{F�g�ݵg6\���aj���}H��Սr�^�qJ8�R�g�:s�����}]^a�^��j� �“qZ�n��^�Bl�j�Ir�_���y���'�M4SM�����=+�){�A"���ҧ��ň�ٴ�yB\xk T�Ó��i� �C�����a��+�)4)m� ��S�[b�ƣ�� �����s�M�}`����ܳ�-��+`���l[�5x��*�Q���U �=<B���qFm^��s+qst�"K�����Q�(┱���ۮ�\e�;)��=��.�i�wiR;.U5�=\��]�ך��Y���! �"��d�Ie��d�͞W�#�?�_9�wh�o�_X�q��d��N�<��R�$kdô;��?�� �<&l��/�D�М�á����-�U[l�V7c*Ǐy�B���f�:���\雅�\�I�$hR�*���Յ�����\������rz�g8�vWo�����y��/�~�e��Ƈ,a������G�t?N��ǘ �5�9'e?4��䓁�Ye��*��
�-���qֻ������1��
wV�����.l��=Չ����c�:L�h�MQ
d�/22�<�"Fs�W�e�eHV�����W��rûx!`pc�D�h�І�heE�fw�<�ڶ�v������ryo2ZC(�ո�9����(�n�M��v�wMk�-�g��7Uh0�����58œJ�匃�N�_�$�#�(���$v�3#Ċ>BH��$�f$�@�;�E�1���c�� �����[�$l$x�˱Evꄝ��C����{
�ܨ�8�u��2��kR��e��8?Օ��[Iq4�!^�h��i��2�Yy q�%iJ�� �cʳ�$�nI M�hH� *WEu(�=A�Uu9�_�3;`]�^bn%W��+�n��J�M�fpC##nuY�)��Y`I ��2H)1���򱔥d}��$%�x Xn������Um�Ίv
�(r�A�o�n8��`���Rߋi 1ԋ� 6���>,���6T��z<,�m�ֱO�S�I�+e�ƎP�Y򧈝�ؗ4K�C�*Jڏd�`t�*yt�����8_E��#^B����s���7�ƊX,hn���"xx�('��@��XYE�H�ck���`*����Ǝ)G�]�~�j���krn."�,�Z�Ŕ�� ڼ��Bh9����э�l�q`Xal,�iNd"�0w�,FDC0@ac�l~W�"�>UUe�g4�Rė`�j kh4BIYtf��ڋj^���&̳���mh+|�i\ad �o�=�T'��,?D�h�:;3�T�n�YAeli�r�|�u����;W�ٽ�'�Z]?�Rwa�e��|Q3v�kv]^͔��� X>.2v)̲��w*!I'�W�$b_��
$Qƻ@Z�z���ԛʛ��6xk���g^����R�޿�T�m���̻�B+���]��6���9)�!�ka�N�"Ǔs��-������>J��KQ��Q�*�����~�N���_J�T�{s�� GC�9�hT��-c+bnxh�I(I��d�9���0�"�Q��`����o�^�����{�,�PoI$�4����S4/$P���A$q�,��ݝ��v�|���DAT
w?D>b6���C彚�6���?V=oG���k2$�ĦlC�mZT-��<���؆�_�W��Ec[lD�@���d��9�|�n���ﲜ5��/����\y
nq����峫�c�Ǽ��o��f<��l�/�my�?�c�U���+�3�)�z����\�F�z�U��Ta��V厰Ɲ�%��7`K��((Rs�>��h��o?]-��6�m���}���7i�8�����a��p,qC���O�٘�<�w�ٝ��5���nG%�6vT�,��Iv�b/�-��*�T �@*I��TTqJ8�+'��
}��I�_�t�Ұ�*n���+���K�Zn�@�Z�p6�-T���$�Ŏ(S����c�C��X���s� K'���il�u���b �,k!���V[DZi^/:�VXѷ: ?�:\�:Ub��N���v\���&���~��[�ø����qR?2�;�W�O��:5m ># ��N ˍz6�7e,X�%�'5:��a�X�[ĭ��$��5��6`�`0X�*3y�*I�m],���
llޏ�O"�t��_�g�k�Ե.̣ޤ�S�l;��x���^�uș�gV�q��M�~��ћ��G�6�����2"�YԺ�R=Tp6�\�F�7��9�틘Ɵ��$���N���a���a�����]XUR�)T}����������W���SZ_�7 jnĕ���Fd�<�~�: ��z`w"*s�(�(�>"�����Y�ˆL�}(�-�_���/UXsǍ7�"�!Nޚ7� ��R^� yE��U��?�&����vǶ,7�÷���Nju>��zB_ ߒ��"2"�:��e�r���)�(��e�]:� 4��W'�*ƬgP�a�MN���O~M_��^ Ki�J�FY�6(����`� �x�G��U��clK5 h�H��=���XG<���w2/�lU�Ѓ�t���^�ݱv$kzB�˨#��{����p�_5�_4~��2��"��u�>�5T�e-���T4��&>!#�"�8T��і���o��׭c�_N��8�R�s�:��Ϲ��=P���]��V
��`�x�eX�B~��F���I:��֗y>L�ؓM�"*�ȥD��%W�;���efvrM��z��
�faK�.�`(����Y�iؾ�mm_���`�Mm��z���u��.Rơ��ʷ�mcVѯj�C`�dN���.I�fd� �c%Ġy���ux�Ֆ�<z����(��J�) ׯ�o��=�{_��Nɵ�ZCT�R�Iz=�նj1�� Q�dd޲���"u�~oc�(]`�`��kBI�m����s��2H��H(�S}�R�!�P/����쭝����������!)W�F��N�n�ޣ� ��)P:���rܒ�U@��h���U ̣��ɛ:�����1��A���*8�n����?��1��`�JYM���[�iN��~��ѶmRz��.�ʽ�Ǫ�V��� .ɨ _>�F�� ��׃�D����q�<> �>D�*F}8���?���ixv��טެ����ߝ���a��~�U-�:!�ʎ�5�@L"� Kpf�a J0�e?�qb�x9X�3/�8���k��2��lDPtck��QY�޳qN���_ Dr#��J^PѺȤK,�8;�\�E��$�@�eȘ��&bN#�z�x��6q>�:�����.��YW��n3��R�P�u�0�
26D��OCE��؋� ����M�q�<�y��֍�q+�-y ��Rn,�'���I4ip��Ouw�iȵ����Ƭq9����6�C��R��*˪���忇(�sA�=�X�U����7�M��A�M�h����$���%�8/��ޓ� PD~oR� ����+��lUs���H9�$���AF�|kmZ��lB"�%�3���!�� �������Q˛{}�N�̳��q����T�}��]>�V�=��lb�a�8��#�4/6�m�$r ��i*B�M��� ���$p�`V0�ej�#��Z–��R��c�9�s�݉f,z�Z�T"��ry
��)U��#�����}�t��1�v�mq���= ~΢�T�R�DW�-�b�2�$D6lj�Bm~�s�?S��g��� �1yd㰢χ"xf����H�1���:��)}
�$������X{[�|� 3H��VR�p����u���������V�u�v6��音��H�9�(Yح�gv]�v��)�̩�m��wq��+��K;��l�9�����gq����M����N_x�s��8e� �m��!*d&2�4"'Hȉ�S˲����ɀ�/�Ȗ��E�F ̯�1 ��fRXv��M��h�}���Nޛ�U��?mA�P����͋7_r�`�~�Hd*���V�hv^zG*|a��#��ȼ����J�M�99�������L|X�1 ��fY��Vl���#V&Gg��+Vn����#���r,�)v۸�m@���$�i}j�ڵ�h�qJ��ճ�ï�MVl�������k��)񸘎�.�\��l�(������T�•���xd���KN�J��,��J��|�TbK>\YF���̇@� BG����(�����iP�ݹtZƵ�ܳQ\���h�xZ�|\(��|޻��G�MJ�^ K��#F�i�>�~�k�}�^�l���u"!"��g+�3��_�7�Q��^��r��9�%p1��N�� �2��TV��X5� �]<�kyu���{��d��.�?�խw�7ef�&j�f�]s]��_Mb�U�֕�a��Cȋ�/�aB�򼐵a ��je�㏞�29Y�ڮS"�>�-����X���E?x�����/oŅ$K!�hf��B�zaWu���n�1���+G��(�qJ8�R�)G��V�e�[#�-U�BYbې��\�~T ��JAȓ5�#�$t�DK�3�|����s ZT�)ץf��R�)XF����&�X�B=k��zF�ԨX@��(�c&��C��&D��Y`���^tw�eM�S��Y�)G���2;N�C���-�מyii��m9[�:��6���9�q�c���_��-�g5kUnˀ����d��˘�[�?�(��.c������F�u�vNB�qJ8�R�)Q;l�åZ&c5���޿k�" XV�;^�b��Q+`�%�,
��r��2�zs�L�x�$i�S*�+�l��lh���Ȍ�:�kai��u۰�~ODoMK���5�k}�V�>(�g C�(i��R������ד�����YGR#��ל��m�Y�0 ��c[��T�qJ8�u{�ڡ�i֍��,���5&V�o��$F���� �zFbjbL���G[��Ⱄ!9�x�W�S|�x������ku�kY�dZ"쩚֧b'�ݮ��U]��쑌�����mךK�^k R�Go|����B�����m�h�
�el�6=�zJ%b�m1�]z%�yB@}־�+a �[C�K�6��R�Ho-E�=WM��#`W6���1I����}�y�~gE ���A��9B�%KN2�m���
V��qJ8�R�)G��Q�(╪���]~�9{�F��� ��?~���c�=hS��F�T��+,JQ��A��/g�B��qJ�$yl�Ð�vr�]�ĥ^)�0텆����`�Sc O(WŎJr�k!�c݌�R��_��վ�fTm �in��^�S4�=�WejB~խ-��� <�1�,��Ҽ��9�x�I�)G��T�v���c5��{�TӶK�w��5�]�$�Sј9�Gf<�V�
��m�[���c9���H�|./�:ײ��'!#�㩱p�P�,�m���]����� P�6��T3m/��X��c
mO%�E�� ��Hʽ�NS�ǯ��"̪.��6�5$QK3m��x*�?�A5�7x�h�;�4����� :� �?{��M�%*lYs)�eN���=��cی�㑸����ԡX��2��m�����_=E�����k��&��+��nB�I�fD�f6Y��1Q�M���b�-����B���F2�Ҭ�Y\nB
�A���lw�����u*lz0������kΎ)G�T��%f$��$�U~
(u�)57 $TLh��|�"{���Ǫ�ZS�_�ȀOO�����ZW_�l�u�❝֗�VÄ`����m�d�z��vB�!��2�+���ۿ����o��T�w^B�G��Q�(╁���楬p1�RsT���Ep�^>R,I���ijv<���d������W�{U��P��Ȭ����E���QpA�5T�T;+n������lt6�t��&�h�qJ�g8N2�g Jq��Y�1�c��s����1�+b��c��N���Ǩ��2aK��D�Ճ�� W��V3����qJ�qJ���#��:� 0��y疖�e�ӕ��/)Cm��g*Vs�c���d����jn"���̬�rѮ�i��p+�� #�<�+*i�օc
Nq�+/�(╈.~>N6����&~�D�$�r�Y>�� ���?U�HW��}8�+/�(╉������騙��)�^.H9A�4oo� ��y��)�z}��8Z}q�z�N���qJ8�k���5.�2�_h�c�a�H�+�j��� ��e�N4u#%�^�W�ȴ���ʕ��]�л}�XԻ�Qm�[�>κ�4۳��3L�Kn�Z��[k�Z�c(JӜ�aX�R����Q�(�qJ��}�@�p�Y6E柯묫vz�f��B���8�\��4P��XǦ\�\r���TUY�j[�54R6fB5e���~�����"� k�yIR���+i�9�)�q�3��?����n*,���� �:��KG��Q�+
��' |Ll�,��[�jN0@K��u�{h��}�Cq �2���?�y1G_���<C�T�������k���qJ8�R�)]`��08֦K�V�|��ٕ&~)�׏n�@M�i��q���9B��c8�'X�sdRO�^��j^%�̤s�y�\G4h�����,�`D;�2�cؗ����c>��� �����)G��Wā�-�0P�ʽ=̐�o4�O���J��L���+;��5_�p$� �!p!Nt�hWOj5���a�ڝ�2��INs����[n���������C$�����I�'1�G&
��zIy��[���ƅ|I�R�1�����O��rD �A P����������ϱ�!>���-+��(�qJ8�`³��䌆����LG|���
X���KN��X!†��V�z���y1V�T�э��~��rZ��)G�ߺ{+ ��5z3Z�jm[���u�1\ձu ��P$*QK�7{�)����F���!�V����B��+��;E����*�Եz�4;�'u�íN�.�֚)".� g?
�q��b�(���Ӓ0��9R��S�����b�m�G`R�a��6U�ߣv�&��Vv����9w"��aj{<ـ�w�,ȶcN�8k9q*U�L���P�3��󴝔�b�9
S�_�vd��/���5�H��[��?]ߘ8��$|2�]B0әJ��i]Ҩ\v�N��Ԇ6�݊��o��f�d�թ2;^����J^k��Vक���c�2#He̡�4����(�qJ8�R�)G��WX�]j�b�_��4�MJ$��E��*z� ʟ:R^ZE��!YNT�ZS�?���u$��|)��m�$��N�x��͟���t^�I�f�����d���\�W��W�$��X�}j�+!=/5T�ʹ4�(=*��3����M�`��y f��W����P-pH'^�_Ut\_%6p�R ��0���+�׾�N�K�z�]J���H����� �u�6M��nq����v�ʡ0�(� &�y��Vw����Z��~��Ô��ɬ�`L�C��A�m�t.�s��'�
��x_�hcρ�|�+X�be�W�,5ep/�ի���i>�k�ݱ���Mۚ�X���H�f31�J�3,+�FK���% �V��“��Q�TD��H`~�.�zծX��C ��2�VXx�\j.5���ɫΠ��{v������1Ӓ[�C�
�7X�,��.%��'kB��]���R 4�V��[Bה�>shE��Gŀ;G�m^�,O<k9�u ~
Xn?p�y��[��jz� �az�{����G�=]��ؑ:v� i�&�NӴ� �̕]�2��S$�y<0�|��c��`�\�,a��}Tx�F�b�n�;��ײ�����r{��l�g_��$�1���m�8�u-{y��[XAt��"���H_m7uW������G�-�5[�O٣[���7EHꭤ�d�Q��F!ՎC��uY��� $2���^6`[�X�u�E��6����[���&�*�����߈5�7�֦>r<N�� �Ϋ��y��C�գeHSN=��R�:�\e������t����^�o�s�3��3&6^4���T$ �sf�\����x��󘪯���9�����k�yu6�� �T+��%<^��t��^t�pK>w���O�����p�~
.���Çx�GV �Z �90���
s"�����d�>܄�yJ�~
��^��UX�H����K�Ŗl��϶І]Y�.��Gm<�p����n��*>>� �oh]�ƣ�[Nm�9Y� ���/m{����<�S����q��0�=I.7W�!H]7�f�\�Ebe�HeY��#�����s{�t���������C<�4I��B��jK2wm`����Z���Km��-��!B1�)kR���)N=s����3�׵��xzա���ɳ��!��W3M���� ��Nr�(5�.�0մ��͞Xp���� kܟX3m���EAce�mW�GAv�Ȅ��g��9�� {�t�0x~�-�:��Z�l
�U�\e�e���u�ejZ�A����:��|����T�O�L ��R-�k�:GcO��}���+Vv{�zg�6ћV鱷�H������l�2F�ҳ�N�o+S����O�ʘ9���i%���dk�e����<'oc�����I�ܐ���ݝ�Ġ��>]�o'0NJ�����i��u�Բ�]�ץ�{QOސ����*���:�Y�|�sf(=����K� �;-6�q��V̓I�0��#�N��q��� ��tj��WuU���}�ګy����3I���ԫX|’G����V�U���U�[�*�o�Y#Ǘ�Y��N��b�FJ"b-��A%����\Z��gDlk���)\S�
0"䤋>:<R<�h@�F��E�S�m���ԷZ��!9�s�c��a֠H�@)"��n��峽3]d�Gf����ϙh�y��j�:iZ����n �%[�'e�k�wd�� ��˜r@%���[���G�܇5ܲp���?�ȑZ@M��U�����mF�'jq�k��wG�G0���,f�wn������E�]Y��g�?�hk�kI��ƣ��z��Cl } ��z�v�j�,6 ������Z*v�(c��6U"�2��H���'ӽ{2��I1�Qr�F�2|��u �4с���;�f�<�c��e��jڬ�y]7h ���U���'?��¦�:��O� C�:-m��5r��hr6�S'>4\>߅ޱ�q�K���*q��&-l��9}�8,N���H�x���Ԑd`I FVm�y�n���'ܙ��).w3$�bN�|h�6Ƥ��2�ʾ���f�b 6?�O-ۧem9�w�`�ͳ B�zG`Y)U��N���ٚwo��kP'톟� ��E6d3"���I�v�u���d�\�I��8���X��Tشd�u�$kt!Ƅ���_g���������]���U�񳋨�.�6���F�if��iX%R������w'�����ȝy�5=����P�'��,4��t�1�>.$�B��iE���[���K��XZT�a�Ƣ��5�n���/����Qz���Y�N�vvF�o�MoK���P�Zz��a��+VJn�&�5j�ޏ"oQD:��.�Hyۣ��Y�����:7q��)}V�Z�j�!۾�m��/w�'vD���X��L�7������@W��_�S�8��R����I��7�� �Z���%$Ǚڶ{"b���E�e���$Y�D���zi�p��[+!Hk��-�V��(╋�����H�,su�q�����*",��6FH�X oR�uiBq�\�� �E�~jI��� O@ ? 5'�ST+�13��5=^�_��6��^��v��i�b��F+�9�OA���L����HFs����F�T_6w�ۼ?p�og{s �{��p�_<j� NJD2��S�$E��(u���������ivSw��38�}xb�Ic1�Lq��;�� �"�oM�F�(���vǧo}{�zCvv�����X�6���4��:���ϭ���X#��ջܜp�Ȍ뭖�5��������S�>�w<��7�>!��Y�gL��G�F��@ܰ�:��a��n����>��&'tq���s�Lj�g�,h�X2�%yL�g��@W ��cTĒ�N���=H�]@� ��!��x�_b��������v��G�
�Bɮ�4݀R*�9I�{�C�3�~��|jK��g�����N#���3�"�Λ&6WI ��;e��T�OIPac���)"�y�W���Y��9)��C��d�r����2�ܥR�_���P�w��˽����i0�i:�\�jA3cm��~%e..>00 ��5(s ÀK�C����R�K�;���T�, �ݭ��Q�62�����>��=3Qz3PР�o�Ҧ� �p�d %��J��F���Z�H& g���INlh�$�5�cR>M�4����9̐�G6E�C8W�b�k����1O����lO`��U�C�e�]�Ւf�v�Z�X��֛p��kI�� O *!(AL3���*U�2��!�x=��n��W��WVd���N@�4��ѳ�U��uzt�HI5ʌ�,Q�c�q�>�aJ`~)G����_+�}��3"3X���{Erߑ�9�K_T���5�i]��l6]D�X#+�W=m
�b���^v��+�,�
�a� /~�X���=����p� �Ñ�$3��8�Sh!˫~/ \����aP5`����n�p��TN��{>� V`Tj�,�,�;���9Z��ۿaD:rND�
ZD��n/��^i� ��o�[��V����=�̝�{�c�g�Y�r��7g @u�͛Q���e�5uk��9+������
�/�{�^�ֺ���B.��S�,^cG��a�-O�X�Hי!�b%�e�����8��H�m�o}�;t��~
�߹����<wϋ��C>͂p:�{n*@���u$]��x��腭���<f�r�x�� ���,DB�E���L�ʬ����m]�� --ȝY�I$�
{ 1����Wݻ�%�`4��K[Q�W:{���=�.)��q#XJ�f;���sj���7��x����X%R�)K��� ��R�+�W������~�p��!�L���|�l�g5��(43�P��:Ji����w���S��rN3��y>?��q&�� }�3R�iJ#i��FHf;���Z��ąk�[[����S~{_wKA�A:�=�hl�5ݚ�_$�gu�
�V� īh� $�V=}c����X�'�ڇe����?��|����V^�ȚS�����<eRb���X���g����c��S��BߧK�<�;����qJ8�k ��u�����a��L��Z$�!Y��=�D�r>��Sx���0�+J2�g9�-ܟ/���L��%*��c@�I&�4R��(fo(6
1�PI���/��y8xn>&��șb�=���UIbܑr�Ԑ*�zk� eG�[R���*�?�;�� ']� �o6x�%�mr��Ĭ�n-z�PA�y� ӫ.�3l`�3Ξ�����{�������q����"q�L�3E$x�8`Ɋ)Y�|��^�Dy#��}�w�y���'�vo'��wn��6zD�(�7�M4$j�$���ϭ� �?+1��$�m��lk��� ��s��� ��C�˹m*�xV2�O\s�����@f�>66��k�V�
� J�S�� ���j��)_�C͸ӨK���6��T� NR�+�2�'>��H�:�ƛ-�m��5�u��tY��H�M�!;+Q�W
LzD�*�+_U 5���?�Ư�㽿ʲn;����e� �F|�����b>���nZ�c���oa
��+ ���^����EÍɲ�:�$<aka�6��:���9W�5�A��U�퓽����䝂��� �Ռ�T )d���I���pCq��ZiB)ԩ�R�pt0�K����Qk����)�8H���5�錠�_���4�؁��V��Ҫ�[Ǻ ��l"�$�X��,�,ƕ<ٲB�F]�g A�%�^$�T���qx�b����R�3f�-�k�[����[��;��iZ,p��jڼj���-w��U$��<Ԩ�� �
�MTL�}dIHk��{��� ),������-�Ԛ�f�"�;�����|�7�x�޷m��a������ם���;iȠ*���6}�i��2��T�%\�쉩�Xw?��W˛��W�����3NU�?��4(�΀��?c5��z��y%�֑�/����
���m���&�Eg������Ⱥ�V���j:kb�6��i1�z�4�Bخ8�oO��b,2��I�\��N@�U}[�lB�<>�,jb��1�e����q���⮥}�����N�ؠ��5�Ծ֔�i�^�_����qT�d�^�+��Tr��a#DN8x��K�vC�rPI�r
��;���]/�ƫ��IH1i� $��>'_��8o-p��T���>�Y��{���q�O�ӶakA��۷
�P��w�c&G>"�W�L�|����u�6_��i����V
���.���f����%n�s�F��H��c�-z�Sһ΃H�/.��^����8�� v��{��&�G���{X�S����۵4��� ��S�U���7v���C�j1�FZJ��2�g
Vjk;G��~�]��t/���:�A�}��teǟ��ݞY�ɤ Z�T�t�$-u��� �ǰ�O���x�e�NR.P1�cd��d���YA!� �-�� ��K�:ڔ��)9�3��J�qJ8�P���B}���Q��M�CQ�1^����Q��� �<�k1�f�Z��aEõ �2����8���V�ͻ�r�����NrX��T�4�(;P�bM�ߠr.��q��s2� uA���y7+Ԓ7Hn�K_qE6.�����v����_mv/e�.��vP��_��Q*C�La��j5�{�0X����8A
q��o5��]˙����]b�u��a�Իy�Rk��N��1�ƪ%��!��C����I:_(�*���j����l���;����)f!lT�"6~Q���7\�AȨ������q��D7U��<�g�^;�Fk4E��;��6Z��� /%�����yhd!t�%�2I���W�IV[
��F��թ�Ӭ�=�U�;eM��T��D��DU� ����l!Ü4�A*�TA⺴��- �n���8�y\O�̷�� ��V��hEr�?��v�/7�c$M���.��&R � �� M�\��G���a�]eJq u������u8q9FT���.4�q�T�9“���"�u�pA�i?;���V���;qL��_^ ��F���Za��ЎJN��GUl��*"Q�N����8�zFa���i�3�);k����s�l~��/��1d����f.�4�_&ḻ�,e����m�`:W���6�\�.���.>~ , ��8P(
�za�cA�i�5Ǘm��� ]̿��sߝA��؂ -�b�*e���"8d���,$�D0�ہA[���g8����
^1�g����y+�ȅ��21a���I�D�<e�6�̧AҴg-���q�J����,K*j��r2,�n|������Q�����Q�* y6NGǯs��%��/���F�����E���<E�,���q�xk)3+8y(�IQ<ҷ�
#35�UK3_�U�ꕭ����"��:��i>^���k�iN���� Ľj��9�9�X�4����4ّ�����:A*8�9���|����p��S�x<&, �!<�����Rm]�eV>v��T�V��an��J�~7ެ�ێ��ba+��c�`l��D��N���[�N��c/�k��8q�i�<�W`RMUʝ���w�?u�����n��Ɲ�y��\���_�f2��ޛ��o�S%� �������{�u�T��(�L�N|�ۺEx�i�Y�����q��lR�{�'^�T��>��P��i{%�l�X�]|D?8�4�q����?w=�ཟ��39lL���$Hb���Tgi%���ٮ|�כɴ��ԩ8���+DGu���X����uj7c+v9J��u�We����\��Y�\Mz'�UN 9b���0�t�����{�)�.;�����p\�*�xrJ#�a2�P$����I�gՙ�,fp�d��������?��k�zn�=�qB�����Z�w�V��l�S��=WH�
T�V:�ӷ?c�����\n�
XbTџC�l6Mu4^�g���pd��pώ�-7�.���� b@�0e�FK��QO1$�� ����1��1�{xoY���kZ<���j~�[ݺ�X���l��e����MM<)cE~ၪ��M���'�3��:�ٿ�W�� {}�̞;����8���l��0�ŕMŗ�f��;H�)�9�5�G��R~yq�s���+7�o�ޟZ������GQ����D�:Dze��!Q�����G��Ȁ����+�}��a�{��?��G�{P���.DŶzj���J� IPZ��������#�{y=��-L��4� ���Rw�+)TW"5����F���7��Ǹv>է:���Toi4�R�WXʽ�W�����AzFoe�n�EF�T����u��s3�p,�Ҳ�5�������Xr�#�b�ӰA�T���A�H �Z�'�{��H�G�������Kr�
�#�z~YA��b0�#�U��&�Ӝ�H�O��!��O_��$�~�� �Z��n�GԬ3���`df64�؛���W ���0+�H���d��n����9Hf��s�R�Q�X�t�m��ka��_)r7�]����V'7���� 9���R�9`��� Y�v����*Jv���l�[+Wz��Te��;e�ȥ�V��f�c��/��+�q^է8���) �c��f��7!~#Z켅MP�ZgbRa������V��u���T�z\�GZ��)��Q�������ۊ�� ���3k��iHtԭ*Rtj���{�rtUY����U��{�Dvam��Z���آ���0����O�kҥk��u? E�� C�V�WO�i���;��N�^vl��m{\��g�����J5�hy(8����K �4�F�+K����]�}=�L���U;���G��BD����.�v���7^��)6���#���xA���l���T�c�}�0�0�6G����u�A�*T���Sz�YْJ��5�*u���"��޽���.~���Y�ק�f��,x��\AJS�J8�R�)G��Q�(�@��xjJ_�[f��Nʫjv&�G����7!;#S�T�,��D2Cq�ھ8�P��9q�G�)���1������2s�I�v��� �qq����qpH���������#�8g�p��};�cf;���X؀i@z��M+�������Q��m[D�����M&.wu�,�ڷ=���:��=KO�����EI5*�yn�G���K��{�d�s�&(â��ܢ@r��da#�5�{��m��=����Dq ��4�$b���c��2��B���(>���FJ�{��ZF ���~Dl0�ږM�κڽw�vff�%W��i����2z��6�Xc��8����������L^k�\�����n�u�EuUX��&�uR�[mK��sy�ߗ��q��m.�3ʨH�Y��7fi<��bʥ�u� ���MU[;�=o��N���� qDD�=
V���������b���� �Zl�a������D%���}��������Vgx�'h-�,Y�<��C0�m����<�]���E�dAf���UUr�B�.��y�+X�Ɍ?���rҞ��~XJ���^�j\ZՏDzz��?���F���>�Cu�k�9�=|��
��$�)���U�Ɔ<��ؖ��Z5��R�E���F�%�ID4�Z�� Rr��Y�fD%cr��F�/ *��$�k�Ê�ya|�q1�@�$bFe�$d3�6/���������B!��u���Y]�����eoT�5��F�h'm6)�8�6k�b�*#y�yG��ɗ�y �곣8�9���'���Ǐ26<(l�}3����P2� �"������ �L�E�&�k�;�Tޠ�B ���=ɷ@m%�����inW�7�z�E��i~��#�.���[�t�� ��NC��9�%a��TĢc��͊�
���k8�ly�32}<آx�H�&�(eV��ce]@*C��p�
M'-� .)�
Y��$S&��d>�����X ��5A�Z�����I7Һ_u���' �w��ܹ*���*�'J���� )�lp/H6�$E86
wYˉ}�n��9<�C�^V�E#+ɶ$��..-*��U6�G����⸬^3��.#�<���餁�*�13��;�l�Zޕo����״.��Zb�#��k
Z�1�FT�*A�������-츯���vxXt�x~�нN�|N����ɜaX�U�g�q�g��3�g�L�8�u�B�a�.R�o�m=L�I���|�lXB�e�n��T��8)v�yo�����Z���JVs �0�P��>6������P����»l�����$�GȘٷ�wVj̞&d�x3 `>?�$c�P�:H��pP�gܜ������=����3�ɏ`���$*-��r��&�x�>NW�����i^��H���(&�b�D�א��F52���X,�{3�pؖ�=���_'�B ����ǹ�������e���W���9 9>NC.l����:*/EQ�;��n?���1W BĂ�2|I>$�Oλ3Ju�Zq����ZTÌ�m��q��S.7�8�0��nS�g����ץV��xVKC��u�zT�eȝ3�;t�B�LȪ��棤�t��R ,�Xg�1��BZB-�#.d\���$�����Y۴� �ze��l���a[��*�X���(�y�%UK��(���^�K�Bt�����@V����C]�Eu����~ɲ;ñ����D�U�
>�M�x�� 3���R;2>Z���菺Q
a���1>��^��^I#�2�E���H
d۹tM��`K
�f]��y\�)�+rq�Ee��MYcݵ�}��]� Z�S����Wл�IZ�Y��z[Pӝ�����3~��)0�K�����`�4��Hm����G���|o2�ѻ�z�q$i`5P��+��X��ܩ2y��M� yD���I%(c��N�T��QfA�M���.}ۃ�#�]�����zƱG��Ѧ4�2�w�2�a��"���&�]\��`e��YUx �8(��;��{O�8c�=�‰R34���{�["�B�ʪ��*�Zǀ��s�y�;{L�I���
�`@�ٕF��.uf\�R{�>��tS������V�����٨M�.]ƿ�u���CBMF�W��32WJ� �gF�y�6M�0���y4oѬ�2�.�ՁJ2�V ЩR5�moj�K���ʬ�#�e � Ҥu�m�[�֐ò�����Ccn��j��e�^��uJd%��X�啽�n���3k@�%�y �=���V��aO{��9�32����L\\�du@�<Q���E��}Ar�v�;���h�vVDp6^V��9F�gg�8ޗ @�Ѐ���Ǐ��kO!=g�v'[-^��2���"}&n��j��MT�B$���`�ël�����F�����1S7�Ǒn/��G�~b��; '�˓1v���6�|A�A#��69ST�U^_<��/=T��;�%ݭw�K�t���5�f�������Tc��J�%���E��hm �Q�L}T�O�_/��̹��op�֭^x�Mw$9��>�MFJ�X%]nrW[�lA�C���R>Ƥ=>�*VNo�N��ӋOq;��zQ��������U�k��,r�e�U�*\y+!d�K�82�u"TF N](�8�q�*}��<�u
�X������n�S([�RL��vHt��t>ȭ�����] �!Iu�$�C����0�*U��J�W��kY�m��"���"�/i�I-*s��������xˤ?��Viˎ��!8ʕ�fIe��y�$(���EUf? '�^sM</���1�B��@���b|���]��M��WZŎ5έk��K���lqb�;���%�鶛�P�H�g��9eA�s,3��:^>w���/�����o���|�leecsI���C&.r�4rI���d�2����}oN4Ԝ�t�oo�r�K��lfqS'����e˖9HQ�CC$8�a���f��\b�奁Z���5���O�U�\��#>�6�" J�lD�̖�㑨B��(O2l�����7�p;�"1�Y��E�� ���$~�޴��,O�Ҭ��� $q��k���_##�0[%�S/*|�\'��L�S�-��8���v��Z�`P4i���E��C�Йbl�,��������l�Vͱ��4��ٱ�KSH�F��։1� ����������sq^�aÁ�ݱž���ƃO>#?8y�PrYd@��(��ȻX��=ݝ�n?eb��?'ɬ�8��iqW�9g: I\;k+(l��4A͍k��75�zY �`?����5��R��8�Mf�j��0���"Տ&.Hok��}a��{�[�������1�38ܮ7�<� F���'���(Յ�,I2�c;D�+�b���<�l�ݛ�r`Ď\�d��IJ+�ż��eT]ʑ������`{݌ަv_a�{�;1Z�Jv?54Uk;�w�)�FV�"�J��a>��{��FN�&i�RGH�-��W�=��'zad�/ �e�Dy$��Y��� �q�r�ގ����0�o��rT[G�Eq�Q]�Y��@�1�.�S$jT0V����%��K���U�k}O��d݋X�!�������rkb�F��p�V��ЬDW"b #��m���Jp�*��Sy%�=��;g )?�!��6��W�]��X�����-Pf�3�q����l#�@��mo%��R��u�v��w����d�:���E.��~G�6����3y���u�W�k�a�5{0���-v
���p�^�%��5�7�j��q'l�2:�-$q������R�X���n1SY_ټ�1�I��ǻ4f'M�Tۍ���t�m��j�|����}��К���YۭG�d��7U��)[]��k���G[�����~:��dI�C d���t)-j��%OPk��_^kWηm�[�
��5�L��mh:�(�vM�Dt��~w`6�k��k,��:{(�" q�֬�
�zwiM�L�ڃYn�tc��v���jd��5Pv��&@j@\8����� ���>�#�>��R���\�T[�Ǹ�ʕ�a�Y�}�w ���%������-��V��^q��<T �5?�ʖj�Of\훽� ���c�J��4ۺ�]޵ s� aYRGhW����Rĕ��R��%��ߚ��6,ؿ��������j�c�x������f\*g��laM�YWU^� ��tm�[/d�m�sܦ�6ն�U�׶�WF��&*�˃�.��l��]���]2~�ٳ/�\q�$��nL�T�l�ˆw;&~�h���c{�7�t���-X�k{U��]�,��2�R�����.�"�&V.F����ݦ��z>�>xRբ�z/�o�dB�cj���{ت }V��ʫ��ZZ��fG�U�\���`$3���pK.҈���V���n��M�UW��`��'���2��Hv�c��V+��w���UP߈i`y}}�ŋ�[C��fRe�H��9M��0�� ]����YI�Y�f���LA��4���j>)����1j��3�5Ė��l�<O��t�_ >5����Ǔ�Iy����qcL�T�H}S��E�y����[��v�l9Yk��[K�UlUJ.V�N�*2 Bjwd��V�ب����O�J��hA<O�o�7�I�Vs�@z�k�|���\��֦�>> t�&S)�A����w���X��S"�q\��Z�)U���WRvo��Ů�4���}�:��k"� ��i�˶��.0ż����K�F!��y�W����r{̌� ��^:y=9�<e㍞2T�UuYJ��u`u�$�����8�N�5����WB��u��v�N̙78�i-H׷�i�bE_�D�3,�f�01U$�p�<������#���{�1 ���̙ed��0l�wK3�3��P��*X�n��{S2�+֎)Z�v�x��6ᳰYpZ�5k<���� ��؍i�a%a !jNPڜ�/�8�yM���Sgʲ<PB�2ƥ�a�+ ^FȃVbjj�L��pbdYg�# �� �tD��� =)Z�)�N�o�T-f#q�hK�D�����QٴH���(@͊�ph��U�%.Q HH�J���?����܏p�Tǜ��s�/� ����s4��o˞5ydd@ � >��1�I�]���� nW��y �̉�F�� � �c�;�B%��V"@����i�ֽ���OOiI��Y%!g��̔T �(�?n�RR��#���6 eܷ2�s����x$��Smb�؞���nv)�^���!��n4оr� ��Jv�mKEK�x e�]�Q�Kvves���}���a{��42��L��x���, $�'�]�Uh�.�[Xg��B�V���� �%�m!f�m��Y���g��}5�} �ٰ*L�l0����t�k�/��M=��V�}�r�}��s~�rܷ=�p��b��o����r��2G +r�U�F�geW�����]����q=���7q͎�d� ��1�M���#�+LџMՈ[)QR{��7�]��,��D���G���P�*�Ĭ[5]p��~� ���vp��Kf�C��e�>�첬��e��w��'�{�d���_����cb�$�2N�f���S}����QHE!�]����Oc{o�����9E�6��ɚ8�V�ok�)��HN��; �p e��wjk���'x�^v�ؗ��C��L�8EN�'an���v�-5Үe0�K8Iih�s��a���_�~���A����򙝥��<NU�DR��KF�����14�(�9�.YZɬ���ja�������{�=L�92=X�@B��,Y�E��!H�ª��ߝ�\�G� �-Dfi���-GU/db2��`!�s{�,TlT|Tp�.�f��b��/$�;�0�����Y��j�;+OW�9�AҢ7ﮫiŋ�ٍa#r��6+�Z݂r�8 [^Us��N~�a�D;�Ϛ���PR߿9y�Ga~�K�RKǩ7���4Sd�DVL�V�u]!��Nֶ�Įf~��m���e�; B�L�5�$[v`��0`�%�1v`�*�^C.ldÑ�ƌyV��liJP��)�R�a)Jq�%)�=0����1�~��G_�)Zk�����7jo0���kL�p�-�`><E����hĭ�icNj��q� G��Ȫ�0Ubl>�P$(,߄ReCV�c��vhh�ko�����HX��vL}�}����t�ɏ5]�jjVD�K��I��!��C�,��i�<07+�m�*@����-Vt���|���G�B/��z�}��_������l�M����릷�7�������j� +%{sȑY� ���T{Z����j�~��5V�F!Z �݇��f$�?�u?@?i�U�a#�H� �=�ԟ���7���C�L� v^߯�7���v$u: �� ƿ��_dh�����&��֙'6)��q��:��=��f�<���a������nW <O����� ��i��:���7S���7TҘ���6�;Ƭ*Gv�+M�cxД� v۬�26j� �ǐ� i[Rn���/�F���|�*H����M�O��l������i�y�Yh��m��m��}���^e��m:ӈʐ�n!X�U���}q�B�
�@v�:w�w)8�ru���j��q��cr�@wͪ��4�����3V4;��R�Z1�g��*Rv#�7� L3��4��7Oi
�mo����USV6� ��:V����5Ǭj�FJ��V� ���2�-��Cpl��c�ñ�cpM��%Z�{�U�ךC�����l�[snkm��dц��Z�C|R�1���3T��pz�bKP����X�v�q2���ҡ�3;J!P�i��C.ak��r�kR�ʑ��L'ҏ��پ��h����x.�j��"�`��[�s�gr��"fƃ)[JF�ʖs*���G� ��
%�)�|Lv[Po�;|�ЖG�Z?][⤴4��ƕ�v�p+�;^$��x#t����׀ƭ0��' R�k|R�)H���Au�[ʯZp��v���z����w�$�ѐ ���i��-O-�
��Q��Ao ĵ p횖ZgW��x��<~� eɐ,�iu@�� ��c`���-}���ٱq\�l16W�!h����He6 �n*,��U���'VA�9�ݜ�6cR n���^�c�� %%#��D^����U���r�lڛ2�dGG���t�%��<�����r�$M��F��F������*..��.��l�?3��qs"m�v-�L�H��U�\ݕ�̷Һ������$gg�N��\�A���ӱ�8��be��M��tI��-$��CCM~3��s�`|���s]���Nk"8���]
Ŀ����m/խn���{Xe��c�Fd��6�򵮥���*���-�iL�h�)=��_K? ��}?[��ѯ+� ���St��N�$����K�J�� y�S��f~�fH�ټy7�$_�pU�n�?��oy��r0y -##�~aHu�ٹ�m9�7i8�.os���~�y+��ګQ]�T�[[X��Xl:�o�»8‰��r���ލ�U��>�o���C:�Rӧ=��p�a����NVGk�U��1"\��V�0���[lr��Rx��m����/p��S��qq��g1l����s��XV3����!�0%; �G��ц�6��oj�v���=H��5��b�V�m�l��|z��2rW�N��$�F�Bq�+�{�؜�z������|G�� �\7t�<p&[N�Y 4ل��lt1�e})�����^��G�gM=����\�g�.&�I �J8˒&}��B��ȼ��vg�]t�>��Ʃװ�����%�ep�MPm��0���g[��ҫ`���T�$�I1c��}�4��;���l{���{'�~7'"Xg�& �H��R�zRK�I�����f�C�;��g�~3���3��Ă9!�%�Y]�WQ2F^4e_[`����mμ�z�qJ8�W� ~���.��n��06Ƽ�k�[�0D������=�}j��������e�{ w^}mۮ���\�oq]���ݙ ��gH�$ck$�ѐ�j�0b#E�;XR>ݤ1�#�}���myu��SQ�t�T�\�3��\,q򶚴��yKp����<(�;y[jJ��+�9�~U�|&˲$��H�'ƕ�<|���9�����k0 x��^�'�Q�5=W�Z:�}�C֗�m��wl桪��T���Pl��a� ������Σ#�����]q���.��ݻ��wWvd���H��a��A��*mtV>U��f!w:.뺆��`I��49 đ�,c���A8'�(3C)�>)b��`��aĭ��!hV3���ӖR��|*��<�(┐�]{ �`;Ű�b �������N��e@6&���N�e��I,�R��EzC�$�Q������;�����"rHF�K��c�/�$i�o敊���B |�Ts�=�ֽT��+��^��}�|���������&�Jl(�V�nŻ�1�κ�;@��D�b<���[���j!�s���l{������x\�(Ur�#��qq&�e�Y��a�,�ʁ��"�q ��a�m}��٭����׭��)���V�� �^�{����d��M+T��E�j�~μ�",��6)��v u��s�%V��>�r���𝧑��v��ȋ�� �̙S��'��:�B2�8�bb q�,�
��:����W�.GO�#�;+Yx�u�ຝ�"1er�[��� o��l����z<v�g����^N�w�佳���_+����<�\���aup�2�x�ľ���o��V�@`~߷J�,�}q�����q�g��3�s��T��*����Pކ��e�ʻq��)B�5��
U��ӿ���)Y!���lkFϘ>}0H�N5���c����r9i��"�t�߅��*� I����s+����q�s2��8�/4����W`<HƼ��۝�׽���|M���m�5mŮ��v�n^��כ��,���ˋ�U�ΑnJ�,y�H��9���p�]c<���w+�sǛ��Ȣ �T�ڌ��7@���pk�;����~�N�/�� 4�ŵ�H�|��$!eY�p.�/"�0*¦�Сv����[�+�r�p��ū&�P�c`X5��KA�^���CI��X���������̐��J}����c?[���~w���?9� i�s�h���1� �*a���)��U��ٶa?��{_�{{��\�?�#�l|�xrE���2dh�G�Sm�,a�eY*�b�ݝ���귑�F��p�ͻc�1��w���j�k�Z���Y��c��l�\����BS�4���9\|�{�w)/#5�T�!F rH}3{�@I7k�rvnfcb�f+67���W2I�X̄�b]l��Kwo���OF�uv��K�v���:�h���wKB�&���1�C�}�71
���++|t��[���;2>;6Ll�V+�*x0mO����b)� �����{��y���d��&�LͶi%��f2B�XXz���̷���/�M^�`����U�m�uj�����s�S�2Q"5Vrv= 4���Ή��JY#,����c�\�m\��� �Z��݆��S�[K~[22���m�6F,�)���tE��s������P�`\8�P��ۘTi"Fs=�����}ܣvwoEޝ���pv[��iDDg��ҙ����mڜO]䴐���e�x��Y]���U�x����C^��,�T>�h�v�OO�M]�@��Y��G���ن���h�?����A%뤂��hB���XZ��q�z㮣�����P��{�ΰ��<uw�zkFm���h�FK��*�ڽM�-)nȑ�ڪ�a��A.�Jf���=��+�o@��w֘�����>��H{MX)��Ո�I(is�"�l�Z[��A�FH�y$�iJ��)G��Q�(�qJ8�P���]���7\���'@��4�UB�y2����L��Pw))��)\T���?$WFm��KI�R.�%�7;?�Ȇ"��� �ygeWo1� �� ]ɹ�+%������ƞt2s9�ʭ���\����䙑��� ����J;1�.�l�,���"�h�j�->������0*� J���.5��ҙǢ���H�����N���c#�{�&=�x�T�+�.����y�[|�A$*[��l~��V�[��x�e�.��G�B���g��Xb�� ��sx�lx�%��C������ӕ�z�)rI†�B��+FʈKk^sP��0�c�1� 7 r#;�IF��bK�r���HF��������sc-1K�7��$O�� P�c m�p��=�QUY�I��r�L=R� \���%/L��}�);(�Ό$�핒i�U��9�5��O��˙��vT�'!�5)35�T�����/�l�s�n,�I8�H>6gi'���E� ���� ���v������`j��Z�:�e��ڣH�.��c�ȱ�I
Y��)W�u� v2��s�b��aIV��������ܖ'�1�Q/rR���ėV�ЋV������/;Fʅmk���|��ˡ
m��kԃ����� ���E���]gK�1��^"8k�| ����8\K�(g��{r�J��=9Ԡ��n���?��)��s��+?h6?�V��TG��o��M�a����_��^�Ї2��*C=?���Ϧ=]d�|0��넸#��^��S�C����� 瀑$��w@��6?� ��q�9�鄳�R'ilz���0 �R*�}�q�b���&�
%��4uj�t�d"6L �y�[}\��%�����w����l����Z�� �#����S���:ma���_5��-
N1�k#\��*�*�zfR5އ�����F�vV��7H�]�2��~���!Jߡ����t09DHK!��� $�� ϼ���·[Ug����[#!�ʉ�� Y��9@�bA���R�=�![ikR��Mq��eČ��I�"�U��� I� {�֠�{^^��!v��������L����caB�学DS8N0(�D0+�F=��V=2����K?��6$fϞ�0��b!���^�G�6��|~[�����8�O����+�B�E�~�=n�rR����_�����J�cj�7�E~�
�R��;����5]��e���}��[���A�e�5�I6 �g��Y��`�`0�^BV=�0�y�5_����^>��d;;�(UP73�%��U6�7���8� r �€&��7ZڕmoE� �u���q���զ.DHS� �k��zn2�_&X� o��^����n8��<��2�>���G{@��b���2с`v�� F�;��0�R �{�g�ۏ���ܖ%Qv����������2?w�l����̕T����Y�a��$�+U��QÛ���s�"-I�؅�Y��}t�����x�qq�l�*�*'���������\ ^āS64���56��3u�-Ŏ�$�A6�&�}��n� ]�A���XX����mQ�Fe^��������U����>O�hH{�6�|k_3n��ԋ���tc*J�!���[�#�c���o{U���X���6�2��J���h�p7^��zm)fg�!�Gd�ؚ���`r���a�1�IoV!�=��>��V3�u� �W�k����I5����s�:�aH �M�ֱ��22�m3{�k�a�aH!�+�j4υx�SI{8�R��i�w0�1���Ӎ����R�]��X����Y����$�� �U0P���k���'�K_�8[��"R����6 ��Qn��`S� ��Y >�Fq��m8����Y$yyqPD��uu�܍��]T�0�H�^�Z�I��?-<�:24��� ��ĩ��c�����}e�I�F�L�㰶�olT���������b��=��TȜ�+�j�9 &��9��C�=�VH� �v/ܝ�{O����ǿ�f ϾH�d�U�E����5��;����pv��2Ef�D
���XY�i�q�U�П��]=�>���N��;�un�������[c��Y���x��=�XP,V�F�]�ȀD�Xl0���+�1�:��Y�o�.$�B��X��,RF��2.��y4����:]���q����#�rd�2+K�@WYP �b�7ܺ��}���݆�Lj�! ����-(y�YF..;��+-�-�V�J��ӗ=q��x��� �goI��z+q��|4�����9�t_Yb�,�I�T�¤�t���0��r���籥� X��ٝ����8i�j��*ڬyQW�(��(��}0����>���zk�1���X��eK��n?h���;�*<��ʖ/¬�Q��$���ۙ%b�B���!ԏ3���Wg��M ~^��-{lr�3�#E��[����"�F�j�۾�/�ȣ��K8ʔ���^��]|���U?�����z�����
q{7u���.���:�ɱ��Ta�`�,h�Йf�YKS�&�UM�+�G�}�_���릌��Vl�ػ�ak�Q��8pDu����9�FjZ��b�(�܂q��Z�J�i�P 4�}T����I�;�IM�v��-+����o�eE���v�~�%��~� ^���3�(#��v%�B��v3��7�V���� �?mi *�8-��-�)�W�f�
\ZL�0����!.��=��O\z��xW" 1ܐ�#!#�
�/��:_Ƽ2���ŗRDR��H��RE����_�#�`��Wn���2�P����T��{Ԥԅ�q�)�W�"ݞ�� &�6�+Y� ��A;?8�{�LdU����w�Ǐ���ō�\|��r�F�gm�)���{#�<G�������1�!��qGw�CX�$B(9 t�ɩV�P�cpy1��劍S;p�}h�=�� ��l��!oS{Y�q� ���0W׾� вp�Ÿi�ǮpШ/9�;?���n���d���8ў|9d g[iIoNv+�I�� %�ؐoLXغ�\xgׄ�-� R�.S�}3D��nدQOj���U���(�sD'a�<���:��Z�$�I+(J ^Q�s��U�{��ug��{;i�^,f�a�ԑ�&��E���8��o7�SV�>]����8\���ʊDU
}a�1��W�{��5b|��kS��� jJ+��_���2�]�+(C�у!�%�m|�t�5d��B�kȡI�ιC��c�FT'�p1b[�A����*��L�,�A�IRX��l,��hGHIY\7�-���HPY��=��+� %��rR?�[��ۍ�j� F���x�Ej>"ӈ�f�$d�������>al!���]������=�>��9#�8x��!��˃�!1�ފ�.Cz� �u]�N�ޞ�����qi��c���y/��V�V���_��ϫ"�%�b�<�;&��y@y�gju_�'n5ۓ��q���uĖx8� �\,YE�
��v0� �P�_�>Ղ�r��g9R��J:���S�=!��L�56��{�GfYc�,Um+���Q�� �%�k��S���i1�~'p6qJy��J�{��
��ߨj
���t`�F��nǟ;ߵfw�6"%$/SЇ=��YO�s%�$pP����'�]��w�ܮ 3�$��;����;\��"�,�ѕf&�X]��q�N_��$\Nv�^1k>�p/�A�xR�� R��&ס1�^��^(ڿ_�U�:�cj��l�>�ز��SuI�9G�\�}�41���1$�H�>QVZ[��-t
WVc�SS�����/LBúKx�̋ �R���>��(ֱ�2��
!~�R�-J��������h i�{�u��Ͼ� sUh)��u����9ŧ�?�q�n?Lc�V� F����:�m��+�͸8���T��UA����C�� TH;�x� z������,1�+��6��M\�U���5��G.������*�� M�rku�HW.��W�Z� #{� �P4W�q�3�5Լ��Ɗ�~)��3@�I9I԰�sF�S��(Ǡ> �����<�.o�s�Ң�y(�<`]]��I�x��;�hCAݺ(=�!����A���1`T���Iԑ��o�..��p�t��z�P5DEL��b�ul>:�M�x�дj�m��E���ǭ�ְn+3�<��2XT�@� �8s�?����� ��\��Eq��N���vm�ʛ��Nܺ.��q����-�7&Ȕ�_�2栣 �q��aXSC�D�#���Ki'ر)� m^�YA��[u?-kˍ�~<>2fΑh�'�9��N�p����4��v�A�N��W��i%l=��5y�NJ�!6��P�Ư�H ����8�Խ�(8�mJ^^s7�7�VX,T|����/qq׶=��6 /('rF�!�2zj�U��^�@i�uf���4��ĵ]��o�Y�g;�Iٳ�ܔ��/* œ����R���Ǝ4�1bѨ����z��ferrgf��.W,�z��(E��'�j8�V����k�;{�'���k���i�Y��Y��N(\<���d�M%��O�֥z'ϧ5߻�����6Q+
�Y�2K۠22�z �y�m}��d�*�ݦ���)<m�F��R���|i�s_�R�}�<6i��F~T��R�M9�@���i��7-�, ��$/v_���bj�>� �S׭R�*JW��iJ���c
�}3�\g���8�Z���?�����8�C���'7�VveJ$Gȶ���Ġ2I3D=y�<� 8-D��w��ñ��t�V1ka�J���ч�{��)��fb���SԈ�Ѕ�ʄ������3(�e݃���gx�����\�X=��4r�* 黝ʬA�E�� P�dɵ����׀�.�C��mwjT�fY���//R 8@��p��s2K-!~��p��u���~W��Dς��G�v�#;�"�~LNF��H�4a��&�=�����ax�č1� +'������� f��]A��M���.j�/}��;7Hl��֧I�v�l���ך�Y�2I͵�~ccO=l�K�
��O�x��=rѹy�Е}&���ܜ�\��ΎL�V�'�I�+z���&ݸ�
�Ycg,P�2��F.6N�"c�&�9R�C"� � �D�*�h��uV�&�䛵һ�ǶK 9�'��2�5;<;y�����1&����' ��x���Z}��nk���R?��R�ϰ�?j���w
%;]i�/F�W䧭���v�E��J�z�d�����ԌtT{RC <:�},*AM)Q7�Z���p�&���g�#��a�_�P��l1�ȉN��#l��
͍��;���ͮ��S��YR�Y� �N�����E�w�?+VOR�'~����-T��k�u�ݥ�c��
�qx���F�z"g1V>�\:,��4����un}f
��9���*±�'8RU�)*Nq�+Ǯ3����3�)_�)Us�ٴt����Q���6�dF {�\�p߰��0�%�3������s��r���τ���|��4��I���a�vꖯ�h�k[]��`�f�4�&��b&m�A��ǫ�5�8!������RO:�o~%ų�M�C|�ubYOC��|~`��c��,@K�k|-�q�����c�'kA�P���N�sl׭�P+��ZU��@(�{�l�b�j<Iv���ˮ��)�����l<&
̱��n{�t��u�VK%�.,���K���Ѵ��Yݪ�Fi�L�V�Ͷç�S ̻�����E�Bm��a(c��"G }����VV�^�h�6A�4;|tۥ��o�[et���߷ƴXs�{e�]� ��j�c�/Zv�:���z�7hK�M�b�!K�2UqF�ɾ��K�)C:ۮy+ �i�*����K_�|+Ѓa�f����ӧtЛ�@Ꙗ���i}mф�h͆b,O�
��i,FP�B��%;�JR�/�8�1�N`�V���@���ۈb�T��E���� }���曯�j�ژh'�*)�\}M��ʔ�� ʔ���KT�k.��zB���t: �����O���� �ԋ*�t�`�A̜��RPy�T�k۔�G3�+T�2��N��V��I�u���5V���:�W���ݚ���=X��vu�X;F��n^��Ձ�#��0���9y�-
WϢ~c�S�zt��͝j��u����P`u&�V�ۛb�{�X��+��:���vf�X��*�\i��/�&_��k
TU�N�Y<���y�կ�J�
ojG�kж*�i5�V����DY�3un%�֬e��B3�g�U)�:.��=�ِq�����*��'��e�X��a@���Ϫfp��8�T�[���m�W�[-��&4%^�1g����H�(�%%�I_�VW^�S�@�,l�\��O�Q�
��&����|υy�y"�T�}�3�����1�R�|K̻��� � wF�N�Y�8�瓔�,�� ��]��2wG,Dq��S ;!a������ѯA��Ij�n��(�S�P��d"Gv$Ʋ7�(:�����\@�rm�<m:r.V��Ƒs�/?`D�QP��mR�8@دV�Ђ|�}�3���R��n�x�#�L�v�$�FB����T�$���_�I���#;�7�����K�&�)��r �`5Vܠ���<�I�2_�f��bԶ�i�H�a�q���i{#͵��ۉ��! q9}ء�����Z�w��ەͬ�/4w�1!!�Xȗ���O:�.m�Sr. :��~����\�6q��VE7X�#r2|�ca+ fk���� �c����-Ƴ;R�P��Q&�E���}sd���D7�'��k��5-�e"�H�u�Rק�����K�O��2Nc�0�4q�Y���o�j4�=��LNn7E�d�Ye*nIn���k�u���ٕ�k����Đ�v�}��V�L����VD�Ns���1Ȫ�`�.��T��f���߶�A?ޝ�����S��r��WGu~Ѩ�`�US��z7kk�X�X�m%�|���)a�I%�AKZ�k. �?5��~_�釖�nV,n��2�q�����$X��&N!��s% fV��$Y$ ��7{�5�&3ǜ���NJf���9')�I6,��$cF�H�uufF��m����bP��N�Y6n�e��[6�Y������ � ]wLC�[=���Ư��@��n��'��0����}�Ȳ�O�_��^�����v�FL�ǎV7�,��.+˜,���O�s��
�{�_��x�c���ŏ���Ǎr��:��ʙ,O�>�X"l�NF�6�Ŋ�N��گ��7�wCD����0�� Aa�읖J��P���6yR�'\�/t���$0�IA<�H�! 1���[�|9^G۾��}�Hg2r�!� p��9G�H�ɲL�O�+ͽ��Bn[9�.�y}�㱻��1�ٞ%zY'"I�Q���τ
�,b#�X�>ۨ��v��K@��V�����}�MbHp�b���[�K�E�����9�����8�� l��1b̈:�4i"�XP�2�` �HM��W�<�w�ɗR�X�db��J1RT�
�.�hE����z�R/�k����;�jrX�5�]ȞԔ(���CGT2�6L�pc-L�c��D!�\O�� *��1�s��ꣽ�n��m��#��Z4�ڲ���Y|��#[�"� ��f�HO�t���Im�!��Ӯ�jP���u�P�L�R2�)53cz �A�zu���J6YO��<#N1������N����>';���`J���ئ�),ɒ����dT2zI!$�h4�ҹt��ժ��S����+k���7c&�f�K�f�'�Z���,q ��˥�GdG�#����2��wi���8�v+b���GF7�)��̤�d�*bd�F2��V����i�|Gw�-_�n�Am֮v��G�avd8������:�����𣭧����ԙ� �ʟ��ǵ�����4w�#��E/2�/+��>�5٤H�$�۫3�O����:�YH=���06�ܺϰzΥ�t��>���ߓ��c�CM��tB�(3��HӇtb�%����ӨJӜc|b�cgbǛ�"K�*GBYOB�� �"�A .5���Q���C�گXv�F΅X���^�%�gnZk��I�l���Tk�q�;!�l1�����J� ���Em�>�_v�'=�p��)�̕��($lOH�QZVA"$� J� Ƽd���uR\�`[�j!OV�v�C��)ʠ3���k �5Ir΍
��z���S :c�@� �c�+<�nc�����^����C���ŏjB�l�REU"h����K �����)�`���
��ګ�'o�J��P�].4
�ݙ�\�t�}vRVR�)�j6*��b�0S�n��Dxl��Yȳ���}��+��ad��[�H2��h �4?֌d.�MH�;�u�\-J������u^�?D�����5��J��z��RG�Q�E����`
�a\{�|�� �����w3���g����r��&4�ӛ��6�� �L_*C�z`���v�p�𨠳��յҥ/~=|��h qq��uӺR�ݷb���9yx�E�y��3'1�7Lb&~gj�L,|_r�<�$|���q�����Ou���iZ^���3\�d�*��+��91Y������;%�7��˯jX��& ⺋֩���*񝬏��)M��9�9�c*n&3��R�eJ�p����*�0orb�^����BK ��в ���'�+s���q1���F�6\Q�z����E2)&���q��=�Y��X�J�d%�ֵ:��P]R��S�R�ڔ���)M�R��뉚q��D� T�Y��# U��A����qW"e���ܜk�eP�{�r���=�;II%Ik��Źw��[׶Ͷ0�tƙ��P*�3-��� A2�#Z�7��Ɓ�qnem���Ia���qٞ��/���!�v>�'�{�^O��oL���u�GQq��yV$ �,G,s�g�N��{/�2;�+.�����q[}V�//;6����X�1q��3�w�)��EH��dlM���m�^���1xp�i7��`�������M�8�BR�� O6FD��R�����<� I=I�:�׸8X=�ƿ�Y�X��1��#Xnc��B����E�;����W�uGXtW~.���ݖ�uK�JN��O�i:}�f}Ȑ5�+M| K�jŲ�e)�G+"��Fˌ9�����$��d�=�z�6�������I��}��ܿ=�'<��ˋ�?���>�����;I���v���Z�O3�� 7^�uV�$d�v^�阤�N �vl�� �p����ȥ�o1*��p��{���E%JYٽ=�j����]�m�xN��U�;R�f����<��t�͜vKh)m���H�{nnH�k��F�,cvV�\[km�*�(]|��v���wQLAu�O_�u�m��ZuP��Ҕx]�}:��T���^��&�]�V�ڜ�[�:���j�ޛ�j��Ҳ�n e�~��J�À,I�l@>P.@��}������z{ƅN� � /bɯS����U��e5Ϊ�f��u�4�z��� �0c� /V���%l9�:����GP�T�z�12�dSuCVm��4��jm�;)=׌t��u���:��;LcnV�^�� "Qc���j����� SćU� �~a2�K^t�|R�)G��Q�(�qJ\�x��c�^������ۺ��� �'�6��� ���ŕ�+�g3�ە~Z;&�T�Y�� ��lI��Z��9Llٳ�)�O�*��23���MFFW*u$��V�ܜ�����x��"A�a� �f.a�:��+cp��]E�h{�� �~?Ѫlݜ���pvK�ff�9�d'�r�e���4N����h�P*Z>t�T$S��㭶�?O��Nw�j��X���c�|ܕ�q�F9� �?�n��B.��3�� �p;�%�����b��(��B!��B
ƿ�+�,b���J*�V�Q�Ik�����L��v��ұ�b�1h�}֣�u�\qN: ��.�R�Q���#S0����逛�k�8��t�tm b׽e<��9<~�U���a>C�+�Xܣ��
֬�ə�>��{u���IDD+r�����S�6@�t���>L���o��K^��xp�ؑe,�f�a���
����ۥ�*N����o+.\W���Z�N�X���u�[F C�Z�1z%�c|�{Q�V:eQ�g99��*a��N��KWCP���"��U�bqPI~Y%49QD��J\s���v�ods��_���Ñfv�Jz�1!a��1���!]��cu���Ǎ�ݻ��p�[�͍��e`��j4��UC~L����������մm!�u���Pl�u毧W�t��y��kUx�����$�ҋu��G��[�9�Zԥ�9�Ci�X��}�̈́�K1%��'�'RO̝Ml*\�V�u7�^�m�#I �����zT�7�4s[_[K1g�F���Ì�$W� y^�dI7V�+ �sC�q���l�fG�g�����`�W#����1�lo�c��ї��$}�יE���< �D� �(�2��X��_�����[�KtD��)棥�Z]�����V˞���9��<� <�fV,�\x{�RJ�h�@�ތ�W[\����77�&dx��KG!`ԝc`Hܡ�uk4m{nOD�&ܶj�q�4Z�S���@��%Yy��1��Å8��+�~�-nc�y˜��N<8n?3+/�����ݮH�m��J�ʓ�d+���b�ti#+w����ݵ��$��U�x��<�}�i�u]�G�ڴ����7�IQP��֧Y�Gץ%���p��� ���\��aH^��ep9ٜ���@K���"�8H�h���QaqX_|w8>*ʓ!U݊��L�� ��r�M�ޞ����h�qJ�}��wL�[`�-�k��D������5R�N�#7�6=e�8#���K��pdxRp�C$�_�,���;�������r;�k�D����$^��4e:6��� ����񟅴���߅��m�?:k�*��wUѫ�[7Z^����=i���V�H\�כ^~aq��)��5{�kn:a��̌4�s�JVV0�V�{77�� �Ya��C$�$��e�r��w�ht`�O��񋺣�x�9 ��D��cqGc����S�ρ k���<V��+OO�v)}�;{���T+n�R)�P+�K/`�6��+��)(qN9�/8�hW,8�d��~W"�‘�,l��G>�"_�+յ:��;�s � !�v`E�J.�9�A��+j��=b�݊�T�d/Th�֩Kn$
�vF�Gq��My�d���+[W+��4b�"/�,/o/m=��8���̉QoRH��o�b)�V7���׽�%yx,��d�?�A����t��1�L~���c�c��j�������E��^��̽G��&ؿiM�H>K[���M�T����M�I5�Z���[D6��P�|n'/�'����?F���N��t5p�L�����m�1��B����hz���M{���`I؝!#W��?%cwR�#�l;
� �j3U-��qK�M�8� �qrm���e�U�j�������w���� H�g���2�au ����?"�N/{`�2��ޚ.N~����S*�U`�l��RB��/��נ�����٧hZ�-���u^Ql�$��IBb�"V�b���X���,9^K0Ky�F�n��9�f����2�Ѓ�#�Z&H��F�`Vdb�PF���:^N�X���U ���@�x�f.�U�ip3#�ܤ�o�Q���A<KJy
bI�M,�/�{-p���fufB����ʡA�M����]�w �"UFUq#o�@��b�t��:y��z�����ݗc��:}ïq���7f�x;͓[��ӏ�ҴS�"�+d����f�* 0q㝂̊�m�5���F^f4�¬\^4cl@��bw���ʖ>s��V����{���������ɐ�ƫt7��>g��X��z�]WBѺ��mx:���5*���+�������ʞ%� 2T��o�T�R֥go��`@@>B��$��IbnI�Iԓ�'�l.*Qݛ�~��i�����)�[�MAlH �q�dnꅭGQ��.'e�6+�=nL!���/����d�2�����|Uv�wW�P���H�]fƭ��{֓^����&%�=r�nj�T�+Cc�,�A�ե } RS�*A��B�;<el����_�N�`0d���HVb�4P%l�/��:�j�0]A ���d������˭8�+\�[�o_���8�W��Q����w]V�
���h��c��k���S2��.��a�9źӌ�Ҕ��qJ������;�7%)5�w�@��o� !"�뎒���"ӈ���|�r���>���莊���q���N��?�� "RJ0�t'�V �� �����Gip}���n�aD�(��О�X�k�pA������V�����dl)�Ik�.�%����+���?1=�δ���]�yy�^t3�S&�c����V���V�����8\̨痘čqe�v�^V�ҹ-�J$�N�KJ�̾��M�q�F/)�;���Y��2c�����-�BTy�YC�6����Z���QP{SZJ�'k����;�~e���`�ܥ��|��t���}��XǡYe9�ܮs��!�,�6_U�V6�N �1*!P�ݬ#p��Xݹ�,�Ǒ������ V�̌�񋠹�ʪ ��  ��X�Q<
���=�ܖJ<�6Sf�5�h��f�(��t͙���
;��� ��IO�˯e��~^{�ڽ��>���3��9y�D�mm�V5������I!�q�5���\O��d�L�1!W�HH�DKηwe���R,B�f�+�u/]u�F�ҔHyD�[�:тd �U!51 K�JO�%F\��aKǹ�W�z�1p�H��TP��?i�&�ܒkrcb�ac�&i,bʊ�����nM�&��=�ި;�߄
?��CW��Y"5_k���X�;.X'߯X ���$�~�Ts/K��!$��á�a�ˎ��;K)J������_����3X�ג{i���,�%�n���$�r�ۖ�r���Tv]��K����-;���ۍ��?�{�6���l��P�z.��jC��������X��ϻ����┠_�s���j1��������M�#K�V�e�q�td�k�1S���6&n3(|f��7A!--�T��d<G���-�m3��'���N���UW��:�����:�� &˷g�H���QS��>��I1rV� ��T �S��J��W�wv�ٚr�ʟ�mJ�^��m-��C\ ���to�+m%�1�[J�3�u)��q�Cҗa�87�F��Ɩ+On�N����Wi����L���Q#��q�a5����Jk{��30��� �ĬRـ��9~!�2�yz����}��"��ۯp񻃂�'%�:�$�1ʣ̭�:1ё�����oҚr<5��uF�-M�"��j��)γ���E��a %�{p���a?��9kL��"���\�w����1l��Ǖ�յo���k���6��Z۰�hJma�#�
���� �}���O_amF0� �p�c9�W�{s0L���)b>$דep\ >�J�h�������5Ѻ���������&�a{���Ll�k��ZoR¼�$KT���q�^1��}�e��fA�#7� ��h�_�?���O����Y���~��W �3��o�Ʀ�G�.�r�UM�e���]\�G��RNyr�%ǰ���kR&���]q�I�R(�!I�V#� ��a�iM1?9��"D�p�>�
Ӣ᧟!J�����C�_����W���qa9��Ḵ� �\�A�*\k��֩����ʦ�����%�;}�Շ������SB�X��� y�F�������<��# e֖DqN�� ³�=��K����a�J��e�ĹX�ޜ��E} � �� ^�P7r�!��_��9#�C�KʯO�}*� ]#NjK�f桤���ԍ�'"�S"ku)k���`|/�!��n�&0��,��s=�lf ��G$bd|ffE� ������*%�� ��L[|�FM�� z����L/�ު(�qJ8�R�)G��W����Cm��8�+ChF2��kVp��)Ǯs���t}ԍ�G��l��k�{F�L��ɫ����f������U�V��R�YϱԵ�0�*/�ޯ�7�����1���2ET� N�,��x{Kk��cwB��Y���v=�'f�J��2hˢ��0��o�n������㿽�#Ǐ�%���(YH1;�*��]�#�+9�r�l*L��溕
˺C��m7@г[Je� ���}D�s݉��ԎF�n�_�ܯ���۲ǥJ�抮�V2d:�=�e�T(�ȕ����B2�R�$���>��ӿ�sk����>3V5B��52:U�Y��]
I�M̑�,8l�r9[�<��mXq�r�U�*�ϯ�#R�l╠�K���-׭��O=0�l*�ѐs�gf�p �f������^z�q�E Ǣ��q�g��&Gh�H��H#�Ԭ�ԣ~-�i6���5�K&��Z�l��t�#m������Fl�GTH-�ʞ� "�hT�JB,�����4� �R���I�t�3!z��n,A��CX�A.4�X�G���챸#���jz����"V2�����EI�Ó�ݚ�V��i.K��"ڻ̮��CRA��� �k�J}�4��y�&�#+��afoO�m~&���R�� ��:��
�F�M�H���j8�%=�z�A4�L���8��������7��j�Z��ǻ.kJq�H�w>���� m�=~l����ރ��:}���*�z��ol��#�v�בS�;���VS]����d����c�+�e�W+�&�c��L�,%�A9��Y���q�dak ���o�Ҫ0�Y��C(7�駇�����(�B��p#�D�Di
A���f�[dq�m(B�%)�1�Ә�_�J�gFCvSC��%6s��ޫ���?9U+�Qb�Ѯ`�������—aRp�DJs�L�R��
7X�ק���������u�����i����{��ណ^X����[Jn���$D�ƙ!^:8�2�q-�M<жFL�:)fw`��5,��*��Hu5�,����d:G
��1
�RX�$�RF^ۺRL*�a���|`��+�T�l%�!�rvj��ld����d��k�1�F�s
B,ݽ�]�ݸ�g��#����3D�b�貨��l�0�� .5C��<G7 d��X�x�� D�"���"� ��hk7=)<Mj�9��D��,��t|`A�߅fː�N�8o�:���JS����渎���9��p�|X��4��8�iv?irIM{���qxrr�� K��͕GK���t�>#j�u�:�b�J��������x]��C�v�38�P:�k3�u� �b�tm�\tfT�i#!��0F�r��,k,D4L��:E��ƵR�� � р �A�v^���w�z po����6i�ù��-�˃�N��o9nF#Yӡ�k�D�:H�S�e8�����* �8�\�=;�]���l�]6���IŠJ��IG�X �
���eV_S�o?���Qrpɑ�d��/,�򪎞fF_ H��4Xܶ&D�ATL�>U�Ki�^f�hA�u�� d"������d3~hI��#�)N�9 ���^��XF���kNy#��<v@3B%��K#�d��r
��u��k��,A�c��v�����t{n&�6��{\ ���϶��6B&�>��6��x$d�d���g������J���qyB�) �����l�#I&~A�N$`�vݤk�����q`��"�;���L(�x�N5`�Գ�u�� �;o�v�$٬H6���t�&�#��M!�h{���`�KM��*��˸zGG�����o)�P��m�~�����������*�(d�k�̡o��C�R.u�'���l>�n=�t��^����f��^�ktA^���1�1��s��9����<�z�8�q$p� ����H͓���쭤?�/8K���{s�a^���J������"��6�)�[C�5��t�vߩlֽӝxޕ
��vm;�R�z
^�a��H�N��]g�Q�"˜�%N��bA���[b�����2�ø�s���/�����9�lӑ�7,C���1r3HL>�F0�5�ibX���fN��8>s��W�}���8���Y2M���%���02�H1�Mldh�F������^��Di�#;}ե1}�:YR6^�Ի��\��#�v�rNr�q9k&^K2�i��@�:C���1yx���K�;o���<:���%�����q��G�G4re����Da���&�������|f �r�s�l,<||̬\��ZK͗���G;�ZU7U�{����m{�Q���{���;'d��A=aw[v�#S13>䘷) �<줟 �X�o�H��hy�8����>��=ʽ����q��d`a�E� ��������P� ��񁄶�pd�2.%�q=��q�9� �ӏ+&ye��i�+��,rn��,�ش���B��Ӈ�F��hn�u3Q]{V�>�ױvq�V�e��zYX��Q��٘�MXő�����S��q���~;������X �6��la����B-�԰��q-�%�����gȒE��ܫ�e.��� ��湰�MWU��)^��֯����X���^յ^[
Gy���|݃,�F�IQ'�zB1Ko��K���U��ߩ���{W� �l���L4�Ր)�heMA��I�j�7~ډ0ȅ`QQ'e�Dx����c��\DZ�zEQ�8�}mG�A��B>����6ґ�{��^��,;��^3���ņ8��j�"8�T�TU,z*�@���q�l��H�W��;0���z*BzVB�\~Y^�+�e>�qJ!jqM�ߨ�8����I
wי�7�������g8��q�V������g��C�@�D@ł���!����O��_��M�֫?U�sX����ɚ�J� `�������K��E5�t6.i�� ‚�e~��Ӳ=��ix���1�nvW�& qK.d�2���(սY�16Ժ�������#%������L%�A�~��2� ���Ӎ��l["�T�R*b�1 U���V�0���;2��#G<�& `�5���-�����~+�-�B���V^N[c+�*w�qw���%p$�v K��L�"Y�ܟ�zU��5�ZS�?L���η������Z�{B��җY�{�Xe6U4��� =f�b[ ����V��?������;��x����/�"��Ŕ���ԖƢ�;�b�y�xt����v�����z>�;a:ծl�&˙�L�-�)����;�ۆ0�hB�Ƽc8� q��t�^�=��<��$��6 5��lyV�]5:�#̺T.F��c��M&�){��V�Њ�k��b*2.AjBV�r �����{�e���Vq�Uew�=����gq���?:<(��Yt�7��4Vq�j^�
��;�v-S�� �4�|˳���y�4a��́f���l��qM^ɖ���k�#��tO������^q��O</t�voq���w+Θ��!����YWl1�#K)� UA�z������SF�������G�����$N�~X�^��7��ֳؒk��#vFήE8L6���Td���Qqǡ�}�d�� % ����N�^���rgǟ�'�8����>+����f�K,�Y�?�� ܚ�U7�������L���^� ��Ӫ�}z����o?08�0,=Q��2K*���2"Y���V3�[��m�B��(Sj(L<ǽ8w9�F<9x�bd �*a�X����g���rr�-�7U���oc�:�|��/�׮�GR��=��JR6���&��#�bT�ی��q,l��ZG�*"�����4[o��5�ge���BIBo�����d:�ӥ��d{��w?�F�"�$�,MmVT�$�U�ȶ#[�\���7�4��X�h5��g��J���m9���\�W��f�Q�&��Z�߻8t[�J��A�.���Z�����_a�t�&V����qgﭤ��VQ w ���\KbH� LR����}ϸ�w������9y&PN
0��[}����m�[ ��´_���+��e^^U>� �Ǹ[�&?��sX(۹��ڋI�kJE?\�bF��Pj�ʔi�D��U℄��9�s������ڏכڸ�_I������*.�G����&��Ԭ��w����^��d|�N�C�{2�1&�� ��C8��N�
NW��)o��S���\����+YB��96Νк c�Bc���T����T+ ���F׳�aA�"��Q"� Hˈ����ԥ[��X�J��������R�~[k�3�{h7�v$M��Un}ѝo8�>��c8�R�c�7 Xj�3(�
|.m�*�;�_�W��X;�Ri^�uɗ&�ݾ�5֑_�i�U�VN͈�?$�=d��P3�S��u��m�! �KVQ���{X�6?g�H���휤-��a�I���$�]�j��H��A�;�w��ф��98���*�x�R�)G��Q�(�qJ����wl�͸�� d$K�*�1_���U����٢�q���B��>E��;��n)c>��C��ȎI��NJG�I"t%�!e*o��$2�K�UsNj�\�$��2Hc{��#1��p
5��ǭ+w���ý����v G��aoS6ᵟ�ж8�!(YX hl�0Hʡ3@8�q���#��E0�ЌsTvﴸo��I��dOM����`F���= �o�'�Y�����K�N�72+�DA譔���F�\ v���d� mJNt{z��z�r�Y�%��M['v�E�6Bp�1V������~9�0�B<��^���s�e�w� ����LeZDf6�2/�E�����;�o�ouy����/_2]�H��2��(-X3Y�&�m�-��ŷE�z������E��;e�װo�:)��9FXY���??��[D�+a�KM0���s~�^���c�I��B���ۉ��A�$�P Ұ��[�y̞rH��\� ʝ7�@.�k(���$�'.�f��Q�)=|�~�wC�;s�z벺:~�z�j�"�z��� A��ET�.� ;;^\I&
C�Ljp�|�{�K�ƹ��^bf��dr��6��$�_0�Ck�� �e�s��@�3��2 o)c�� 7�#X�m�#��.�F{Yv�PN]�.�2�D���3O8���TK֜�O0�4"�*+d�"�m��y�ɠ����E � �r���a! �qn��v�=j��3E#�q�ŵ�a\��1&��7���B�J���2��� ��v�ܚ�j��}�~Mk_���@6�7.D����f'.���ёX`U����r������N7�F��z���V7:�W���h1^W�<�R�:*M�9����Afm.>]I����u[h�qJ�OŮn
j�9hG%�#3K�D��2PŒ9c�*]�qm8��JU���ʔ�����l�F����N��Tj�ZZ�^��� �A���J�Vӻ����W��]Z<�$��
6*!sL��-�11���^#���r��(�F�F[�n`/���:�v�y��"m��DlAa��6:_�^�8�8�g���-� �-sp�v7�(��u�6=�E�U��N���k2����-s�Ɛ5��bg,|I�;ھ',d�ȑ������.�mU�P\�*޲^W�3r �q&7gcq�!U�$��"�^��+�6��k�w"�d�6�F��G��`�K�]|X7#�q�n���[�[k\᤟�J��ڰjej�X�,4X|���xV �=j�8�R�~���4���� ]ևi�ŏy�G۩雓�0x"���V���al>�ΡIu-���HYVUi5�p��x��T� B�[O����ƒۭ>�kXۚ�2���9Ӛ����j�U��o&C)�
�7�M~�trS,����/�S��0�~�`p��đw~o ����fOJ��OK#�آ$�� `#��n,v�vr���|KI�G���"eM�D{�H�;����%�.�Gb�߆����ǯ�n��hNک{2�>��#���5�(���J�,uX��Ԉ�����-G ��<!j�8�����n��廯?�n�Ǒ7&9`����az�6#�&0��~d��/����wj���Ԍ���@c�������ͳ�o��F�w���UG��R�$����7d�~�����OZ�u�|k��E[]͒\�(�ץ��f����|�c�|���wQ���XZ`om:�ɷp��o�,>��1����Ɋ�����E������cA�(<�GM���a?D���e���>V�O�*��o��+��>� ;�T�5�S$����m��#�n�� �h~���be"�n@�S�<�ϬJ.RYH�VF�Gm���e.f-��jX�#���G���|x[�E|�һ 7���=n{��]��e7�}��v�x!�u���U�]���7�+-��C����r"�5,�2G�{[���r5�G��V��WWo�LƼ�t؛�Nn>F0��6ׇ,�Nǟ�l�<�)l��g��s�y� Y�<� �)����u��A��HeY�%eF ��A�:�h~ ��-U�Y��к���h]٥%�2�Κ���ܠw(ɖ�U�Q���즱:;D��֣������[�Fp�?۾��Ÿ��M�3� %�%ZKo2)��`m?�.��# �����L���w�HQ ���P��zv�c�@$5h�Q1pQ�CBDž3bG�� �`�+)��8�0�2�HN?L'�3J�+!�(�’����F̷�+�x�S�̏�����*%!d�o˖����z�r+�p�}���mP7��i[�#�=�ف@s��3���چ(�d��7]�ޟ�\�B���g���^�ԥ��!��'`Vݙ,ӓ��;��g���̧#�ٰcC�A1� `��O��T�R��fu X hwe���.a���}di��Fʲ�+��܁�)��ƽ���(�j���n���x��u���'ce�[���� ��=� �"a��q�4�b�R�29���mN����o��k�������w�F$1ʑ0�s<������OYn�e�_���Non+���:�� �C"��).��m�w &��Z'�D.���7 �÷�ӧH�6����QdM�<��-S[��S���������îe�G�q�gZ`{y��^勸y�N<��gܛy&���a�Ϧ�ZD��x���������6�x�1���>��*�l�Id�w��[{X�`oL����DiH���,5_Û�f ��ܮk��Hh۫�5���gGEg���D�)�=���⺳�
3�z��������\+�kuU��Z�T�L��c_�\b>`3�����ԟ�]x��)K��֌��Ҡ��O��j�x��i@틆��٬{�6�k�k�Olj��&j�=�� 7�$RjN5�|���PU&\&e@���<H�_��^2\��Y�#b� 3
��z���~��v�jtK�x[xj�3�������g ����jК�ɐ�]�L��..kb-�-Ʋ�FK�;�a8y�NG.X*�)���_�� ��Cc[ ���?��'��dt�� 3l��v�����ġe�KB���o(��l[��1���'�sn�,z'n�#�X3�e6�W�6*6:�r��ja�P�8K9Zs�+�p�D1*Z0� -���[������dG�.F����̤PF���.�W���Z�ͣ���{u���^�[2��@�sR߻�-(��6��|�[�lfP���u��+$�_�ʕc��dj�@��>C�Z�2S��.C;��Jͽ�,�$�bu,G[Ջ�z���Q�),|�u�����n����x.���U �PQ�٪��g_���#��BH��u�#$k|sNt�r���^<�A{#���wbsݭČ�d�H�'�����c1�#ZI+�.�J�]m��!�u��j��_S���v�ӛkPn�H �h���� ׄG�k��n��DML���/5Q (��Biy������4w?��s�'_k�LY��TJ��.����#�!ù[��J� �l,m}~��O���v���=��uu RRX%ӑX׵hz�2�}-���
A(�[iS���R��^ԧ��H#�Q"���QsseP���jI'S^�,4��5F�)G��Q�(�qJ8�|�a�YxbCÐӌ>˩��u�Q��i�+J���g�3��J�.�� z�mCqR6^�� m6T
���毩FOX�T!�i���J�8�D���~E�k�6P�M�S��L���� ����b{_q�����X�o^ �;$�Ѷ��(xjNm��k�/��VC�T\�LK"-/4�i����mЃ^�㈤XãT���~U���U��vV��G�r������}�[B�a��F�Z|���@���FؙPR����͞d !և��2�ڃzdc�9Q���M���>Uwܖ���qJP��vԝ�컻�Z��o* �Z��F���V6M6���z�^� +Y�U��췘�a�X�kL3�0 �}�;~��\|,e����đo�^�[�o�Z��eɜ�B�@����z����d�g�hvޚ�6E��x�Ze����OE��,UKuge\l�Ե,kV�S ����3��BL� Rs�'5 �%Eu�-} ��m��z�N6U��7��C��>u�*R���������֛���wi��%[�-;N�Pcc�v-Y��?�m��� E��{S��,c 8}�H��h�)G$��-�����[�J�d�wP:��t�}Z7�T�6Wq�������=1���ؕ�!�]u5r��`�UK]�d��4ym��kJ�Ő0���? ��&��[x��y��dR�n5�����<>5[������6:|i�yk��8�'��j���&�`��ֶ-���.�Ԕ��mr�kuE���v�=`]y$e�^�SV�I�+ �0������Z��=��n��n������,l�yN���r�P���3H�e��7��Ь{L���dG���\Vv:M�@f�(���m��+�t�#붶��d�L_S7n�[����i��_vt�Sc�F�T`�;(����������`KPj��)5���Z�������xx>
���eUR��t�ɴ(i$rY��M��(�/��ᰓ���X���,�Vv�f7$��,Hy�6�ֻ�cjX.���j):�Y�4L��Jla Ē`Xn��OgZ�lf��T䛱-!1�i�f�$qʆ)U^&*�2�z��A�j��J8 �X�|:L�Z*���5����1�
��%Y]m�o�k�|N��\ϲ�����b���%!�����"2�zKS�3����,(�U@�UQeP<�
�q�Q�Q���,���S��z��)_��!m���ۉRmi�д/J���J����8��qJ�n��]�]�{�ZwN�B�HlM�(�Df��k��+y�%�m]�hR� T� Rl���������3�[���)�/6L�#�+*�-��\�-�� i]��\ �A��yL��o�I�gfU.�m6
M��m��nְ��m���z���S���W$���SQm�� ܖ�i�.UzM��4� �%�\/��f��9٦�6T$�7ȱ�k�]��(q�a>���^g� �U�2��dM2���{n �r�Ȧ�f���^_�?kU��K�g���p[MlZ���9�/U�+�u��-�v0l6ʥ}�1`��Dil��.G�Y >��x�g��e��Yێ�0iSiGVP# �ѕ��� V���W��x��q_y(����P�H����YW�n�$���hV���Q�)M��~��ջSE�j�vάD������[HX���ʍuV tH ��![2����he�Q��,x�,q�C����,��{�����(���$�ro$~�K��dG�J�Ud���$l�n:K������۹\��ݮ�r
9}�p�%N%��oMs�cza��c+n��}�tu�3s�S�����u�G`.�4�]�]sr��I�Tv4��U������8VIb8H*N�������?'��9������L8f3��R񣌏/87M@"M�RI�u�p��?hq������s����-��c�<�N�m��e�� �m)g�z˩��:&״jS[^oXVo�܊�B�_�PjL� 6��[lRv��NҖ�>��t�P�@�y-��ײ���1�\�A�?����Ċ^>l�#|��%*�@`x�J1ՙ`+5��ȑV=[��#� �'$�wN[Ǖ�)q�H�_PO(�J꾨vp�hУ�u�r�R�)Tm�'��-������"������Y�Y��n%mV]S'p��cP��R)���F��t�%��"6KiJ�h�m��c����y<^N Yܤ�a#��e";�ţvڳ)`�Ս��E���C��Rk��7#6�}��Fܚ�3�ص�BA�����dg��5ku�Ј����$���t�- U�|j��</�������xX)$eL3bɌ��T�<{`T����K�dx�Y�d�x�[gR��ۼ��ӕ��%�g�JV�n�ت��(Z�fٚ�Գ�D
�+T���ט�$�����Gede�%���M����~��<T}��2G�.9�X)h�9WvS�Ȫ���7���V��\�m`~�v��x}��։ʭ�[���}Ζ�gV��zݵf!�R������=b���J�S�����}�����q�wW۝���6_����ʪd�$Y
��U2[����m7�`� �֬�����)U5��Y��ǎ]�U��O���Z���z�4�i��i���g�KVb��T��5Z,�0���R2�±�c��r����]�Ȝ�V�c�6�Yd]���;B�v� R_0+�T�֒ ok���e�*� �⍓������cl��t��E$�kxZ<���d�i�����v)�_RT+ B����J���'+͟��pM����)��G$OU,.�#��2�\�a\ WckF�"���%���{���v��RQ/��%���k b�G�=�ݭ�� գ �/��o�cÞ�){�� px\�/����o�5�,j~�fH�d�yK��w�B��0�^� >�h��æ�&��wF�n���Kcv�)��?��of����݆�pP�s�,YD�#d[i��rW-{��V�����y�o{��̈2�p�,�o���Z@lS�+_j���@�o�1�6UOG��m�~Ӫ�m?��Y�m�K�~ܩ�~b�?����5n'/ �I�?��?���BЏr}}ql �A�����**��%���� �\�:��5����K�>J7��nj� ]�sal����ME��wMw��~n3�1( �w��\^"� �N<��YL-�\G5�������+���x�o&�*f�+ %�D����Ƈ%�v<�1}(�q�&�K$,�:�Qq#ٞ��_�����,L{af��͓��r�1��ܱ��r�#���a�[̌%e�����Z����8�z� >�i��M�n?��4�f)��SH@�$�6�~���K·Gd`�.��FT��<�̦�ˏ$cѿ�4Hn�Tx�jؽ����f���ʬ�J�O�XXz91��Y�d����7� g�G��a�Qu^�ջLN��~�[�>���SVj�,��fl����q��7��L�ə"'Is�(��ۈm)iz��Y����?�{���pX��x1db‰$�'sVxʐL!t�%�N8�
�2�T�>�OٮS���o��<�;9��ȕ��0��'&��U����D2<��y���·�p��Q�)9���t�K�n��n��1�.Z�'Z�U^>ű�ז�(��S�5�ͫ�̔��FM��$��Sa#�8���>U*=���_��gR;��J���Qaۣ��F����6F�$��8��V6b":U�)Yn 盏�T���H�J^ʕ���������d]c�:�:�\Zcl��X�8�yJe�Y�g���_rj0�6񌥴��cne ���+�C�Q�(�qJ8�R�)G��Q�(�qJ8�R�)G��Q�(�qJ8�R�)G��Q�(�qJ8�R�)G��Q�(�qJ8�R�)G��Q�(�qJ8�R�)G��Q�(�qJ8�R�)G��Q�(�qJ8�R�)G��Q�(�qJ8�R�)G��Q�(�qJ8�R�?��������&=?#�����_������������ǯ��_G�O㾧��+������������^)\Y?�z3���{}U��'�==�����=}��_o�����c��������|σ������?��~����zqJ�qJ8�R�)G��Q�(�qJ8�R�)G��Q�+�#�ߦ������Y��#�}?w�������z��g���?�����H�]����km��Mzk���T�z{�m�;[���_!����?�~�{������ދ�����~Ow��/������|��k��u�������}|�o�j��~�s�?���&>_�}?������>���O������}?�ӓM����߿�k����z6�����++����Q�(╃����+���=��������/��_������������ �� ��~W�ߏ����O��[�������?__N)Y�)G��Q�+7��_O������W�z�����/����=}����(��7����_����������S�����������ӊVO�Q�(�qJ�+����|_g�{��{>��������{�/�������Gʹ��n/��m�����/m�6��K��_!SWɯ�����������z'��{��OO__��rfݦ�����ʥ]��]m������jj8�R�)G��Q�(�qJ8�R�)G��W��
module.exports = function(grunt) {
require('time-grunt')(grunt);
grunt.initConfig({
less: {
development: {
options: {},
files: {
"test/test.css": "test/test.less"
}
},
namespace: {
options: {},
files: {
"test/namespace.css": "test/namespace.less"
}
},
compare: {
options: {},
files: {
"test/compare-to-lesshat.css": "test/compare-to-lesshat.less"
}
}
},
notify: {
less: {
options: {
title: "Success",
message: "All .less files have been compiled"
}
}
},
csslint: {
strict: {
options: {
import: 2,
'adjoining-classes': false,
'box-sizing': false,
'box-model': false,
'fallback-colors': false
},
src: 'public/css/unprefixed-screen.css'
}
},
watch: {
styles: {
files: ["**/*.less"],
tasks: ["less:development", "notify:less"],
options: {
nospawn: true
}
},
lint: {
files: ["**/*.less"],
tasks: ["csslint:strict", "notify:csslint"],
options: {
nospawn: true
}
}
}
});
grunt.loadNpmTasks("grunt-contrib-less");
grunt.loadNpmTasks("grunt-contrib-csslint");
grunt.loadNpmTasks("grunt-contrib-watch");
grunt.loadNpmTasks("grunt-notify");
grunt.registerTask("default", ["less"]);
grunt.registerTask("dev", ["watch"]);
grunt.registerTask("compare", ["less:compare"]);
grunt.registerTask("test", ["less:development", "csslint:strict"]);
grunt.registerTask("namespace", ["less:namespace"]);
};

DEPRECATED

if you need the functions please use homeless instead.
if you need vendor prefixes use

  • autoprefixer
  • or keep using this library. (not recommended)

more-or-less

Build Status Dependencies Status

Faster and more powerful mixins for less.js

Compared to lesshat

                                   MORE-OR-LESS          LESSHAT(2)
Keyframes                               ✓                  ✓
Unlimited gradients                     ✓                  ✓
SVG gradients for IE9                   ✓                  ✓
Font-face                               ✓                  ✓
Input placeholders                      ✓                  ✓
Unlimited transitions                   ✓                  ✓
Prefixed transition values              ✓                  ✓
Units completion                        ✗                  ✓
for loops                               ✓                  ✗
get Index                               ✓                  ✗
in Array                                ✓                  ✗
scoping                                 ✓                  ✗
repeat                                  ✓                  ✗
join                                    ✓                  ✗
time to compile compare file           8s                30.6s

You can find a more detailed documentation here: Documentation

Basic Info

License:

Dependencies:

Versions

What does this do?

  • It adds some functions and mixins for lessjs
  • It is stronger and a lot faster than lesshat but does NOT USE ANY inline-javaScript
  • It is adds helpul functions
    • .if() (if - then - [else])
    • .scope() (leaner scoping)
    • .index() (find the index of a value in an array)
    • .for() (create a for loop with a callback)
    • .repeat() (repeats a string @n times and returns it with an optional @glue)
    • .join() (joins values from an array with a @glue)
    • .inArray() (checks if a value is in an array and return a boolean)
  • It allows to import reset or normalize
    • @import 'lib/reset'; to import the reset styles
    • @import 'lib/normalize' to import the normalize styles
  • It allows to use "more or less" of the library
    • @import '_more'; to get access to the entire library of mixins
    • 'less/css3/_transition'; to get access to the transition library
  • control prefixes or legacy support with global-variables
  • Add a namespace to avoid conflicts with other libraries

Bower

bower install more-or-less

Example for "less" imports

import all transitions

@import 'less/css3/_transition';

.transition(height 100ms linear 100ms);
.transition-property(height, left, top);
.transition-duration(100ms, 200ms, 300ms);
.transition-timing-function(linear, ease-out, ease);
.transition-delay(0ms, 100ms, 300ms);

import transition oneliner only

@import 'less/css3/transition/_transition';

.transtion(height 100ms linear 100ms);

What does this NOT do?

  • clean my apartment
  • eat your time

How mixins are built

Instead of writing redundant code this library offers a pretty complex but well thought through architecture.
This way mixins can easily be created or modified.

Example CSS3 Mixin

@import '../helpers/_prefix';

// box-shadow mixin
.box-shadow(@values...) {
    @vendorPrefixes: -webkit-, -moz-, '';
    @prop: box-shadow;
    .prefix();
}

// border-radius mixin
.border-radius(@values...) {
    @vendorPrefixes: -webkit-, -moz-, '';
    @prop: border-radius;
    .prefix();
}

Notice

Instead of auto-prefixing it is advised to use libraries like autoprefixer or similar.
Aaaaanyways... if you want to use auto-prefixing mixins you can use:
@import 'less/_css3'; or it's decendants

Usage

// background-image 
//················································

    .background-image(linear-gradient(top, #000, #fff));
    .background-image(url('test.png'),linear-gradient(top, #000, #fff));

// border-radius
//················································

.border-radius(1px 2px 3px 4px;);

// box-shadow
//················································

.box-shadow(1px 0 2px rgba(0,0,0,0.3), 0 1px 2px rgba(255,0,0,0.3););

// linear-gradient (generates svg and old webkit syntax)
//................................................

.linear-gradient(to bottom, #000, #f00);


// transition (oneline)
//················································

.transition(transform 200ms linear 400ms;);

// repeat
//················································

& {
    .repeat('.test', ' + ', 5);
    @{string} {
        float: right;
    }
}

// join
//················································

.cats:before {
    @cats: cheetah, tiger, lion;
    .join(@cats, ' & ');
    content: '@{string}';
}

// if
//················································

.if(isnumber(2), {
    .-then(){
        log {
            condition: is a number;
        }
    }
    .-else(){
        log {
            condition: is not a number;
        }
    }
});

// scope
//················································

.test {
    .scope(a); // no return but no error
    .scope(1); // no return but no error
    .scope({
        @height: 100px;
        height: @height;
    });
    .scope({
        @a: foo;
        @b: bar;
        foo: @a;
        bar: @b;
    });
}

Keyframes

The mixin call must be wrapped in a selector e.g. &{}.
Using an "&" (ampersand) works fine.

Keyframes INPUT

& {
    .keyframes(testanimation);.-frames(@-...){
        0% {
            left: 0;
            @{-}transform: translate(10px, 20px);
        }

        100% {
            left: 100%;
            @{-}transform: translate(100px, 200px);
        }
    }
}

Keyframes OUTPUT

@-webkit-keyframes testanimation {
  0% {
    left: 0;
    -webkit-transform: translate(10px, 20px);
  }
  100% {
    left: 100%;
    -webkit-transform: translate(100px, 200px);
  }
}
@-moz-keyframes testanimation {
  0% {
    left: 0;
    -moz-transform: translate(10px, 20px);
  }
  100% {
    left: 100%;
    -moz-transform: translate(100px, 200px);
  }
}
@keyframes testanimation {
  0% {
    left: 0;
    transform: translate(10px, 20px);
  }
  100% {
    left: 100%;
    transform: translate(100px, 200px);
  }
}

Namespaces

#more-or.less {
    @import '../_more';
}


.border-radius {
    #more-or.less > .border-radius(1px 2px 3px 4px);
}

.box-shadow {
    #more-or.less > .box-shadow(1px 0 2px rgba(0,0,0,0.3), 0 1px 2px rgba(255,0,0,0.3););
}

.box-sizing {
    #more-or.less > .box-sizing(border-box);
}

Examples

Animaless

A loop to check if an animal belongs to a group (e.g. Owl = bird + forest, Bear = dangerous + forest).

  • The example source can be found here
  • The example result can be found here
View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment