From 4c4e83dda1f04fd507dcf5ff69f57f59411fe8bf Mon Sep 17 00:00:00 2001 From: marzipanmars Date: Tue, 2 May 2017 23:00:09 -0400 Subject: [PATCH] add plugin --- jquery-nice-select-1.1.0/.gitignore | 3 + jquery-nice-select-1.1.0/README.md | 34 + jquery-nice-select-1.1.0/bower.json | 23 + jquery-nice-select-1.1.0/css/nice-select.css | 138 +++ jquery-nice-select-1.1.0/css/style.css | 372 ++++++++ jquery-nice-select-1.1.0/dropdown.sketch | Bin 0 -> 81920 bytes jquery-nice-select-1.1.0/gulpfile.js | 31 + jquery-nice-select-1.1.0/index.html | 205 +++++ jquery-nice-select-1.1.0/js/fastclick.js | 841 ++++++++++++++++++ jquery-nice-select-1.1.0/js/jquery.js | 5 + .../js/jquery.nice-select.js | 190 ++++ .../js/jquery.nice-select.min.js | 4 + jquery-nice-select-1.1.0/js/prism.js | 7 + jquery-nice-select-1.1.0/package.json | 31 + .../scss/_nice-select-prefixed.scss | 194 ++++ jquery-nice-select-1.1.0/scss/_prism.scss | 105 +++ .../scss/nice-select.scss | 171 ++++ jquery-nice-select-1.1.0/scss/style.scss | 179 ++++ js/main.js | 4 + survey_results.html | 59 +- 20 files changed, 2574 insertions(+), 22 deletions(-) create mode 100755 jquery-nice-select-1.1.0/.gitignore create mode 100755 jquery-nice-select-1.1.0/README.md create mode 100755 jquery-nice-select-1.1.0/bower.json create mode 100755 jquery-nice-select-1.1.0/css/nice-select.css create mode 100755 jquery-nice-select-1.1.0/css/style.css create mode 100755 jquery-nice-select-1.1.0/dropdown.sketch create mode 100755 jquery-nice-select-1.1.0/gulpfile.js create mode 100755 jquery-nice-select-1.1.0/index.html create mode 100755 jquery-nice-select-1.1.0/js/fastclick.js create mode 100755 jquery-nice-select-1.1.0/js/jquery.js create mode 100755 jquery-nice-select-1.1.0/js/jquery.nice-select.js create mode 100755 jquery-nice-select-1.1.0/js/jquery.nice-select.min.js create mode 100755 jquery-nice-select-1.1.0/js/prism.js create mode 100755 jquery-nice-select-1.1.0/package.json create mode 100755 jquery-nice-select-1.1.0/scss/_nice-select-prefixed.scss create mode 100755 jquery-nice-select-1.1.0/scss/_prism.scss create mode 100755 jquery-nice-select-1.1.0/scss/nice-select.scss create mode 100755 jquery-nice-select-1.1.0/scss/style.scss diff --git a/jquery-nice-select-1.1.0/.gitignore b/jquery-nice-select-1.1.0/.gitignore new file mode 100755 index 0000000..b99919b --- /dev/null +++ b/jquery-nice-select-1.1.0/.gitignore @@ -0,0 +1,3 @@ +.DS_Store +.sass-cache +node_modules \ No newline at end of file diff --git a/jquery-nice-select-1.1.0/README.md b/jquery-nice-select-1.1.0/README.md new file mode 100755 index 0000000..8605f87 --- /dev/null +++ b/jquery-nice-select-1.1.0/README.md @@ -0,0 +1,34 @@ +# jQuery Nice Select + +A lightweight jQuery plugin that replaces native select elements with customizable dropdowns. + +## Usage + +Include jQuery and the plugin. + +```html + + +``` + +Include the plugin styles, either the compiled CSS... + +```html + +``` + +...or, ideally, import the SASS source (if you use SASS) in your main stylesheet for easier customization. + +```scss +@import 'nice-select'; +``` + +Finally, initialize the plugin. + +```javascript +$(document).ready(function() { + $('select').niceSelect(); +}); +``` + +Full documentation and examples at [hernansartorio.com/jquery-nice-select](http://hernansartorio.com/jquery-nice-select). \ No newline at end of file diff --git a/jquery-nice-select-1.1.0/bower.json b/jquery-nice-select-1.1.0/bower.json new file mode 100755 index 0000000..366630c --- /dev/null +++ b/jquery-nice-select-1.1.0/bower.json @@ -0,0 +1,23 @@ +{ + "name": "jquery-nice-select", + "version": "1.1.0", + "authors": [ + "Hernán Sartorio " + ], + "description": "A lightweight jQuery plugin that replaces native select elements with customizable dropdowns.", + "main": [ + "./css/nice-select.css", + "./js/jquery.nice-select.min.js" + ], + "license": "MIT", + "ignore": [ + "**/.*", + "node_modules", + "bower_components", + "test", + "tests" + ], + "dependencies": { + "jquery": "~1.11.3" + } +} diff --git a/jquery-nice-select-1.1.0/css/nice-select.css b/jquery-nice-select-1.1.0/css/nice-select.css new file mode 100755 index 0000000..000f3e9 --- /dev/null +++ b/jquery-nice-select-1.1.0/css/nice-select.css @@ -0,0 +1,138 @@ +.nice-select { + -webkit-tap-highlight-color: transparent; + background-color: #fff; + border-radius: 5px; + border: solid 1px #e8e8e8; + box-sizing: border-box; + clear: both; + cursor: pointer; + display: block; + float: left; + font-family: inherit; + font-size: 14px; + font-weight: normal; + height: 40px; + line-height: 40px; + outline: none; + padding-left: 18px; + padding-right: 30px; + position: relative; + text-align: center !important; + -webkit-transition: all 0.2s ease-in-out; + transition: all 0.2s ease-in-out; + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; + white-space: nowrap; + width: 155px; } + .nice-select:hover { + border-color: #dbdbdb; } + .nice-select:active, .nice-select.open, .nice-select:focus { + border-color: #999; } + .nice-select:after { + border-bottom: 2px solid #999; + border-right: 2px solid #999; + content: ''; + display: block; + height: 5px; + margin-top: -4px; + pointer-events: none; + position: absolute; + right: 12px; + top: 50%; + -webkit-transform-origin: 66% 66%; + -ms-transform-origin: 66% 66%; + transform-origin: 66% 66%; + -webkit-transform: rotate(45deg); + -ms-transform: rotate(45deg); + transform: rotate(45deg); + -webkit-transition: all 0.15s ease-in-out; + transition: all 0.15s ease-in-out; + width: 5px; } + .nice-select.open:after { + -webkit-transform: rotate(-135deg); + -ms-transform: rotate(-135deg); + transform: rotate(-135deg); } + .nice-select.open .list { + opacity: 1; + pointer-events: auto; + -webkit-transform: scale(1) translateY(0); + -ms-transform: scale(1) translateY(0); + transform: scale(1) translateY(0); } + .nice-select.disabled { + border-color: #ededed; + color: #999; + pointer-events: none; } + .nice-select.disabled:after { + border-color: #cccccc; } + .nice-select.wide { + width: 100%; } + .nice-select.wide .list { + left: 0 !important; + right: 0 !important; } + .nice-select.right { + float: right; } + .nice-select.right .list { + left: auto; + right: 0; } + .nice-select.small { + font-size: 12px; + height: 36px; + line-height: 34px; } + .nice-select.small:after { + height: 4px; + width: 4px; } + .nice-select.small .option { + line-height: 34px; + min-height: 34px; } + .nice-select .list { + background-color: #fff; + border-radius: 5px; + box-shadow: 0 0 0 1px rgba(68, 68, 68, 0.11); + box-sizing: border-box; + margin-top: 4px; + opacity: 0; + overflow: hidden; + padding: 0; + pointer-events: none; + position: absolute; + top: 100%; + left: 0; + -webkit-transform-origin: 50% 0; + -ms-transform-origin: 50% 0; + transform-origin: 50% 0; + -webkit-transform: scale(0.75) translateY(-21px); + -ms-transform: scale(0.75) translateY(-21px); + transform: scale(0.75) translateY(-21px); + -webkit-transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out; + transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out; + z-index: 9; } + .nice-select .list:hover .option:not(:hover) { + background-color: transparent !important; } + .nice-select .option { + cursor: pointer; + font-weight: 400; + line-height: 40px; + list-style: none; + min-height: 40px; + outline: none; + padding-left: 18px; + padding-right: 29px; + text-align: left; + -webkit-transition: all 0.2s; + transition: all 0.2s; } + .nice-select .option:hover, .nice-select .option.focus, .nice-select .option.selected.focus { + background-color: #f6f6f6; } + .nice-select .option.selected { + font-weight: bold; } + .nice-select .option.disabled { + background-color: transparent; + color: #999; + cursor: default; } + +.no-csspointerevents .nice-select .list { + display: none; } + +.no-csspointerevents .nice-select.open .list { + display: block; } diff --git a/jquery-nice-select-1.1.0/css/style.css b/jquery-nice-select-1.1.0/css/style.css new file mode 100755 index 0000000..3dbe4bb --- /dev/null +++ b/jquery-nice-select-1.1.0/css/style.css @@ -0,0 +1,372 @@ +.nice-select { + -webkit-tap-highlight-color: transparent; + background-color: #fff; + border-radius: 5px; + border: solid 1px #e0e7ee; + box-sizing: border-box; + clear: both; + cursor: pointer; + display: block; + float: left; + font-family: inherit; + font-size: 14px; + font-weight: normal; + height: 42px; + line-height: 40px; + outline: none; + padding-left: 18px; + padding-right: 30px; + position: relative; + text-align: left !important; + -webkit-transition: all 0.2s ease-in-out; + transition: all 0.2s ease-in-out; + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; + white-space: nowrap; + width: auto; } + .nice-select:hover { + border-color: #d0dae5; } + .nice-select:active, .nice-select.open, .nice-select:focus { + border-color: #88bfff; } + .nice-select:after { + border-bottom: 2px solid #90a1b5; + border-right: 2px solid #90a1b5; + content: ''; + display: block; + height: 5px; + margin-top: -4px; + pointer-events: none; + position: absolute; + right: 12px; + top: 50%; + -webkit-transform-origin: 66% 66%; + -ms-transform-origin: 66% 66%; + transform-origin: 66% 66%; + -webkit-transform: rotate(45deg); + -ms-transform: rotate(45deg); + transform: rotate(45deg); + -webkit-transition: all 0.15s ease-in-out; + transition: all 0.15s ease-in-out; + width: 5px; } + .nice-select.open:after { + -webkit-transform: rotate(-135deg); + -ms-transform: rotate(-135deg); + transform: rotate(-135deg); } + .nice-select.open .list { + opacity: 1; + pointer-events: auto; + -webkit-transform: scale(1) translateY(0); + -ms-transform: scale(1) translateY(0); + transform: scale(1) translateY(0); } + .nice-select.disabled { + border-color: #e7ecf2; + color: #90a1b5; + pointer-events: none; } + .nice-select.disabled:after { + border-color: #cdd5de; } + .nice-select.wide { + width: 100%; } + .nice-select.wide .list { + left: 0 !important; + right: 0 !important; } + .nice-select.right { + float: right; } + .nice-select.right .list { + left: auto; + right: 0; } + .nice-select.small { + font-size: 12px; + height: 36px; + line-height: 34px; } + .nice-select.small:after { + height: 4px; + width: 4px; } + .nice-select.small .option { + line-height: 34px; + min-height: 34px; } + .nice-select .list { + background-color: #fff; + border-radius: 5px; + box-shadow: 0 0 0 1px rgba(68, 88, 112, 0.11); + box-sizing: border-box; + margin-top: 4px; + opacity: 0; + overflow: hidden; + padding: 0; + pointer-events: none; + position: absolute; + top: 100%; + left: 0; + -webkit-transform-origin: 50% 0; + -ms-transform-origin: 50% 0; + transform-origin: 50% 0; + -webkit-transform: scale(0.75) translateY(-21px); + -ms-transform: scale(0.75) translateY(-21px); + transform: scale(0.75) translateY(-21px); + -webkit-transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out; + transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out; + z-index: 9; } + .nice-select .list:hover .option:not(:hover) { + background-color: transparent !important; } + .nice-select .option { + cursor: pointer; + font-weight: 400; + line-height: 40px; + list-style: none; + min-height: 40px; + outline: none; + padding-left: 18px; + padding-right: 29px; + text-align: left; + -webkit-transition: all 0.2s; + transition: all 0.2s; } + .nice-select .option:hover, .nice-select .option.focus, .nice-select .option.selected.focus { + background-color: #f6f7f9; } + .nice-select .option.selected { + font-weight: bold; } + .nice-select .option.disabled { + background-color: transparent; + color: #90a1b5; + cursor: default; } + +.no-csspointerevents .nice-select .list { + display: none; } + +.no-csspointerevents .nice-select.open .list { + display: block; } + +code[class*="language-"], +pre[class*="language-"] { + border-radius: 2px; + color: #445870; + -webkit-hyphens: none; + -ms-hyphens: none; + hyphens: none; + line-height: 1.5; + -moz-tab-size: 4; + -o-tab-size: 4; + tab-size: 4; + text-align: left; + white-space: pre; + word-break: normal; + word-spacing: normal; + word-wrap: normal; + direction: ltr; + font-family: Inconsolata, monospace; + font-size: 13px; + letter-spacing: 0; } + +/* Code blocks */ +pre[class*="language-"] { + padding: 18px 24px; + margin: 0 0 24px; + overflow: auto; } + +:not(pre) > code[class*="language-"], +pre[class*="language-"] { + background: #f6f7f9; } + +/* Inline code */ +:not(pre) > code[class*="language-"] { + padding: 0 2px 1px; } + +.token.comment, +.token.prolog, +.token.doctype, +.token.cdata { + color: #90a1b5; } + +.token.punctuation { + color: #999; } + +.namespace { + opacity: .7; } + +.token.property, +.token.tag, +.token.boolean, +.token.number, +.token.constant, +.token.symbol, +.token.deleted { + color: #EC4444; } + +.token.selector, +.token.attr-name, +.token.string, +.token.char, +.token.builtin, +.token.inserted { + color: #4ABF60; } + +.token.operator, +.token.entity, +.token.url, +.language-css .token.string, +.style .token.string { + color: #a67f59; + background: rgba(255, 255, 255, 0.5); } + +.token.atrule, +.token.attr-value, +.token.keyword { + color: #55a1fb; } + +.token.function { + color: #DD4A68; } + +.token.regex, +.token.important, +.token.variable { + color: #e90; } + +.token.important, +.token.bold { + font-weight: bold; } + +.token.italic { + font-style: italic; } + +.token.entity { + cursor: help; } + +body { + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; + color: #445870; + font-family: 'Work Sans', sans-serif; + font-size: 14px; + font-weight: normal; + letter-spacing: -0.25px; + margin: 0; + padding: 0 18px; } + +p { + line-height: 1.6; + margin: 0 0 1.6em; } + +h1 { + font-size: 36px; + font-weight: 300; + letter-spacing: -2px; + margin: 0 0 24px; } + +h2 { + font-size: 22px; + font-weight: 400; + margin: 0 0 12px; + padding-top: 48px; } + +h3 { + font-size: 18px; + font-weight: 400; + margin: 0 0 12px; + padding-top: 12px; } + +ul { + margin: 0; + padding-left: 16px; } + +a:not(.button) { + color: #55a1fb; + outline: none; + text-decoration: none; + -webkit-transition: all 0.2s ease-in-out; + transition: all 0.2s ease-in-out; + border-bottom: 1px solid transparent; } + a:not(.button):hover, a:not(.button):focus { + border-bottom: 1px solid #88bfff; } + +::-moz-selection { + background: #f3f4f7; } + +::selection { + background: #f3f4f7; } + +.container { + margin: 96px auto 60px; + max-width: 40em; } + +.box { + background-color: #f6f7f9; + border-radius: 2px; + margin-bottom: 30px; + padding: 24px 30px; } + .box:before, .box:after { + content: ""; + display: table; } + .box:after { + clear: both; } + +label { + color: #90a1b5; + font-size: 11px; + margin: 0 2px 4px; + text-transform: uppercase; + float: left; } + label.right { + float: right; } + +.button { + -webkit-tap-highlight-color: transparent; + background-color: #55a1fb; + border-radius: 5px; + border: none; + box-sizing: border-box; + color: #fff; + cursor: pointer; + display: inline-block; + font-weight: 600; + height: 42px; + line-height: 42px; + outline: none; + padding: 0 24px; + text-align: center; + text-decoration: none; + -webkit-transition: all 0.2s ease-in-out; + transition: all 0.2s ease-in-out; + white-space: nowrap; + width: auto; } + .button:hover, .button:focus { + background-color: #4196fb; } + .button:active, .button.nice-select.open { + background-color: #2d8bfa; } + .button.light { + background-color: #fff; + border: 1px solid #e0e7ee; + color: #55a1fb; + line-height: 40px; + margin-left: 24px; } + .button.light:hover { + border-color: #d0dae5; } + .button.light:active, .button.light.nice-select.open, .button.light:focus { + border-color: #88bfff; } + @media screen and (max-width: 360px) { + .button { + width: 100%; } + .button.light { + margin: 18px 0 0; } } + +.header { + text-align: center; + margin-bottom: 60px; } + @media screen and (min-width: 600px) { + .header { + padding: 0 18px; } } + .header p { + color: #90a1b5; + font-size: 18px; + margin-bottom: 36px; } + +.footer { + text-align: center; } + .footer p { + margin-bottom: 90px; } + +.credit { + color: #90a1b5; + clear: both; + font-size: 12px; + margin-top: 90px; } diff --git a/jquery-nice-select-1.1.0/dropdown.sketch b/jquery-nice-select-1.1.0/dropdown.sketch new file mode 100755 index 0000000000000000000000000000000000000000..039f5adb741be4ebe558617b1d0f5dfce4dbf86e GIT binary patch literal 81920 zcmeFa2YeJ&_cuN>cXqbU&g^a?2qGw`s4Q+TqQX`|X_C-E3`u}UNMaIDtTT$(doL&| zBKBSo?7b^iY}l~(f?eP5o!OntCRrZf{k{L+^Z$GjAne|qow@g%bI(2Zd&;dkXmmq+ z{eU^mtqW?}2ZWgc49hYj1`J>r#*Tju{44%&c)=In;D6Tiy4*`UdMMCCfgTFdMMCCfgTF(Zs;IevS!cVm6i-1d3hKNl3;LP8(E z>_>)KTF2s!BQVkh4O=Y)gX;o;P&__65{ZRFvm^0HV0I{07pqT%Bazwhcr+BOj|UR5 z+T>E||7XP*gTFmLJrwAnKo13aD9}TJ9t!kOpoaoI6zHKq4+VNC(1ijgY}}Q#RG#!~ zenCw`)9jYUhPL)V;5Af4;~0V(X%Y$p|+IbCVt{&9h z+~Q@}rOR*i@V7Bm#>VtR@wJ_q-I=|ZFcW8nGb5P;nK8^k%tU4qQ^(9@<}-^Jg*lNq zi@AWgn7M+vfw_%&h?4fKcdjxwFdm_7(J&8S;J%v4$J&Qe;y^y_}y_&s- zy`H^^eUN>KeVBcOeUyESeVl!QeUg2OeSv+MeT`kuZeTxRKV`pWe`J4R|78E+SkA&Z zIX5SB0WQhy!|lhVxC}Rno5)S$rgO8n+1woN818uPMD8T+RPJ={Jnnq%Qf?V{6}OVR ziMy4%lUvO_#68MA$-T#Y#BJn0RS=6>h?A`Y@W=|lRG9mvjP53(m2Li{93 zVkAxyWCTf(G|7+y$!Ic$j3txEWHNm>zn5RlujL=)pX8t7pXOiSU*=!q-{C*xKjJs?U+{lg7z?pjEH;b7;EekD+Ek|3HS}wLMvn;n< zZMoKRo#j@`ZI;_DcU$hWJZ^cz@{Z+w%LkT^EgLQ0SiZGahB(71m1YcGlgk zL#;t;*c!7YtRt)`>qzT?)^XNq>on_3YmIfTb%C|T+HPHHJA?s7tm#i;aU$K5-{lfaS^;_!?)}O3@TK}^CZR2fLo6{!SwzF+->t`Ei z+ub(A7OkS=-CDS8Z?F-m`sd`_%TO?JqlP=k0>sZg<+f_U-K3+XveBw1@4( z>=}F3p0iJ}&$J(6pKY(V&$Tz(TkMC~kFXzQKhD0yeyaTp`#JWD?N`{Zv|nvsX}{0@ zfc;_nqxL84PuX9xzifZa{-*sy`xo{f?7ur$2j?J;evX|TyEt}p?BN*Vh&ZB-m}4Ku za7V^5)=}-4?3m)1?wI2^)G^=D;%Ij)bS!cl>p0%A)NzjET*rluiyW6bmN~9*tZ>}q zc-ZlT<7vmUju#v+Io@=<tpi=9V0k8+;rJkNQd^J3>^ z&SlPPohzN!Id68}=Df>!zw=?|BhJU2Pdi_BzTte|xxx97^K<9d&L5qdoPRn0cK+jH zT^3g_*AA}!uAN+iT)Vo4y7qE~T`|`P*C^Kkt}0ixYo_a9*Id^;SA*+N*Rie>TuWUi zyH0bR;kv+eq3a^o<*qATD_qyPR=L)=9(FzEdcyUz>si-2*Q>7eu6JD@xIT4#?fTC3 zlV}kgq9{tDSF8~Giv7i%#ekR)lj7duFfk)$#hjQI$BN^`@!~<^RB@U(U7R7-iS^qOcXkhQ@97@m4!NW5q-A}q-bid(# z-~EGollyn~pYDGoMzTsSNt9%%uhd@}AnhXUA^D{dQcfBv9UzU7#z~W;8PY7NR%(!% zr5348I$SzgIzu{JI#;?tx=6Z0x>~wcx>H&st(6{-9+aMxo|2xHo{?UW)=95QuSxGp z?@8}V8>G*q&!sPzum9LX;m2Z>plh?=($xq17 z$WFT+EeYB=$Y!7;hE!U_Oy5wdye#+;9251!*izREYI1V6`t!oH+gRH-0r#4v&OU5 z^N8nh&r6(DSqBch6s*f4r=hc%5FC*XynHZtor7-POCBcMtDS?+9PqQ_d@SQ-YdP! zy;pg!_TJ#V(R-8kX74TDTfL8YpY}fIeZl*(cb)fb?>pXiy&rl%@^18g@BP{PyZ0X- z>*IXHSLy5H>*wq5+u1kBH^k@n4fTb5QQvUi1m9%eG~W#0EMJYU!FQ-{zOT)<$akbq z@h$b8z_}=wx@O|L>(D#Y& zbKf7ne=E2OzQS5zukciOE4HiHzG7g-kP3fAtRh}9q9RpsK*fO-qbtT#)Ktu=XsDQ9 z(Nxh=aYV)9ieoF(ilr5&RGeC|tm5j5Yb&m+xS`^vin}WAu2@s?V8x>qPglHH@k+(( z6`xgnUGZJT4;4RGY^wOXlC9(`y_J0``&RBy*{^b!%3UjWs~lVzs0>zyD#Mk-D)*_} zw{pMAeC7U?BP&N$9#lD@vZ}JWa$@DA%0nxgD_bkuD-W++T&Y$bUwK01$(5&7o?Urf z<@uEtR9;wldF7RrS5;nJxvKKf%Ev07t9-ulrOI`cuT{QY`F`bwiG!LJHa5PElC}=U z$+#GiaWfJlGakmv_?QZ&lG%>w#q?&jXZqmx4zpyrc42F4eN+4Rnz{9(n(FG0nAETU zFWaU!)-0}Xt!iJ~Sl>3WMQf>Ro~2uNqq4K)?dqFoZeLYnLoL47Uf)_%+YZ;uq(QZf zHEnIPWJ&veH4^&tdl=ssP48>^#ti*Iixoom&G<$H0{<0nq_l>O@vrx+!%r5s5)-eI}I>>}37mQ=Ys?1);M9>&zVpD3Uk7ia~vtm=k*U*+=lFZ)BFlHZS zUuM7QW2=Vh-x?Y;y$+aOhZL8xpJG==zs`(cQs8(RH_0$rCdcHN{iilGwY9@{1TJcM zmDQ9~ibIi9;?jvRmKk@jK}OAwbPY3>8P5!!TyQJtmrY=* zCXdnmOxG|Im}+Kl>ENf-wKliZH6PyeCT>2NnZitErZLl*8O%)PVD#`1riPi#)J~q= z+*$|c-N9}1YFg{-bh?eoPR3h&w{7B_hQ`LWsWd%Qlcs6#6xFwmZoq%aK8lQ?gq2}># zeOucU`owB@BBwUA6s%;-~aYcU?N0IcJvKYfP2iAMIfslj~aM zT;@Co&iQnDmAhz`Txoh>$Co=ljZUcxnTwR(O6XPQ61=&TxeNlZ%p?FMvq;$u;;{XC zT-d@~36WUNT*X|?Tm!*a!CcF%gkW5Uf2;7X_msJQ&iQ>7(==SlnnE0$?wdpPQJQnOm4!si=H6 zOZzddG_@2ydW*T8xr4crxeEiio4JR%7gK6AI(OBHYvZErt$~=y~Ji$B(>OWnU`a6UA{a*#`n{n~8%yZ21 z$^hfW%1)&ed5L+Md4*X=DN>ktn|Yznh1ZzZ4<1vse}QpT7}5&n4dzYeEoN}1c5o3= zY`(How2Ga4n|TMF9B4ebb0;@2A21&>AEA>S4E{iW+0jz`s6e_PNJm$*jm)RhI{L7J z`HcCT`GOg2YMXBAV`=~NJAB1_U7VOy7*{dhFyAuYG2b&kFh4RsF@wz?8nafP;{TJg zzWe#KiTM>O_BV*-?{q$49t>7??;uK%sh#G*-^@SEzbr$!{#BnVA6)eGT?Xw-qFsi$&O+Vpd{WncGvNJ-y1S;_>v<(-2aw}qf9M@k6vX*V+>>1vFtd;H@R8Yvr}O( zH`P(g(0H_x(55bX5IbR(yuCL4TVR8@4;WZEe@T+C{`_*x3-V+JXVl z?L}KAWV7T!$xJknOy*<$R3aYrM}mR8Kb=YD{mFDH6^RG);cPOgQ+y6P7nYUQnHB6D zb{^ZHTUJ_2chs8C!W8o2E1HR_ZDX`+SF#J(CbpSvVGpB2=;jJ+NT`j}>3dj$^d{Zf z)t4Z1OKB%e);-(CwzCV_Ma=%na3!xCsN@QUJi8cLYlI?VI1+QX*TbX$>DQc70IfUdbrEEditLjG7Tp7ckev9Ld#i$(p(d@z`a1TyJd zE`iJPnOry*Oh^6MTrlE~WV5&|5{&ypi9jS8OoWobM1*oFl8R=+5!@{tNc$rQ)AA?d ziL^f*!UutHBoj)}%hHi#Fqg~){NW%T6-nT3sdzZ!Pvv5PKro*P2P4Ue*giEMPECbr z*j&uO)?y}mI=hgmWoBb*us?{yXqE|kHtfQYN{H&7^FWjfOhcu*XVhD`MGLGy-3ruf zK=xwx62`|~iuFogu?{fit)V75DTyoCE7|4jRa8lQ1XKk-9bXy#={@x4-hsnEiO`=g zh8PV-)3InM;7>%tSqw29)L*58*~-M$7-fo5qf9Px{swS< ztRk*wZ)R`75N~B~V{d2gVDDt_V((_}!GP~$SF`uCYuL5y1E!&eOt0gn*JjmhmX?_5 z8nd*RH>6SJAY~FrTBVFvCMpw@aY{8t8jFU*=~yW2&qQMwX)F`-C(`+xKO2q*a>;Zi zk;@YzOO;?PK&~W2b)1>Ta@q&VGT(_N6h|4(WJG(Uj>l*}i4JW4~vApdI`6i~Y{H zEI+Q}E5pAFJm$h*?3Sz>UH^V@G$@|TWODIHDCJLuAu5qTG7E}lpmuVQ%X}mmibYfU z;_x&3%PhHXQ9*a;db%vb5nA86lHJ7q%Kpaw&i+A_{^l;7CGXIU_BZZSTp116!}LjS z*~57_FX!VbxJqt2t{2yv+n(zKk(9W;+zwnnZbv{*tGNN( zPTbDiKyDBut2ehBT5Q}Nc)gnQ!-QKjORms2p=nrg^T*V*&CkpONwMPu)HtQJxxGfi z5j9k>ZD#!uEzPa%DZw_(0I8f`J+HNS;oNyxkd0f6#N|g)wl+>_XdB&JJHNgT)`s@@(eQTX zj%cX?ELumm#?vWwHmWV(a72BbO);60?aHA_i_NaI+CaYBZ8n*+DY@6VAQ$4opiYE~ zaxuoo#hKL;+Zv9f2<6RNJ@^_tj);R9%}6gBAulO{Y+GYr_I%fihodw&@Jn8w_bQ z7^1fgM_ZGr4O>Yr%jGcWF;(b%2lZBPd2WAhBo)`rAE7^xw34e!CF~9E0F2{6ZZtQB z8_SL3#)F#^xGJvtAOIj0wavg7TfxNf!20k&Xsou0hd0!<&zm%_zG3dX_JfWXIN~6E z5-W$<296k{zaBVZhvJK40@^EW_HmQA$&uRW-;bLIa`fUFxI-}+dUNxs=wk|am?>N%NYlhMb1e{g zAJ+G6&gRbH&K;=ed}Wlw>?UsaDR8^+Ap`a$Lg8p4 z5)Wg6rt57el<+4K*@QnE3#TH%L^KIouhZ(sUC3QT%{y)NJ5D))GE-;eWmx?bZS~`> z04tYwVx?NL`f*nmS3mArW7(jq-|;1@AGeCTp1Xm&aVu6o?q;lhOSILGyAA!gqf}K`j?&j_R5AHQqKNA*EBv-;hN-3Skxrn8!M>Aq zS$_;2d!kdvPT3%Pq2hfe_5Kw1H1`ao|5-3!Q}Nt$nv#Ekdy#vI$}%&XdlhVd9a8@$ z_ZC`ww3T}oDrI(ab7OrCKt?!+G@V{w2iU%@8tCY}>2s(OEpF2LQT^Q9glHl9dGpx% z!zVN^Y^uvNw_>SnGwsPwRnCF{GroTdKX&CD)2FxC@Zs5J$$p>PP>}31l+z5!{upF9 z-H>9PG@qmGOrxz-vcJ*v-S^xN+>aeoszi@gDY7@;13kS*Bd8 zT%ug1oUdH}7I6|6BN36fi9}@L0n^%vk5rIKvK{Hgte!zRvaoegeI97=RQL!N)l>B| zQ3I0o_waOYVJCK>H{RTRa&uekV5fk+zJGeq_fP@RZQL zkEi(e3eukpAUnYaXl|W}m8IjF()FbrnRX$&lHJH)W;Gq(<;tZUupvI5^etLN%5e>$|anK}~4262GK0({2kY*DVx#5`D84D31o}-5AvI9xx)D~>G#8F7 zdi4!tHmN0bq@K(nbICl?Kn|t$WtZ!8A0jp2I=-txWtoNWG%e8XrCGu{RMxeX`X`Fr zD_p2~B}>|X=V_l&2dVa=yMZ*41(^TZ&GyG;pydYAM4CwpIgGTDHf;#)nuh4Of@+A4 zclfe)Z|%$UBhx!vM|Uy0QEwoo`rFdJ!1M_O;-P#hob%@sY2X`~3{0PFBmr;%a6&jA zOND}Qo%V;5BTAmSiYz8alB3AcT6d4px@+piw)RPX*l|QbS212}NVS`;Bq}+coIsY4 z6LnCy<0EZ|rnklKZ5g7eKkp=RGGarD-_)LHY;#wVQ^=|0G;%sQgNjv|tFVLCIaKVi z@%{g)y)`+DoUPoge5x(mXJ63UV!Oypmi;R*~z;4dh006S@yGIM^es=X$cK~ud^!{g=i-@cFhe0(0I`u! zGJ`A90sIOifjTFF&<3N)TsWT%0*nsfvTQCF59P9He;^ggVEO_ZPev0#e>j&2h3bOypXjgwJqgK&qh7Is$v2JV&0NhR}xAhS>|->)Vv4l{elb zFQWY=@-lgatRt_I*U0PS4e};=i>xPan`9+~z^bA1>lY6-UYMmVSp3v1QUPV1^1AYh z@}lyR@{IBWAc`iDRoK?4L#ym-cZL9BbGUd+}CVNIDwF z$-BXx#QLxO#9^l^E|IB zr_ae3C6BtAe5r+ybv#GE?j7>=)#M#*=^I-GpI8kdDq7}gi^1#UJMumG0k{8={KU*A zzmQGjSI{ce*f6(g0Rl>iqHFMkWek{fHA}2{t3{n&K>1M94SCFwU_JsZ6sM0$L%XHJvAiGKk2pZ`U^p4c zX}W>mi#)G<1cktdbcMi&$vQs5M|Fk3C&_w#n2Cnw#i@jz%ErR1{{*xCV`H}S`|7iO zoV+VG60r!}H;F_jf{7ao2gC6YYLKaL;IAH+|flj}cyWtKdk)LiL$ z*Z+No0>D1L8uR0G4K3m)V`fY>@sm1}zStmB2Y`W$^3y3Y%FjRqs>II(I!ZB7pric3 z+z$LK{t$|e0<~Ms*Yb6IJ^r7|&trUi1Aiz#p9gA+mS(<%B1(AG&M!m@5K`Yf1D~gm zXloV+fJ{BIxp{$BzXkgW3K~%tfbnVd+}4J=8Ev(#2;d#3xdJ9N)+}yb*iNHho<;s@^Xr}Tvsr=01I)mB# z`FP?_FirW3z=MnVOTf0vOl&KedMeuoT>N>1+{?^G1K$Q0yGOV+{#?l~=dS{XeEc;) z{Mz{yMU0!jPRF?U8!1PD(SqoIcZ~24oAQgwZVxP4WeEkN|LO!r^SAN07s&gYvdJLt z-5A)f1}Sy&-jBB5jW&v+jbTLY0L@J?mK)DM%s;|E3L-zwKcO6E&{O%-=nbg7Sf{Sh z1bqwRFBywQp#S1Yc#2^Z`4gE)2ERg)Xf6vAB9xmpyQX&jTx=hk>L^-lgdXtEYCNH# z2mctjH2)&-;D0qdn1@%E@8p$LStK;l*aNXN`hb6ff0KU;6kcBhg;f@@9GoGrMyE@G zVg5b-eSQP~f#w!{pZ;v<_{#9_hHF3YnEpe5{>6aP89*o08cxKbaG_*iWyA7K)8LF? zGMq`pV|m2PP>lfKRAqTxC47pJd~T90s05X@Y><6hgdmIH%UAr@{5O!10*1{0h_;{2 z7&8Ay2e_-Ug33B6_-j{Lv7=qlL0^^aZNh!|zxcm(AyQdfZY_$Dg{1?q88V}d$|BH4 zhtb$YkSs2XXmK;EEwaU95+s#%85}4hNwBl?X_(rXOq5#uSs2}kBz8F|Ewm$_hWEb! z5?d-LNUXB%A~JaprSmj41Ce4;gy7`;sXz**8B8!(a6xS1Lh%eDp0bGa2dN8XGpUy;&W+Zf1|Ohh%c}-S(?$+!z`^-#2a`<1V_u zA7eSza-2nhz#nfp!Lr11qDj$|EMlhiPWHIUeXO#(s=Qq#3$~n9CtFUjoN77Ea(ZW0 zK?nD?TxhuntlG=Os({Mwrm{mySjBy$vO~?Ry2OGIGV1+T**#Qtu)(S;=!kbWxT3S_ z8rrz0(b$z$*IRC|U~#qFY`LX`ReqyeVAa8eb#25PMSBHS1p}#cG7pm;J{0Uq5^?y< zGuengnx~O`iDV#?j8r$b)HiLGOZU+31r-raS<7n6{gySBwU!6Kr-v*LTOP4IYI)4W z5i_UE4y(=VqEv2%%DtkpA(gvA<<8!6#yx3y%JQ`38OyWXGVV3Y>tNh4gF-61kIIHs zHc`sB=_R_d!>A($G~zkzwbTmG>8Y5B|Yx8)zpzXBt$%rJonykHRo!7A8*rJ)) zTa72G?ByyqoLUf{sO%9cH&kUGR=F`MyPwKAw#h;jM8Pdc5C)&%p%$v(En28TC6qA! z2;1XR-9lB_{Y|2gg{TZySsE~*vNgzmSJ`|gD^=K0=wFnKw91YsN`^3yQaNP^fhHNk zVA_~58oNk_FjUw}z``kngm8&un7UFBQaNArQP$hz&6S*iB zv|Jj9VAy1;;=!dUctV1iE$l4}qeiQO88K2}R2Gw9Od+B|*pHc`vZJ(+3Lymn$(Uxh zX7C+A@7WB~wS}QMbxlkw=NIzA{=!HQeYJvhe6-3QXh^fIB(_2rEsPPy3gf7y`qeXo z&K))AT;obpOW`AoH+m9|HJbsR|RAi&S>3 zW^)S@(ecThJ3j91g3aA2?@O2_Oc!QAYG&deR#=*;qO#*vcACl_WU#~NW~u2d%ob{e zI-#Bp=zE<{n|V3MqvTnfwB{nT~xM8Wv3bsFZlTiDOW-Zm9A=R`h+$N zyj@s`;T~=pu6bf&xtdI8*~CI#iLh8Wl6hWbCmA>IlvpAhD;y^%g1TiRD&F-3VF|tK z6l3t6?|QOuig2oM8tz(@=7GaMC=kqODZViLnvj41bY3O^I6ay`lzAkC4GT7Fd4E2f zhP-DHDjW~!5^xra!OqZd=F$|SGxTC|x?y2k{iYaeIWoLB~imQcdgcZWIl!RaJxMXIp+&bfiNc;RiyAMA4 z)_$J6JYGl~5w4?&BgS=`1X~LbtUBcb^vWi%r)x!Pwx7NH*6CUl@kEv{($~I`rs>;rX z+N#j$WbD%xnHE^#ap8%g8l9`M^@bXKh7Mqkp)vJQy+|A98I4`l=xf63!W-z^Tf+Jh zHF~JQwC>d?P}v~1X#hJD$S#0q23z5L9!{h*yi72f;=y>nuul`-)%R(Q#eJIa0qxZS z&1@Au7CsR+3fLJ7p9^0IUkYED=w31nP3@h{R<=cDn^d-4Wn0&4Q92@x(gDh9#OVm% z(w!Rd2|sFkHI;4FH*3np2DRySjn0--I)T8tls^N<5bz9SZ6vY?nona}6O2Za$y78{ z?jgTnOO?h${?fKpDtj0^( z$!xiYxaigt50SOasmdgd`di6!2U!a2SP_f$xsrJ6VY%^H)lkk%7uyo)(o;+ zR$B8#b4Eq#NsY>$Sg>ZSqo_4=yk^ZE5$V@=agTM|wvi4e7p$MUb`M_8*mG;t+J zxTM64u}-p1wob85r3&6ihcK3Zqs5#cVVzFxlckz{Vm%mLIizz}PUJ)S`*zw^tRB`y*2Aqw zbgUlMV;~L3nO6_%iRRVgbd^1)uzH-=(Qd3Bmzq`&>q*v=i=uj#%AR3}>gjX<9l@OX zsLr8{XKzMSFS1^2y#$@R%zAl=sGe((wtG>HrLz&N6A6DHL$RU=y!MGi3OYBJPNzcg zY&sqa7gi7JmHO&&esT4%YPLI-_t`;<9`wnvNqg%O8kfqky2&s6U-XJ{gp67z#d_4}`wWrVA8_Z8d9XPS3`v?Q`v_!Ee!k`Z&!3y!yB!i7G-<6 z%3fi}_Lo$QuQbG1m+kLp<5fmu7t6@{i*=LrSIGA7);~&Q`dwq#2ws~znTZOH%J5|h}_M}Nco7J(c z7gfhMYU&|xREOGC+1pk2o`O2Qx1-%q#}As+ zu`OfE7De_hmA#`VvbK?Q0CyVFsfny@3~jvIXe@D#+9puvsBNNcl5MgjHv z3FFg(g0)T673_UQ1#6p0pM$VEh>7hGTa9hD4Ou?6dfOb^T-!VoCAV0?u2I?hRrUdu zU0Y6f!8o@yZIgnvE!rjpYddzE6s&FOW)*BK8;VEZ5%EW}DVn5>7?ng8`N>H3&Lfxv z;odZtnEzOS+=vOg0-DX6|C*N zqJp(us4H08r6vXYj3Emu`y>>@BP#o`reN1;3ijzv3f6X|ZFx~zA6MB&4QX9L1?DkB zFm-9Yo;E&VG2W(Md&{&3m|Yl>A{N)m9Yj#>ARh=KFe4pB z&~7G^CNAeTnxQRnD#{*e+wt$lTv7lt_i>Z?RPE)e>qapdnnq*#6vfq~|S@`t}z=Hh*Lz!tx z_J|2%nLuLQfRWiqR zRmq&qq>}Bc?e`aj{BM>0(-86p=>YyRSO_&=Lf z;3(=6&L-0le=3MdFcDgMAQ=VX9)M~|CXlFt7bK_EjFO#CXAvrHE0!%S@KRb3z5c$ zEN=wjHZIP#)*L>rX(GyIv^Flr!)Vqajoaf)i!CSHRBmULb7I}#hNzsM{_n*qVxC%# z9UVnCJLgt8S8-}NsGFS=jaj5kEeCb8bBLHLSUX*&mSd=6F9()>N64YM*$X)oD(5kx zzcIDaIvz4`L{NW0nHNE{7(%|V^+DAl>~Juv67W4ob7`6p6pcsY@#?Y7P4%==0mY+f z8LFwwOb6WSOs!*Y$1ph8xt-u#=lZBzh2GnJ;h*FxHUFez1T)N$Hcd0SW^mhe>z{OF z9XUtdvA<&^3;(3!K*wliwV@eQu2)xut#aF!_$RsErCxZ)c*jAG363hN!VT2A?2Ceb z(lN2Ce=-(9-6Nz5BL)Gvi~x&Zq+n<0k3}+pDEzai^%c^x2OLw$^D5UD=>rZF<)HaQ zj+tbg<6y@unm*u|?WiT|9p*wDWzz>#u0PEmP`Q38x1;im%I#pJ5IE)*QwX*u5vZFC zm`-U0js;|sqq+MW93!p3aTre=t-QrZI8eC(G#jStF`E#tIMCxD64v}QB@DhT>eq#n z$d6>NTo5Q{K9S46<~ZDOgkv!yIgS+Uj-wsNAn`^&GZg7V+4{!%xi#(eNL5N1`C2MB z5V12Vw~NZ{i84Tr;~a`ZrI}Z=7bBZXMyjuRY9^h6`QXtsXiYtW30Pvb#v zI!-Du>trzN6v`~e>5elTXFASun5~S>GfU<6P`SY>x4X*is&cz^$@6lY_y34(mw;`T zbge-q76LEzCjQ`t{~k$88Rv9F993cNy!=y@mB=O>w=^G=1EplOoXUNtN4+YIwwR zX_`LPS<^q_c(h7xTjj8Zhc4o$yLS52P_r;@Q8;#c8LpuQZ;$3z&uU}S8<@feF`Q<-?xxTgBoH8oGm zm`g~*UFLXKOQX79c~a#PC@fS=pQJgH9W(bM!Q%MDag56CO#|GxVWx@sIp$*q_kGjx zWnqqeg*o;$O|aDF*bkUvKbaPYvU7}PQ5L7zzSRt>@fu=LlyC1j#tz8_?`gpL72L=MF64Tt^6+%2k15Q&es&<=nIa z=O%XM+(FI>Ma~_ha^nonO`=R1Z!k&c+;rMF!D#HtxfvCA6`|Xza@CE1k=oNM3VZ<6J>`ozs{K{=KLTVpo-GQaOlqvq5yDcbx{b&iShIHRtPF zwq+?3XX{+gtZ}~MeAoFNg*Les#MyF(sodel!%O3AoixyoYek%`^J7MGe&XDS;eKWs zZV5J`atrAmuB{Le>-@s`B_d+EcH`!qB4VB2I=^#%@6>9Umfd?9)F|HdC+E-fu8WKh zI^Xp-=kLxxoPUB&x{TArf)DhU9WBL=%yG7shg=R)l=SEo{=DtFXYz;rIF%jU8}Q50Z07tjrtY=-Gv+jYQkDtENX zsRfws1kBk^v8LRaCYTPRw7Gh_wlC_D<5cdLq8@Q+3;VH#%FtxnwKE-=Vl;NqBd)=& z-CcX2gF{^Y5aDa1rmu&6w$ocKF3pmJSrd-pgLDThw7FT zp*j~0x#LdMpgLFFm2f3pI4sDuk85Aoey-u=#L?8=Io^~zS>=|h-03QJYMB5^S6YuZ zb>%gK)HvE*5gfG z<2ATVXsjE(dDOK(a-O*G+E2Cx9(s(>R=x*Auc5^yD9na`#psDTs6ZM6aCTHtDOAu-T(n2VM&)gVUK zLfwFKEiN(OE-|ED_%&XSvRHor8{^=Q_W{fV*hmi2Za8hsl^P=)U5P5NjQR6{5imQa}@k z=>>HW!-wbwRNl#=$WT5P%g4jnNmW2tYTM1$_uXWf>r%~vdw^PSmzJ~OT+1zw=@uL^ zoX#$>;9M(V!R7T^qaz7aJn7LD z)HZY7N^LXOZAIJ6b*FBd6${d83*pLvBMM1_Dz^gsyHe#|)@-vIyDJ{+TI+hC$i=Hw zZn?q5M<~NOV$yUjYPC*>kS zO;F1nC0D`-5(lP&U=;xFl&LYqW@F+6QaUyWU`n2L+^5?mFYF0N2~ps#&F3 zHLmxdT{oEYr)G{_-%X@~>m%34An_+4u^yev-C(TC#?&aaV_cuRzHoi%`ij~y|M|E8 zorK>|y56L(x8I|0KX&fh&0DkH{^Hu?LSSHFz3uJ#3p3~+^Li`t=Joa#mAjL!x3JOg z>S!-UDsV5E)>}~!twq7OUFB{q3WkW2byV&)Lk6@_i85`x!)PptR1hm^q=ML6++OTs z5VEw6bm#i3h1FBsL0>)ZF0P*90QwvhZ^L3P4ipE8yNJ7ryNQFDVd5U*p5hSEFAf#W z0d{7f#hk)wHulUbsyVeaN-e;LRPHI2TcdK1socFP_goowm>3o#VpNRjfeGCGDtDhT zRFzwe?1caKRa47#Z9j3iI6}lOp2kdY531Z+Q`a6SbnU;U;HfxDJU~29gj+=G?xQOA zu&KL`pu7JyHBZHAaiTa$oLuNCmXXIzU3~&w?ft)1_EelD9wOF=D8-{u@mZC7+SIjY zw61M^c~d%|GT$mEe20qj#YS;Kp&u`*-1DY>ys)|Ar*t2SeQI8_v115OjAY?(P2^z3 z;RF&S&P9Tmd=#ex42tCAhynrhg`F-oJDC8IO=wmvjwL|`6AHd$(}=FwO6RP2xOjxP z7<%g{@#v!EBp#<(PQAqwN-U?hO+$JUEAG20hoD83`;b~rP_^qjSx(|9;;BW|3bglC zL$#hswcBfk7S&bjd9?8jqp{02M!ZD4RJ;rwT_#>Z*W4kxjihpK8Qp^AG`wgz>HpL0 z<0vvQqd4#fRTL>`8AE^#YL+5JD;)_$a%q$eP6w;Ujn9oW*-iXFzCv7~*-h^%AE?|r z1-q$OP|QHf#TzUSi#JiU{5@I_fP23KEf;Tt-IS#_ep9?dhs(t~$vW{a9_7azx$B~vIKP31F+3IHgHoj^(*s>cB7!>LL!q}jor3P2ru z6O@VG;z|kPGvc%2bK>*j3;ME;--T)zA3&1$@|)1y~=%~a-XQ&7uq(vSdD}< zs@zxR#r|y(5t_O!|C!2dG$e8Z6~0dm;nO9O23vBdELP5z7rzw062FE-ek*=QC30+0 zBEK9sqE6A?Kq8AJF7yxee0bE!%VlVWERuq;p`tsbKsN5rW-#m1D8ds+WGBvPu3fm< zN+ja1w0|hvg-enH|yq1VpSqargpPIfXaX>*fX-X ztH`vURPKi&)7*XO_tVZ|B z2D+F}Q0{F>DFssq<8!<3%Mf#7nqOz*x;?hbT{pQ&+QF za6*RrWcMj<>hdTcneMYNLC!JntU9Q!65QIO$E9*gZoDJO$MblKV=J>D)%kgri%EAn=1Dm^f?upzI5O1 zzQ=v9`#uowe)k&pTDSSIxe{?PiBT7Qxt&TXRnl7}y~>z{6p(a3RvJB6q#BUPvT@u< zD|A0s8qe49wO(bvhVXCqtEJI{9bc;~`!xibyWc5|RqXhh&$dCX=q}z5u{wzO>l*Fn z{?PrA`(sGaMmJIe5!^uI{4_|e6o?}O41TJlKc@L^D(Qoz0C5-i-5G^*|LFdyC{g`X z($|nEx(JdT4B^ow>Mz=e^PLMTcZozvER`sUmn@QCU~Za3bw=HcCBkGFk~<{3RV#*|sZWBsgvQF~pHL9gvQg5SGeR@;0GXh*~Akjk_YG zj0`d?LTQJhMfg7(QYP(8Hc5lJkEt*WVrf_LUkykkgEfP~6h0yi=>QV92_cjMQcwy} zagrhssdgz^G%}<_SA>uROaitS1Z)qLOw;TPMD=t%UP?+y>7s=BRkCMM!lXPErXhwf zX%Z$KNE?S5jinMc9un4Ds*skR9G_7CKDN=FgO7>C7-i9pDohun;uw5Sx-MJE!EbCU=T&!uE%cRStWd@-& zZ8Jz;_YLsa__VNoNqQ1K8BtunB$|XzP_zqMV`-&yowQ22Ub;cL5d^$hx<$HGx=p%W zy2C_Dv+CFuP>>v;k_jrwt7NQ7(khu$W|fofk?xi5lVIIb5QgMbk}(FOl57Ea`+s|s zQn{`@B0VZSCOuy0+9;KnDyWf>g|7YAfP&KV(hJgy(o2Qzj#0^hCQ6P*cmHcZLFrBD zEor^cn~~v)v(nq}D{Y8myoVDwzT6jLa{C_{mNg6%aIh zh0IdP%%a|uso#VgY^X?0Z_1Ul@erf23*smDm3NT)F{|bN@&Gg9M`jz{!X_kB)T8?U z+G&l+6v`GME(phj!S$Yq(3%?=gbboEB?8q$D8m#t*>wEQ@*sH^&8B-#C3PyP-?~!< zR*5pGrkG|8b93Nizlavt_uE#9YyoO3_P9*oT42Gq%$}IHG$e&C~Ojs=WvJwjn|~- zIc`CTV);OMv^+*0E05DxeEcqgf-r03sq!=k=ORNoRC2gVnpDzO0t)iDW}#`ZmuJW* zqNoe)VJc}hgtmstXNw`9y3o#{jR>zQ2MWrK@&dUDLfaxAW(EaGJ8GCHnv8Z23Py3T zcOr{ZgAjs@pp+O5WeOu`BpE}TO*|Vyan;zwdCfRSU~~0T<;AprM`)W|`DpnV`B?cl zW|*wX$IBO1sHtt>C|SI&nVjL^4Yr0 zZjQJls)>2Wfl)`Q>3--F+^IKE6J7pUY?;D|6fPbwJv@@jyIE*_iC~i79x9aORe;hdc%b~}-vG#)rn9u;HQG*;O)ThD-w2L5R*`LM@=YF=TMODtO8aj|1AGPvBI;Bn|Hzr<=^E$Cap zNB)=IwWCyRr@MNHhxb@K0`6K^Ikz+yLiSR@X5dU=o_YIIN~7k7}L z*z1z4L2^l{GOoN?Pt3f(_3YEJlU2zTD!HbB&|cdGp;gIkrghJ=pJ#YccV4BED~r0* zlc57xUaC7iv^o;G+Gy;eJ3V7P<2(S?JQF-sblo#_=L&;+-Rn+-lH!D^IHW0E) z7-~a?V_|swV<-q0EccLBJ<8OxNRKilH3?vaQVG4Q*v|JDAPj-;jEh+y^`6A(h-ocTSIJ0C!h> z+jFgFWpOgzqmsLf$#?^m@Qwmxx{A4#Hr~6L$#}Qt9?!k#=xWdXbTSqb3(0B&@y2BA zjCX@D4dtNlnLo-xWGFNG$pq@BQ9;7>>2aFw& z=jGy#XlqdJPHBRk*U2W&n{-Q5Ad%^$LSswhSud+Pr2Vi;?kI_k^=#;Xv_U@1gIqpE zPyP&Lq06GEFP6gLx&A;l2m2l8aE8N(ZQh21tURB1HhMm#RXGhOy*A_aNMXza2Ocr9MR zYh`+S?Oq3!y+X{RN}e&W@a|({QJ*c1lhq^scn-%4M^J!;p3#C$d=Q08W9eWhn#gp< z$yKjp#Kr=le9nlC_4=ss`MhR)dbeYSd3&3rO*1`S=(fO&x36~xZ$HN8-4SFiK;@pm4{x~;G$ya8{}OI;|szqhwH&aCz(&Gv-Xgp8}?Rh7I|K+M;7 z*cru0TJp2Wp75r;h6CjdmAqCIBd_K_dEJm0O^m#n1Er%7ScwD0OC2byy;a_7??gkA zw+J-%PS!1iw~H2nmu6IwcQnx4d$4zw_YiN5ceWSB6}|P|Io`S6dEN%^p(cu&HPJSK z=AWqKYn6PUlFwE0u1dZy0}gtdyv^Pg?_mXSaDz(TGlr^?_Y27M{|adCUF<#5dzAO+ zLf1Z4$%m${eN^b$e+_8vUE)2_yVQG9p}U`{WTUCOpQ5|}HK4ioEbrOgbG+vky84w$ zzA$z5OAVR+Ujog&mwGSrUhZ91=o;d{Ohwelw_4Z!zW~j>*Lqiauk)@d^y4R$bex5$ zk{`PV%?-dDXV9W}8a=!k381iFVlZ7|`6z&3)F(lDaUhhY`Ngq#ER#g=C(KNG#x*pq zc5EVWbwu2z5~!S$Np7`u=)J>xr}r-Ct$V!p7Og|?{knDNeNbDaVKLIA1oE$m>wn?+ zPK!!@g>}fI5EU&uLH_9!N$Y*wTReb*{GpQH4An{xpdcNGOX{kX9za3x0iqm$c-kEwkm8rXXdv~B^ zIy2v#?|kR}e)rrz+R`0i%i8Z=>)C5P&)-kzU$}qe29(g;7r562D86UXZu>(36L^RC zjrdwz|6805rcIRq!h8lF8ldn3Cp4&B0f9dtsYc<{ai9zn1weO#qlvW>!R`ki5hlWY zjr+HCAMr93#zci}`OnaG?pwf@glz@BB=?;SUy}Rowlm!KHqdouU+%}-E^!99`#rv+WJ{yMKeObARAWUq{zrI~bVikLWrC zD!U~J>$3-@8pMohI2@qZ!GZK-Fx8;c3K%dNh&KQ)66i65`wRwO7Z4Z*#)|<3e+=bi zpf|zLnE`gK0?3|})eKcZ00sEE{+sAJv>n<3?Sytg-zr;ym+%9+4nYtcm?-xjrVE3p zFlH)@grlvZejR1w7ARYvsxgj78HdF?zMrcsr z2$;j2{R0Ah_LKfgeKJUu(Zh`-GDrhLLl{VtNgL9JbRaCG`-2t!$?|?^|107Ev!TKe zR9G<;=J7v@3?LkYhYT5!0c6C83?Sq0kpX135g9;M;MH%5x3E2%^F)OSg5~6)!mJsQ z0ZfyDufv4@l6wo;Lk{0U0~kLQ#=E(CE{tj5`^)MvNUUK3n~i^8JwM1F0+PzmJ}8K> zdfzc3n9yeY^{+7^b;f-XAjAX!2ZJ;a2Vzr@fNr1whz?ZL2|y1PMbP*mQ}=IBJ4AxQ zATk4Lha%UZb{LWhLs4Ovb*LRC@eOK+q5;$n6IqAap;)l2@jomaBWQq$f-(ISYKIO$ zNl@~7umBcPoC*`$3>N+zBS2|TI+OurGGc^(udoDmHv!1GfQKyLvNi;Ih-!eq1JEP_ z1jZ0hl!1r{>~A!FW8dU}Xa^>_9_>K+pyP#q?YPuGKL~Lu1f5GyzTi zX++mIPQbs9@%y(q!8BYexeE z$jlWCfRZAp`~@|m0CLBJQy0iUVT>?1a0$C%1*-sVhpDc^?a&c0EkFG*E$im1_Aj~m zpkvT+=mc~UI<*Br?$BB2mmj(MVCtL0+Uz|QhW-=k4%7HES08i%x(Ho@E;FX_zm2*> zSO1Q>qYcpDIssg)8LZcos{)`?QyCBngNtUsjH`kMwa98M9)C_K@E=r z8wF5Fn4+5u>(N>drXj$L0p0!U6lwnl!8G&$dI*66kZ-~C6!aWS z-^(9^Y3ThQK{FMmLxmY^fb%dsc+mYheVPih`tjKO2z~ng;MJqTu-_lN;4@$Vx|`3~ z^-;mMGaB_b8~^s;g|om};cQG(a1J=8pxcHK*1>tW09+6*1P656a3ov=E(-sj z&~3v^s4ycc%z_Ft`v8t8wL9D^%ufb($G4R9W2`cL4zCV>3_rVXeiQ4B>?RZ!=n2?7t`eqam<${>FS zI3E8r5|GQi9Y~JBu^Zq#%>19gd4Mkh2?QWKrJ)IUP=IslG??f*FZg4@7t;da2r9pH}N!!NkYzXIoBE}K?Qg*kyU$BhcJWrSbEe*ov< zzHqVDFvIKZ4NIoNvZ$~GDlCl( zi=o2u{sFN@AP_tVUId`)W~6z;;;FDdILN55IDioTuW>&hL=d6~F@*THt|d`niJPlH zg&p|Twf}DrYlJ*vFG2yK_^rECDlFxP?xuq7{(pm5BQy|b1O}n`t*e<-So#lL%>Z5H z``_YzKo}r!2s{E{AM5s*ONC|s(6yZPuKmA2tPvInON12yq@=F*qmT;wBS(!2EBH5v zHK+jB1Y~3=APC4%5M?C7V1PTPfC6%~Xq=G&Uekb)&tOCVh_?DV{S%-rP%{F_g*c$j z3LG#)aB|@BK&SOT=YBxABHR$}Oj8ICgy(mc3E{KhG9dzfM66*yux7ykYZk1I3S+Ql z!M?F(!TwsWhX_TGzCT*asjyAfECfRa9QGI1EX00BW5wp9^=~c{A`x)_0TekADTq|Y znfo2FhE;8@IEY_NzQyVK--2w0Luv$qW=)WNjAjtNgCu3Z^ai*?fx`lPaAm+(t74?- zYzXe`9W5MwaGhYHFgPM>-F3PI=pSI;X|w)D|9~ifup4-8Jp;r05zj@G0@um-+joPm z0QLhwj|SA6l{Hbog*HF|5(OZR13YR244_Zf0EVzmeG0sJBS3Kqpe{xlusTpOGXQC% zKrRCXk_$AAz@0JUZ5Z%bp!BP*V5A0U{?$-`O$ty)0UBIoz;B@ml3>8Fe*st(8=?wP zji^C@ELlXIgRf6ifYZMH!Tx|*9o9~TwNYU$>xUbHQJ4$+BfSg!1_DT2RR(%K3~D@p zxiQ4Q0P7n_UjqG8HNt_b0Q?3CIHC>F4oJZ5_LBlAhCb0g?T8LUC!%Ye{Cl&JLH@n@ zA3*+X8SWoIvi1!DbY<5-C%X|nh+ae=q91gbj2J)+B8Cvdh!MmnVhk~km;ftJM@%7r zqBmj|F$a8sDZ~O3pIdZzv=7NS*grbR-7lQ9Ka9Novll1i50o8D!YRQCKpet{#L$z7 za^JTp=Ya_eOdC`5Qeq-W_GV zKROCbrWYqKB|LWHvz7or4vruJg^B3ka59ncIi~>1y5a;C1~|)T-;MN}fWr@V`^{{@ z6-gIp-4u9`*=XOjYZHgr4VDLwSJNOcNG~;k_YYigAUbS-2aMpFjQl7A12hJO0V?a_ zOcIC{#46F!9-Qv>St}ieX#5o4XryUIPvIY8dHQIEJPa zpaBN-e<)Dq0@RYh4IT=R&1~%Verc%t}@9u zgN`v?+!#gx#h4PlKjPakzW?vP&omEu28tHcP#WOg1%$U?T0zkQuzEmMi~;<^APWuf z8DapTC}Uc$BW`$F+8Y9vj<5i7^oHTzMBGCB&Ls1fc3@7Rn?JtuFLP*VZ$R-23I?hD zrxAA%_Z%qU;nAsEn07JoGl?WcHiFpX!pC_UznMh#hK-pb(kH2 z423^)Aaf9N2y+-SnK_ascFF zn^{`{vtK{!AS<19g>{Yf2aZn3>#X9kQQ;_NEyT7YcAi#?vbguRLVAbSsc zANv&hD*I{nv+TdJpJ)FB3cTSQQXHBbh8#v5CLCsVhEt9c&57r<=CtLs=XB)s<@5*j z9pRiAoLQVjoYkBypkiPYq}uh&Ce~(ZNY8DZNqKH?au8F(ozz*4}gpY8g~_U zGxs9*GPwL*<37Uu6ZbK2ZF`OTF86)zhurTV7{m#2LvV1vCJsqLijXoyfQ%s<$QAO1 zLZLV)0bDj@0(8C}>VO8INq|2eh0XxP@->_dE(uqK>%ev4`fyXYBitG83QvY-f*8C4 z-URP~&%#&XhvBE-7vY!TSKzndcR`%=8U7W7AzTOngg8POID|NaIq-U%5EO7USAmE0 z65?mDH}4=`@oeMa;1S}H<5A_Y@7QGoJUn?7V`!%DhIr zj=cML_w(lQ7Vy$|i+M|V%Xu4kn|NDzCwP~5Pw-yiy~BHt_W|!C-Y2}z_;~qr`2zR~ z_)7V@_`3Oe`TF?=`RIJpe6xJ3e5d)&^8L#9hVLEU2mWpRto&^JV*C>P3j7-Udi*B* z;rto=S^PQtdHe^hQh1+mnsBjjjc}cCgK($tLE#?ZQQ>*vMd4-P3&NL#uLxfg zzAk)I_@VG);itl{gx~DJ?s3@Tw#RQz$ey@8$$Luo)bAPGv$*H{p6h$wAz{ev$el<| zBsUU{XZX$jnAtF&C zi6XfoLn4bJ%Oa~Hheb|_oDum&EPuL{~&Fie47ID*Bt~b=MonX7Z;ZlmljtR*Adqh*BAE@_Y)5gCyU35$B7q;7l~Jkw}|(M zkBZNV9}-^>KPvvK_<8Y*5)u+<30(=igtbJtM1(}VM508JM6yJR1XUtWB446Vf+kTV zQ6o_+Q72I^(I_!0F)lGFF(olAu`IDFaaiJ*#0iP>5*H;dOI(+@De+MfCb>g$rzEE& zzoeL?w4|COR#Hz=UlJ#2E@>%gElHA$lgyATmaLaNC^;rMAxW2re%JWc_Z^y=Do~Ena{F2WOvE#mX(mzlXa6#lszDuESoBuCYvu?C`*&Al5Ljl zmK~8jBzsu)tn78!C$ewlnB|aiC^;iJcezNp47qB#X1Q*;Nx22N<8n9Up2~feXO`!a zmy%bP$IFMvN6Dwkm&iBD_sLJoAC*5Ze_j5G{Kvh!_wwzP-mAISc(2Xg;Jq<>i}rT! zUEX_b@1wo1_rBfxUSX>OOksxtq<~bAS5Qz;QczJaQZP|4Q?O95Qm|2QRd84EP{>oL zRA^NgP?%O&Q#hk=P2qvU8^x`PFvT5;yA+ufSryq8ITg7T;fg$pe2RLCfr^ESV~UrR zwkpXg*(k*-H7d0!jVVni(Uqo^ZYVuadad+U>AfO2t(r zR3%9zMTM%8r&6F&q0*>ASD9D2sPahVB?^XOLBUaiC<&AlN(Lo|!lH~&<|qf0E6Nu| zM#ZAiQN^f6)F^5kHHn%+&7kH`Yp5frpHRP{9-`i=Zd2t@D!d`d)3T8cc16nz)*hnzov;nyH$(nx&exnys3>nxk5vT9I0bTAA8G zwH~!mwQ;pWYA4k$s9jRKqIO$-r#hdymb!;}qI#|RnEFZetLk^u@2Njff2saeV~fT% zjX;e98d(~(8ciB~8lxKH8WS3HjYW-RjTMc<8b>wGX#A>iLF2N<6^*MJziHgixT*2G z#%+yz8V@xdX*@x1LvKg#MDIp3qaic`&5IU7??FqWWzq6zWi$$Hj&?vhp`Fp*=wLJj z9gogK7ochAVss6<4&8w6K~JEU(5vXf=%W}Jj2uQDpyL`KOwz*h%``1FDVoumv6=~*>6!(ag_^CJ?VA0X6Pojy zM>L;mzSI1u`B`g+7Pl5$i&ra9YoAtxR+LtZR;*T>R)SWdR#>eM|d}_EYT_+Ap;~ z=m_cv>Fm)F)sfIq&{5V=(ZT4r>bU6;b-Z+ZbwYK>I^jAoI#oK=I<-0tI?X!WI(<6* zI%7JQv0Jg0SSze8)(z`{^~U;P{jmYqeb^vu2$qBm!;-P#SPFJOHV<2fEyk8&%dqv> zCTt6~6MGOlj2**HU}vy%*h|225BrN^SjuE(LrsmHAc=^^xZ_4xGo^#t^U z^+fd4^)PzcdRRSOJ!3sHJqtZsJ$pT(o|m4FUZ7r(UZ!5QUa?-8UcFv}UZ>um-Z{O? zdXMy;=snYWq4!bmi$0S+zrLitiau7~RNqnGS>H|HL*HB9Pd`w9Sbs!+T>p^%qW+5h zVf`ceNA-W!Kc;^||CIh|{WJP!_0Q>F)PJJ?T>q8+8~wKiOa|Kwwi_@Tuo@r?_zVOL zkOra#x(50NrUn)Ujs{K!UIsx1MF!;t9R^(n-3Gk|V+NB3QwBE;o)~<Tqy1*+%ep7+$r2e+!fqa+;!Y7+-=+)+U_-pv<`1|-r_$TLzFtEfZ@KI}=9}XA>6_9}|C*K$B3DFq0UQc#}kv zRFgE5CX*JE9+Q5P36n{a1(TyD&rCj>GMR2M-Db*a%3;c7DrJf?)ipIUbux7^bvN}i z^)dA~%{9$4Ei^4QEirteHYm~AuLVYbsu(ahe=!OYpr z&CJ8h%Phz&)Qn_SW=1!gGMhD$1=?_!!p~l*s{j5)^gBt*mBx( z+47j>ua?&=Z&=>4d}R5~@`L4PD+?=2D<>;gE25Q$m8X@rm5-IbRe%-QD#9w#ieeRI zwcjevs?e&~s?4gws?w^-s@1C9s@tm9YRqcVYRc-6)q>SktKY2dSv|CRW%b(Xi}g-x zMQd$qU28pS18XyDOKWRuf9nYA1J*g#<<^zfHP-dkP1dc}%hoH_Yt~1tk6Hg}eZl&o z^#|*Z)}L*dY_{33+Hlx#+Nju|Y}9PfHd;1#8zUQIn;@HDn@}6FO{7hNO_EKrO^3}f zTX|arTSZ$HTP<6xt*)(st)Z=vt+B0{t+}m*t);Dvt*xz{t%Gf_Ey*_AHqw@2n`oPC zn`)bBn{8WcTV`8fTWecyJ7qg#yJCCT_LS{u+e@~$?3nG??d0tg?3C?Lc4~HLJ54*B z9l_4n&c=>t=V|9-mtdD}muZ(}muuH(*KF5qH)1zqw_vS+jB zu;;cHw3o1#wAZrNu_xGD**n{N+Xvf|?8)}A_UZPS_BraluuKhjx`}Pm* zAK5>(e`f#Q{-gaT`_J}Y9GD!oIq*3MI_z-}aS(Nob5L+la!_;7aL{wWIT$*aI+#27 zJA^reJ486dJES?}J5)Q=In+BeI&?YoIP^IzIvjVn=y2QNxx-6`HxBO|J~@1K6mb-F z6nB(zlyyWosyk{pIy<^Jx;c6{dOHR?k{rVvX^usXC648eRgTS$ZI11ZtBz}qM;w24 zJmGlW@si_Zr>#!1PB~6_PWetWrz)pfr#h!brxvF+r*@|2$&AveQ+kn@+zwJ$8EL^up<_(|czgXFg|9X9;HoXGLeUv%d2_=P2i5 z=Thei=PKtK=X&Qx=Pu_S=RW6g=SAmb=QZcwobNe5aDM3g#ATbyb{BRRUKbG;Sr?Rx zx(nJx-^Iek%Ei`&;u7r=>yqk{>yqcv$2){!sWEfS(hs=_go&hJa*M_ z#kv}~nz~xJTDn@f+PK=fI=DKzdb)bM`ndYK`nd+U2Dv7=rn;uPX1Zp%7P*$Xmb=!t z*15L3cDZ)D4!91v9(6tA`itwYuGd`ex;}IL?8fA_#ci7#s~d+Kmz$Iu%1zhJ%+1No z#m(K#)6K`t-!0QE%Pq$(-;L&0Y@R%xNKYA06;BsWA5VYJ zK+kZ`M9(D8RL_&1r#vruUh(|R^Sb8^&s(0qd*1cD=lR_8rROWp*Pd@Y-+6xY;`D;N zc)a+$_`SruB)z1)_IfFLp}n-cbi53_@Lt|tzFwhTWUpASI4`PKp4YI~A+JTRC9f5) z<6ft{&UoGRdg=Amo5h>go8Mc=8|f|PE$MCKZR~C8ZQ*V0?c(k3P4rIkPWDdqPWR68 zF7ht*F7qDq9`~N~p7x&eUh_Wc{gd}Y??>KGyq|l&^8W0@*`#>d*H(`Uu!n9n7j zH@>@k_xdXOD*2*(wS9Gc^?Y%@1YaXxV_!30OJ6HrYhOEGdtV1%M_(u3P+zidq;HgO zv~QAcs&ATawr{R)sc(gEm2bUoqwkFGobQ_NQQtGZXML~u-u7elkh<;vvIesO6<$eu*oqpYZy?%Xu<9>9%DZdkbr~EGZ-Sm6t_sV~Z zKeIopzpB5Ezn;H=zo&nQe~f>cf2M!7f3AOlf02KQf4P5$|4IMT{%8H~_`UC2y{~*<>%QTA^Fcg8d_nv{LP3&2GC{IIdxMmMl!H`))Pm4Km>|s{ zogi$GZjfG(evo63OOShzN04XGzMzmGQcz@2RM3H-lptzQR!~k*M^IPLP|#@5Y|vcL zTF}X$H$fkQIfA)@p}!=YoLlcCe0%b{zbKZQOg znUKs#<|HeUGs%tQPVyxAkbFsgq(D+IDTEYCB9p>N5u`{Gg_KRoBNdX0NX4WYQa!1W z)JEzc4UmROqa-?MnslCYk#v)EoAiYAl=LoaOPEZUVi-P*5M~@^7G@FV80H-28Ws{3 z78Vf}6&4eg5|$R06E+xjj;u~blQCp%vLV@+Y(h3CTaj(ZwqysO*6l=gCcBZ{$waaz zIf@)ZjwdIQ50Ep-IpjQY5xIn1OKu=Hk=x0g%xb^N5W^qSHh2np9}vSu_I!4 z1WN=wLL@>gLNdZC!Y0B#!YRTv!Z#u`f)qiGNRKFpsEBBc=!!TJ@l(Xl5ho%}MVyT| z7x7!fy@=-#uOi+=Zj0oI6pY*xDH16jsT`>qsS~LiX&>nr=^42%G9ofQGAlASvNWxcLQBF|KQhudequij}qTHiAh}s#oJBm9B5w#}@ z86^{?66FE}*Mp*hqe7#iqhh1tqi9jJQJqmEQHP=yqL!o9qK-x#i+UdQBI(}+4~1#w#V#@*%iYQ1CQa2;foQB*%O0|5s49xk&2Oy zk%^Iy*&Cw}qZp$UV;Ex`V-{l(V;SQV;~L{0;~nE06Bv8Q6s z#$Jj2E%tist=K!U_hRqIK8k%D`y}>h?DNrTxZ`mr<1WNqj=LInC+{SpHc_a#;&4kiAa_$cvl;?u+ziLVpC9N2PT>jC8h zUI!8m)E%fl(0HKbK>LCI149Rf4_r&yl_Z&Dlw_P_nq-k=o#c|_oQg#W4yN>^45kdHoJcv9axvvf%I%apDNj@0r6N-$QZ-YxQ?aS~sW^~5XPIi9>YeJB z8kicKN=n_I8kd@sTASLLI+A)Qbs=>rbronK|D1Xv^>pe@Dhrj3%0ZQ&N>P=lDpW11 z4>gB+mii0zJoP&D7WEGGKJ@|hA@wo!3H2HE1@$HM746TRYn@+c?`S+dSJM+bY{S+b-Kao0#pH z?Un7F?UU`79haS$ot&MTP0h~BF3c{vS zv)^TZ%>I=9C1+<2a}H~cXpTaTW)308Hpf24DaSR3nB$d`nnTS=&&kTk%_+^P$f?Yk z%%SH@=gj3S zlY1}sdG4#+H@P2kKj-n}A@fA@#Pa0x)bg--c6knY&UtQm#Ju#pg1n-AbbP zGkL${oy)tBcRBA`-u1j&d9U*K%%X z=ReJVp8q2Mb^e!vEd^T(wioOwU@l-OU@zb(;4I)OfC}IRhyvb%y#-1Ir~wIID9qoA;$vY@GeUNBuSTQFa+RIpNTyx>&9nS#p& zcMI+pJSt=>EHqXcJB@?JO@nAcv^_K=O@t;&6Q^Nl+B997KFxq;Mzf?@(;R3{G%uPj&7T%b z3#Dby3TZ{OVpk} z72%2qMS(^8ih_$sMd3wpMTtcRih7Dxi>?=MDc)KPE8bbmTnrWS6!R7nild8*iie7a zi${wmil>T~idT!*ieHupmuQu^mk>)lOMFWFOTtPbN+L@NN~TMGEqPP&w&Z=ur;@Lw zyGmI~Sxco$ait!m$)zc!)Y6R7?9$@WveNR>hSJW`!P0YO3S~-V%4Mo$I%Rrg`epbs zqcY<%lQQ!%t1{~{n=<<{hcd@9r!wa`pmbxmdYGxpcW)`QCE-a$>nxxleg=d0u&Cd24xld1v{- z^4{`+@}ct4@|E((SL~?RRl!vORR~omR47-dR%ldcR^TcK73LL`ikgbwD{fcZ zt9V}Vs^V?Mhl-CCpDMmoe68G4xvdgbxxI2nO3_M*O6f}3O1VnaN{vcPCALzp z(xlS7(z4R7(xEc4GOF@GWlCjEWo~6@WnJY`<&nyZm6t28R{mCbukvB#{S9) zQdOubwJLO#Ru#5NzpAOKrK+{6qiUdPxN4+oyoz2mT{Tm6sA|4yp=z;erE0Zmt?EeC z)vD`Nx2kSe-Klz7^`h!k)%&WC)v)TF)w`?Nt2wI`s+FoS)!NmD)r4xRYUk?Y>Za<} z>W=Dz)jidH)q~Z;)zj5;)$`Rys(-0ISADViP4&C#kJVplcGm2w5w1bj$keFRXw~3r zLTaLFVrt@Qs5ON(MKz^0Gc|KH3pL9%Yc(fpF4SDCc~bMN=6&tfT9#UPt$HoG7E`NT zi>=kK#n)QYI@WsD`qcW>M${gt&8f|=EvzlBZK!Ro?XK;uU8r5E{kis++N-s9YG2mA zsr_2FrH-eLuTHd1u1>X1r;boZs@q=|SC>$iURP9CQdeF#Rku{PT6d!EeBH&mOLe#E z?$q6_`&9R(erG*rJ%7Dey;41bp)8|NFB8dn;RH=b%d-T1CaxM@$5Xp=;f zbdzios!6>`qsgNwttq`Jt0}jspo!L0)l}P5*R<4hznQanUvqGCNOM?oOmlp5LUU4c zYBRMttvRzfr#ZJdueq?9)?CzF++5P!+1%aS*F4ZX*i3JpX`X9dYF=qR-h8V0O!N8X zi_LGE-?eOMfwi!;u($BGh_o2D5L-N3yj%QQ0$Ru|ku6az#Vz$M2V2HkCR*q%(=Br? z3oT16t1ahRnOe8D!dm%T1zROrrCOC*^;_|+My;l;7Ojr0F0EdzS*^EQ@3!7+ec1Y{ z^=<3B){m`U+L+q5w87f8x9w=#*|xilxs9cbtxc>=vQ4Hq%i!?MGw!@9$^!=WR%gVYh;5!pfMNbE@NNbSh%$nGfaDC?-` zsO_ll81FdLvCy&D@l(gyjw>DaJ05jB?s(equH$3J=T3o6sZLaSmIf9Jl= zkj}8qh|Z|an9i!s>dxBEhR){B?#{l>{?5ytZ@Rd;P+h8B>Rp&F?JmPE<1Uk~n68el zg{~W2H@klCy4&@j>t)xQuD1sz4q6=yJy>wC@L@-BJ=HyRJ&iq0JTB+6 z>+9}2)%Ug^*N^Wv>bLH<>v!yT>38jS>nHYm^n3OD^!xVv_51hl>ksKq=}+s=?9cAc z=`ZOo@2~8y>u>1q?Cp}J=na?* zm=9PE_zsW<5(cscN(agZss?HY8U~sNz7B2~+&Z{@kbRJAkb4j@$Tui3C^)!h5IHC^ zC^{%HC^;xKC^Lv1)E~qT5(bS1tq1J}9R^(o-3R>#_YDRQk_RIO3kQn^s|V`_+Xp)a z2L>kxuMOTGVjf}};v9m85JS8}0z*PWl0z~>azm;^dP4?7hC@C>enWvn!9$dxsG*#p zyrHt8`k{`YfuUcAt_|H7x;6A@=-tqVq0hro!!pD2!-~Ty!&<}mVZ&k9VfSJG;jrPD z;gsR#;nv}{;m+ZM!@a`;!;`}c!$*gY4WAgkJbZWfwv}Lqsv~Tq6=!dawV>`xnjd6_$k0Hmz z#v;ckV~JzQW7M&dt9wsFpJ{&9hE@$tRm_T%2;e&hb*f#c!hl=0~C-0_O> zmht}asqvZdL*t9%E8~a9AB{gAe>VPd{LT2gi7gYbiR}}6Cu}F|CLAYRCfp}HCITmd zCqgDlCMG5(C#EOnCKe`^CVrkcF>!L@&7|O@&?ItFY*KPkdQy2(by988eKKvbo6bbv zO5aA`LFb@z(;+$!ou4j17o_i@i_*pD;&dsxG+l-+OP8bT(Q$MF-I#7dx1~GKo#^g# z4|*Uym>x=xpi}5Y^b&e4y@B3I@1hUUr|8$|ujy~;@9CfDU#50W?Ve(p5}HCziA_mP z$xNwCsZD85`A#iPEl;gX9iBQhb$05Psq<5prmjp~ow`1CW9sJAt*P5ncc$)6-Jkk0 zy=59Uy<>XkH0LxljhGgg7MhlvmYJ5DR+?6swwkt?cAX|p2TTV}hfl{%H%-&0r>AG9 z=cgB^m#2?SpPW8DeQEm6^u6haGpsZ0Gh8zQGvYH6GnzBnGlnykGfp#JGeI+pGhb)7&hpL*%nHvU zXGLaZXZOx3&Z^F;&+5(^%;INFX3b{(W=XT;+3?x8S?X-wY}IV-Y~5_bZ0BtEZ13!m z*?9BMz*ap=sUPxJiqTJzfT*m?bV z{Jh1y^}Nk|=zPum*!-{a=jJcWU!K1E>Fi?|^l0hx^48_u%dE>B%iPO?%X^kZ zmL->^m#vnam;IJW%W=z@%Vo>Qmd`KWT7JK>eT8pDas|C&wBooDzH(qCWhG~&WTkYa zZl!&tYvtg|@XGYc%*yP_>dM;6D7~~=U0DUeX+*0#<3>6X1Hd#MqCS6i(boGD_?6`YhUZ$Nao(Ub>m;e N{f&RW|Gn1xe*jJ{JAVKG literal 0 HcmV?d00001 diff --git a/jquery-nice-select-1.1.0/gulpfile.js b/jquery-nice-select-1.1.0/gulpfile.js new file mode 100755 index 0000000..006a236 --- /dev/null +++ b/jquery-nice-select-1.1.0/gulpfile.js @@ -0,0 +1,31 @@ +var gulp = require('gulp'), + rename = require('gulp-rename') + uglify = require('gulp-uglify'), + sass = require('gulp-sass'), + autoprefixer = require('gulp-autoprefixer'); + +gulp.task('compress', function() { + gulp.src('js/jquery.nice-select.js') + .pipe(uglify({preserveComments: 'license'})) + .pipe(rename({suffix: '.min'})) + .pipe(gulp.dest('js')) +}); + +gulp.task('sass', function () { + gulp.src('scss/**/*.scss') + .pipe(sass().on('error', sass.logError)) + .pipe(autoprefixer({ browsers: ['> 1%', 'last 3 versions'] })) + .pipe(gulp.dest('css')); + + gulp.src('scss/nice-select.scss') + .pipe(autoprefixer({ browsers: ['> 1%', 'last 3 versions'] })) + .pipe(rename({suffix: '-prefixed', prefix: '_'})) + .pipe(gulp.dest('scss')); +}); + +gulp.task('watch', function() { + gulp.watch('js/*.js', ['compress']); + gulp.watch('scss/*.scss', ['sass']); +}); + +gulp.task('default', ['compress', 'sass']); \ No newline at end of file diff --git a/jquery-nice-select-1.1.0/index.html b/jquery-nice-select-1.1.0/index.html new file mode 100755 index 0000000..aef1598 --- /dev/null +++ b/jquery-nice-select-1.1.0/index.html @@ -0,0 +1,205 @@ + + + + + + + + jQuery Nice Select + + + + + + + + + +
+ +
+

jQuery Nice Select

+ +

A lightweight jQuery plugin that replaces native select elements with customizable dropdowns.

+ + Download + View on GitHub +
+ +

Usage

+

1. Include jQuery and the plugin.

+ +
<script src="path/to/jquery.js"></script> 
+<script src="path/to/jquery.nice-select.js"></script>
+ +

2. Include the plugin styles, either the compiled CSS...

+ +
<link rel="stylesheet" href="path/to/nice-select.css">
+ +

...or, ideally, import the SASS source (if you use SASS) in your main stylesheet for easier customization.

+ +
@import 'nice-select'; // Or 'nice-select-prefixed'. See 'Notes' section.
+ +

3. Finally, initialize the plugin.

+ +
$(document).ready(function() {
+  $('select').niceSelect();
+});
+ +

All done. That will turn this:

+ +
+ +
+ +

...into this:

+ +
+ +
+ +

There are no settings (a native select doesn't have settings), although there are a couple of special features, documented below.

+ +

Display text

+

You can specify an alternate text for each option, which will be displayed on the dropdown when that option is selected.

+ +

Add a data-display attribute to the desired options. For example:

+ +
<select>
+  <option data-display="Select">Nothing</option>
+  <option value="1">Some option</option>
+  <option value="2">Another option</option>
+  <option value="3" disabled>A disabled option</option>
+  <option value="4">Potato</option>
+</select>
+ +
+ +
+ +

Custom classes

+ +

Every class you assign to a select element will be copied to the generated dropdown. That way you can customize different versions of it to your needs just by adding new CSS.

+ +

These are some examples included in the plugin stylesheet:

+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +

Methods

+ +

update

+ +

Updates the custom dropdown to reflect any changes made to the original select element.

+ +
$('select').niceSelect('update');
+ +

destroy

+ +

Removes the custom dropdown and unbinds all its events.

+ +
$('select').niceSelect('destroy');
+ +

Notes

+ +
    +
  • +

    Autoprefixer is used to add vendor prefixes to CSS rules for older browser support. A nice-select-prefixed.scss file is also generated if you wish to include the SASS file in your project and you're not using Autoprefixer.

    +
  • +
  • +

    In some cases there can be a brief flash in which the native selects are displayed—between the time the page is loaded and the scripts are run. This can be fixed by adding a CSS rule to hide them beforehand:

    + +
    select {
    +  display: none;
    +}
    + +

    Note that the above rule will hide all native select elements. If you're only applying the plugin to some select elements you should adapt the rule accordingly.

    +
  • +
+ + + + +
+ + + + + + + + + + + + diff --git a/jquery-nice-select-1.1.0/js/fastclick.js b/jquery-nice-select-1.1.0/js/fastclick.js new file mode 100755 index 0000000..3af4f9d --- /dev/null +++ b/jquery-nice-select-1.1.0/js/fastclick.js @@ -0,0 +1,841 @@ +;(function () { + 'use strict'; + + /** + * @preserve FastClick: polyfill to remove click delays on browsers with touch UIs. + * + * @codingstandard ftlabs-jsv2 + * @copyright The Financial Times Limited [All Rights Reserved] + * @license MIT License (see LICENSE.txt) + */ + + /*jslint browser:true, node:true*/ + /*global define, Event, Node*/ + + + /** + * Instantiate fast-clicking listeners on the specified layer. + * + * @constructor + * @param {Element} layer The layer to listen on + * @param {Object} [options={}] The options to override the defaults + */ + function FastClick(layer, options) { + var oldOnClick; + + options = options || {}; + + /** + * Whether a click is currently being tracked. + * + * @type boolean + */ + this.trackingClick = false; + + + /** + * Timestamp for when click tracking started. + * + * @type number + */ + this.trackingClickStart = 0; + + + /** + * The element being tracked for a click. + * + * @type EventTarget + */ + this.targetElement = null; + + + /** + * X-coordinate of touch start event. + * + * @type number + */ + this.touchStartX = 0; + + + /** + * Y-coordinate of touch start event. + * + * @type number + */ + this.touchStartY = 0; + + + /** + * ID of the last touch, retrieved from Touch.identifier. + * + * @type number + */ + this.lastTouchIdentifier = 0; + + + /** + * Touchmove boundary, beyond which a click will be cancelled. + * + * @type number + */ + this.touchBoundary = options.touchBoundary || 10; + + + /** + * The FastClick layer. + * + * @type Element + */ + this.layer = layer; + + /** + * The minimum time between tap(touchstart and touchend) events + * + * @type number + */ + this.tapDelay = options.tapDelay || 200; + + /** + * The maximum time for a tap + * + * @type number + */ + this.tapTimeout = options.tapTimeout || 700; + + if (FastClick.notNeeded(layer)) { + return; + } + + // Some old versions of Android don't have Function.prototype.bind + function bind(method, context) { + return function() { return method.apply(context, arguments); }; + } + + + var methods = ['onMouse', 'onClick', 'onTouchStart', 'onTouchMove', 'onTouchEnd', 'onTouchCancel']; + var context = this; + for (var i = 0, l = methods.length; i < l; i++) { + context[methods[i]] = bind(context[methods[i]], context); + } + + // Set up event handlers as required + if (deviceIsAndroid) { + layer.addEventListener('mouseover', this.onMouse, true); + layer.addEventListener('mousedown', this.onMouse, true); + layer.addEventListener('mouseup', this.onMouse, true); + } + + layer.addEventListener('click', this.onClick, true); + layer.addEventListener('touchstart', this.onTouchStart, false); + layer.addEventListener('touchmove', this.onTouchMove, false); + layer.addEventListener('touchend', this.onTouchEnd, false); + layer.addEventListener('touchcancel', this.onTouchCancel, false); + + // Hack is required for browsers that don't support Event#stopImmediatePropagation (e.g. Android 2) + // which is how FastClick normally stops click events bubbling to callbacks registered on the FastClick + // layer when they are cancelled. + if (!Event.prototype.stopImmediatePropagation) { + layer.removeEventListener = function(type, callback, capture) { + var rmv = Node.prototype.removeEventListener; + if (type === 'click') { + rmv.call(layer, type, callback.hijacked || callback, capture); + } else { + rmv.call(layer, type, callback, capture); + } + }; + + layer.addEventListener = function(type, callback, capture) { + var adv = Node.prototype.addEventListener; + if (type === 'click') { + adv.call(layer, type, callback.hijacked || (callback.hijacked = function(event) { + if (!event.propagationStopped) { + callback(event); + } + }), capture); + } else { + adv.call(layer, type, callback, capture); + } + }; + } + + // If a handler is already declared in the element's onclick attribute, it will be fired before + // FastClick's onClick handler. Fix this by pulling out the user-defined handler function and + // adding it as listener. + if (typeof layer.onclick === 'function') { + + // Android browser on at least 3.2 requires a new reference to the function in layer.onclick + // - the old one won't work if passed to addEventListener directly. + oldOnClick = layer.onclick; + layer.addEventListener('click', function(event) { + oldOnClick(event); + }, false); + layer.onclick = null; + } + } + + /** + * Windows Phone 8.1 fakes user agent string to look like Android and iPhone. + * + * @type boolean + */ + var deviceIsWindowsPhone = navigator.userAgent.indexOf("Windows Phone") >= 0; + + /** + * Android requires exceptions. + * + * @type boolean + */ + var deviceIsAndroid = navigator.userAgent.indexOf('Android') > 0 && !deviceIsWindowsPhone; + + + /** + * iOS requires exceptions. + * + * @type boolean + */ + var deviceIsIOS = /iP(ad|hone|od)/.test(navigator.userAgent) && !deviceIsWindowsPhone; + + + /** + * iOS 4 requires an exception for select elements. + * + * @type boolean + */ + var deviceIsIOS4 = deviceIsIOS && (/OS 4_\d(_\d)?/).test(navigator.userAgent); + + + /** + * iOS 6.0-7.* requires the target element to be manually derived + * + * @type boolean + */ + var deviceIsIOSWithBadTarget = deviceIsIOS && (/OS [6-7]_\d/).test(navigator.userAgent); + + /** + * BlackBerry requires exceptions. + * + * @type boolean + */ + var deviceIsBlackBerry10 = navigator.userAgent.indexOf('BB10') > 0; + + /** + * Determine whether a given element requires a native click. + * + * @param {EventTarget|Element} target Target DOM element + * @returns {boolean} Returns true if the element needs a native click + */ + FastClick.prototype.needsClick = function(target) { + switch (target.nodeName.toLowerCase()) { + + // Don't send a synthetic click to disabled inputs (issue #62) + case 'button': + case 'select': + case 'textarea': + if (target.disabled) { + return true; + } + + break; + case 'input': + + // File inputs need real clicks on iOS 6 due to a browser bug (issue #68) + if ((deviceIsIOS && target.type === 'file') || target.disabled) { + return true; + } + + break; + case 'label': + case 'iframe': // iOS8 homescreen apps can prevent events bubbling into frames + case 'video': + return true; + } + + return (/\bneedsclick\b/).test(target.className); + }; + + + /** + * Determine whether a given element requires a call to focus to simulate click into element. + * + * @param {EventTarget|Element} target Target DOM element + * @returns {boolean} Returns true if the element requires a call to focus to simulate native click. + */ + FastClick.prototype.needsFocus = function(target) { + switch (target.nodeName.toLowerCase()) { + case 'textarea': + return true; + case 'select': + return !deviceIsAndroid; + case 'input': + switch (target.type) { + case 'button': + case 'checkbox': + case 'file': + case 'image': + case 'radio': + case 'submit': + return false; + } + + // No point in attempting to focus disabled inputs + return !target.disabled && !target.readOnly; + default: + return (/\bneedsfocus\b/).test(target.className); + } + }; + + + /** + * Send a click event to the specified element. + * + * @param {EventTarget|Element} targetElement + * @param {Event} event + */ + FastClick.prototype.sendClick = function(targetElement, event) { + var clickEvent, touch; + + // On some Android devices activeElement needs to be blurred otherwise the synthetic click will have no effect (#24) + if (document.activeElement && document.activeElement !== targetElement) { + document.activeElement.blur(); + } + + touch = event.changedTouches[0]; + + // Synthesise a click event, with an extra attribute so it can be tracked + clickEvent = document.createEvent('MouseEvents'); + clickEvent.initMouseEvent(this.determineEventType(targetElement), true, true, window, 1, touch.screenX, touch.screenY, touch.clientX, touch.clientY, false, false, false, false, 0, null); + clickEvent.forwardedTouchEvent = true; + targetElement.dispatchEvent(clickEvent); + }; + + FastClick.prototype.determineEventType = function(targetElement) { + + //Issue #159: Android Chrome Select Box does not open with a synthetic click event + if (deviceIsAndroid && targetElement.tagName.toLowerCase() === 'select') { + return 'mousedown'; + } + + return 'click'; + }; + + + /** + * @param {EventTarget|Element} targetElement + */ + FastClick.prototype.focus = function(targetElement) { + var length; + + // Issue #160: on iOS 7, some input elements (e.g. date datetime month) throw a vague TypeError on setSelectionRange. These elements don't have an integer value for the selectionStart and selectionEnd properties, but unfortunately that can't be used for detection because accessing the properties also throws a TypeError. Just check the type instead. Filed as Apple bug #15122724. + if (deviceIsIOS && targetElement.setSelectionRange && targetElement.type.indexOf('date') !== 0 && targetElement.type !== 'time' && targetElement.type !== 'month') { + length = targetElement.value.length; + targetElement.setSelectionRange(length, length); + } else { + targetElement.focus(); + } + }; + + + /** + * Check whether the given target element is a child of a scrollable layer and if so, set a flag on it. + * + * @param {EventTarget|Element} targetElement + */ + FastClick.prototype.updateScrollParent = function(targetElement) { + var scrollParent, parentElement; + + scrollParent = targetElement.fastClickScrollParent; + + // Attempt to discover whether the target element is contained within a scrollable layer. Re-check if the + // target element was moved to another parent. + if (!scrollParent || !scrollParent.contains(targetElement)) { + parentElement = targetElement; + do { + if (parentElement.scrollHeight > parentElement.offsetHeight) { + scrollParent = parentElement; + targetElement.fastClickScrollParent = parentElement; + break; + } + + parentElement = parentElement.parentElement; + } while (parentElement); + } + + // Always update the scroll top tracker if possible. + if (scrollParent) { + scrollParent.fastClickLastScrollTop = scrollParent.scrollTop; + } + }; + + + /** + * @param {EventTarget} targetElement + * @returns {Element|EventTarget} + */ + FastClick.prototype.getTargetElementFromEventTarget = function(eventTarget) { + + // On some older browsers (notably Safari on iOS 4.1 - see issue #56) the event target may be a text node. + if (eventTarget.nodeType === Node.TEXT_NODE) { + return eventTarget.parentNode; + } + + return eventTarget; + }; + + + /** + * On touch start, record the position and scroll offset. + * + * @param {Event} event + * @returns {boolean} + */ + FastClick.prototype.onTouchStart = function(event) { + var targetElement, touch, selection; + + // Ignore multiple touches, otherwise pinch-to-zoom is prevented if both fingers are on the FastClick element (issue #111). + if (event.targetTouches.length > 1) { + return true; + } + + targetElement = this.getTargetElementFromEventTarget(event.target); + touch = event.targetTouches[0]; + + if (deviceIsIOS) { + + // Only trusted events will deselect text on iOS (issue #49) + selection = window.getSelection(); + if (selection.rangeCount && !selection.isCollapsed) { + return true; + } + + if (!deviceIsIOS4) { + + // Weird things happen on iOS when an alert or confirm dialog is opened from a click event callback (issue #23): + // when the user next taps anywhere else on the page, new touchstart and touchend events are dispatched + // with the same identifier as the touch event that previously triggered the click that triggered the alert. + // Sadly, there is an issue on iOS 4 that causes some normal touch events to have the same identifier as an + // immediately preceeding touch event (issue #52), so this fix is unavailable on that platform. + // Issue 120: touch.identifier is 0 when Chrome dev tools 'Emulate touch events' is set with an iOS device UA string, + // which causes all touch events to be ignored. As this block only applies to iOS, and iOS identifiers are always long, + // random integers, it's safe to to continue if the identifier is 0 here. + if (touch.identifier && touch.identifier === this.lastTouchIdentifier) { + event.preventDefault(); + return false; + } + + this.lastTouchIdentifier = touch.identifier; + + // If the target element is a child of a scrollable layer (using -webkit-overflow-scrolling: touch) and: + // 1) the user does a fling scroll on the scrollable layer + // 2) the user stops the fling scroll with another tap + // then the event.target of the last 'touchend' event will be the element that was under the user's finger + // when the fling scroll was started, causing FastClick to send a click event to that layer - unless a check + // is made to ensure that a parent layer was not scrolled before sending a synthetic click (issue #42). + this.updateScrollParent(targetElement); + } + } + + this.trackingClick = true; + this.trackingClickStart = event.timeStamp; + this.targetElement = targetElement; + + this.touchStartX = touch.pageX; + this.touchStartY = touch.pageY; + + // Prevent phantom clicks on fast double-tap (issue #36) + if ((event.timeStamp - this.lastClickTime) < this.tapDelay) { + event.preventDefault(); + } + + return true; + }; + + + /** + * Based on a touchmove event object, check whether the touch has moved past a boundary since it started. + * + * @param {Event} event + * @returns {boolean} + */ + FastClick.prototype.touchHasMoved = function(event) { + var touch = event.changedTouches[0], boundary = this.touchBoundary; + + if (Math.abs(touch.pageX - this.touchStartX) > boundary || Math.abs(touch.pageY - this.touchStartY) > boundary) { + return true; + } + + return false; + }; + + + /** + * Update the last position. + * + * @param {Event} event + * @returns {boolean} + */ + FastClick.prototype.onTouchMove = function(event) { + if (!this.trackingClick) { + return true; + } + + // If the touch has moved, cancel the click tracking + if (this.targetElement !== this.getTargetElementFromEventTarget(event.target) || this.touchHasMoved(event)) { + this.trackingClick = false; + this.targetElement = null; + } + + return true; + }; + + + /** + * Attempt to find the labelled control for the given label element. + * + * @param {EventTarget|HTMLLabelElement} labelElement + * @returns {Element|null} + */ + FastClick.prototype.findControl = function(labelElement) { + + // Fast path for newer browsers supporting the HTML5 control attribute + if (labelElement.control !== undefined) { + return labelElement.control; + } + + // All browsers under test that support touch events also support the HTML5 htmlFor attribute + if (labelElement.htmlFor) { + return document.getElementById(labelElement.htmlFor); + } + + // If no for attribute exists, attempt to retrieve the first labellable descendant element + // the list of which is defined here: http://www.w3.org/TR/html5/forms.html#category-label + return labelElement.querySelector('button, input:not([type=hidden]), keygen, meter, output, progress, select, textarea'); + }; + + + /** + * On touch end, determine whether to send a click event at once. + * + * @param {Event} event + * @returns {boolean} + */ + FastClick.prototype.onTouchEnd = function(event) { + var forElement, trackingClickStart, targetTagName, scrollParent, touch, targetElement = this.targetElement; + + if (!this.trackingClick) { + return true; + } + + // Prevent phantom clicks on fast double-tap (issue #36) + if ((event.timeStamp - this.lastClickTime) < this.tapDelay) { + this.cancelNextClick = true; + return true; + } + + if ((event.timeStamp - this.trackingClickStart) > this.tapTimeout) { + return true; + } + + // Reset to prevent wrong click cancel on input (issue #156). + this.cancelNextClick = false; + + this.lastClickTime = event.timeStamp; + + trackingClickStart = this.trackingClickStart; + this.trackingClick = false; + this.trackingClickStart = 0; + + // On some iOS devices, the targetElement supplied with the event is invalid if the layer + // is performing a transition or scroll, and has to be re-detected manually. Note that + // for this to function correctly, it must be called *after* the event target is checked! + // See issue #57; also filed as rdar://13048589 . + if (deviceIsIOSWithBadTarget) { + touch = event.changedTouches[0]; + + // In certain cases arguments of elementFromPoint can be negative, so prevent setting targetElement to null + targetElement = document.elementFromPoint(touch.pageX - window.pageXOffset, touch.pageY - window.pageYOffset) || targetElement; + targetElement.fastClickScrollParent = this.targetElement.fastClickScrollParent; + } + + targetTagName = targetElement.tagName.toLowerCase(); + if (targetTagName === 'label') { + forElement = this.findControl(targetElement); + if (forElement) { + this.focus(targetElement); + if (deviceIsAndroid) { + return false; + } + + targetElement = forElement; + } + } else if (this.needsFocus(targetElement)) { + + // Case 1: If the touch started a while ago (best guess is 100ms based on tests for issue #36) then focus will be triggered anyway. Return early and unset the target element reference so that the subsequent click will be allowed through. + // Case 2: Without this exception for input elements tapped when the document is contained in an iframe, then any inputted text won't be visible even though the value attribute is updated as the user types (issue #37). + if ((event.timeStamp - trackingClickStart) > 100 || (deviceIsIOS && window.top !== window && targetTagName === 'input')) { + this.targetElement = null; + return false; + } + + this.focus(targetElement); + this.sendClick(targetElement, event); + + // Select elements need the event to go through on iOS 4, otherwise the selector menu won't open. + // Also this breaks opening selects when VoiceOver is active on iOS6, iOS7 (and possibly others) + if (!deviceIsIOS || targetTagName !== 'select') { + this.targetElement = null; + event.preventDefault(); + } + + return false; + } + + if (deviceIsIOS && !deviceIsIOS4) { + + // Don't send a synthetic click event if the target element is contained within a parent layer that was scrolled + // and this tap is being used to stop the scrolling (usually initiated by a fling - issue #42). + scrollParent = targetElement.fastClickScrollParent; + if (scrollParent && scrollParent.fastClickLastScrollTop !== scrollParent.scrollTop) { + return true; + } + } + + // Prevent the actual click from going though - unless the target node is marked as requiring + // real clicks or if it is in the whitelist in which case only non-programmatic clicks are permitted. + if (!this.needsClick(targetElement)) { + event.preventDefault(); + this.sendClick(targetElement, event); + } + + return false; + }; + + + /** + * On touch cancel, stop tracking the click. + * + * @returns {void} + */ + FastClick.prototype.onTouchCancel = function() { + this.trackingClick = false; + this.targetElement = null; + }; + + + /** + * Determine mouse events which should be permitted. + * + * @param {Event} event + * @returns {boolean} + */ + FastClick.prototype.onMouse = function(event) { + + // If a target element was never set (because a touch event was never fired) allow the event + if (!this.targetElement) { + return true; + } + + if (event.forwardedTouchEvent) { + return true; + } + + // Programmatically generated events targeting a specific element should be permitted + if (!event.cancelable) { + return true; + } + + // Derive and check the target element to see whether the mouse event needs to be permitted; + // unless explicitly enabled, prevent non-touch click events from triggering actions, + // to prevent ghost/doubleclicks. + if (!this.needsClick(this.targetElement) || this.cancelNextClick) { + + // Prevent any user-added listeners declared on FastClick element from being fired. + if (event.stopImmediatePropagation) { + event.stopImmediatePropagation(); + } else { + + // Part of the hack for browsers that don't support Event#stopImmediatePropagation (e.g. Android 2) + event.propagationStopped = true; + } + + // Cancel the event + event.stopPropagation(); + event.preventDefault(); + + return false; + } + + // If the mouse event is permitted, return true for the action to go through. + return true; + }; + + + /** + * On actual clicks, determine whether this is a touch-generated click, a click action occurring + * naturally after a delay after a touch (which needs to be cancelled to avoid duplication), or + * an actual click which should be permitted. + * + * @param {Event} event + * @returns {boolean} + */ + FastClick.prototype.onClick = function(event) { + var permitted; + + // It's possible for another FastClick-like library delivered with third-party code to fire a click event before FastClick does (issue #44). In that case, set the click-tracking flag back to false and return early. This will cause onTouchEnd to return early. + if (this.trackingClick) { + this.targetElement = null; + this.trackingClick = false; + return true; + } + + // Very odd behaviour on iOS (issue #18): if a submit element is present inside a form and the user hits enter in the iOS simulator or clicks the Go button on the pop-up OS keyboard the a kind of 'fake' click event will be triggered with the submit-type input element as the target. + if (event.target.type === 'submit' && event.detail === 0) { + return true; + } + + permitted = this.onMouse(event); + + // Only unset targetElement if the click is not permitted. This will ensure that the check for !targetElement in onMouse fails and the browser's click doesn't go through. + if (!permitted) { + this.targetElement = null; + } + + // If clicks are permitted, return true for the action to go through. + return permitted; + }; + + + /** + * Remove all FastClick's event listeners. + * + * @returns {void} + */ + FastClick.prototype.destroy = function() { + var layer = this.layer; + + if (deviceIsAndroid) { + layer.removeEventListener('mouseover', this.onMouse, true); + layer.removeEventListener('mousedown', this.onMouse, true); + layer.removeEventListener('mouseup', this.onMouse, true); + } + + layer.removeEventListener('click', this.onClick, true); + layer.removeEventListener('touchstart', this.onTouchStart, false); + layer.removeEventListener('touchmove', this.onTouchMove, false); + layer.removeEventListener('touchend', this.onTouchEnd, false); + layer.removeEventListener('touchcancel', this.onTouchCancel, false); + }; + + + /** + * Check whether FastClick is needed. + * + * @param {Element} layer The layer to listen on + */ + FastClick.notNeeded = function(layer) { + var metaViewport; + var chromeVersion; + var blackberryVersion; + var firefoxVersion; + + // Devices that don't support touch don't need FastClick + if (typeof window.ontouchstart === 'undefined') { + return true; + } + + // Chrome version - zero for other browsers + chromeVersion = +(/Chrome\/([0-9]+)/.exec(navigator.userAgent) || [,0])[1]; + + if (chromeVersion) { + + if (deviceIsAndroid) { + metaViewport = document.querySelector('meta[name=viewport]'); + + if (metaViewport) { + // Chrome on Android with user-scalable="no" doesn't need FastClick (issue #89) + if (metaViewport.content.indexOf('user-scalable=no') !== -1) { + return true; + } + // Chrome 32 and above with width=device-width or less don't need FastClick + if (chromeVersion > 31 && document.documentElement.scrollWidth <= window.outerWidth) { + return true; + } + } + + // Chrome desktop doesn't need FastClick (issue #15) + } else { + return true; + } + } + + if (deviceIsBlackBerry10) { + blackberryVersion = navigator.userAgent.match(/Version\/([0-9]*)\.([0-9]*)/); + + // BlackBerry 10.3+ does not require Fastclick library. + // https://github.com/ftlabs/fastclick/issues/251 + if (blackberryVersion[1] >= 10 && blackberryVersion[2] >= 3) { + metaViewport = document.querySelector('meta[name=viewport]'); + + if (metaViewport) { + // user-scalable=no eliminates click delay. + if (metaViewport.content.indexOf('user-scalable=no') !== -1) { + return true; + } + // width=device-width (or less than device-width) eliminates click delay. + if (document.documentElement.scrollWidth <= window.outerWidth) { + return true; + } + } + } + } + + // IE10 with -ms-touch-action: none or manipulation, which disables double-tap-to-zoom (issue #97) + if (layer.style.msTouchAction === 'none' || layer.style.touchAction === 'manipulation') { + return true; + } + + // Firefox version - zero for other browsers + firefoxVersion = +(/Firefox\/([0-9]+)/.exec(navigator.userAgent) || [,0])[1]; + + if (firefoxVersion >= 27) { + // Firefox 27+ does not have tap delay if the content is not zoomable - https://bugzilla.mozilla.org/show_bug.cgi?id=922896 + + metaViewport = document.querySelector('meta[name=viewport]'); + if (metaViewport && (metaViewport.content.indexOf('user-scalable=no') !== -1 || document.documentElement.scrollWidth <= window.outerWidth)) { + return true; + } + } + + // IE11: prefixed -ms-touch-action is no longer supported and it's recomended to use non-prefixed version + // http://msdn.microsoft.com/en-us/library/windows/apps/Hh767313.aspx + if (layer.style.touchAction === 'none' || layer.style.touchAction === 'manipulation') { + return true; + } + + return false; + }; + + + /** + * Factory method for creating a FastClick object + * + * @param {Element} layer The layer to listen on + * @param {Object} [options={}] The options to override the defaults + */ + FastClick.attach = function(layer, options) { + return new FastClick(layer, options); + }; + + + if (typeof define === 'function' && typeof define.amd === 'object' && define.amd) { + + // AMD. Register as an anonymous module. + define(function() { + return FastClick; + }); + } else if (typeof module !== 'undefined' && module.exports) { + module.exports = FastClick.attach; + module.exports.FastClick = FastClick; + } else { + window.FastClick = FastClick; + } +}()); diff --git a/jquery-nice-select-1.1.0/js/jquery.js b/jquery-nice-select-1.1.0/js/jquery.js new file mode 100755 index 0000000..0f60b7b --- /dev/null +++ b/jquery-nice-select-1.1.0/js/jquery.js @@ -0,0 +1,5 @@ +/*! jQuery v1.11.3 | (c) 2005, 2015 jQuery Foundation, Inc. | 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=c.slice,e=c.concat,f=c.push,g=c.indexOf,h={},i=h.toString,j=h.hasOwnProperty,k={},l="1.11.3",m=function(a,b){return new m.fn.init(a,b)},n=/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g,o=/^-ms-/,p=/-([\da-z])/gi,q=function(a,b){return b.toUpperCase()};m.fn=m.prototype={jquery:l,constructor:m,selector:"",length:0,toArray:function(){return d.call(this)},get:function(a){return null!=a?0>a?this[a+this.length]:this[a]:d.call(this)},pushStack:function(a){var b=m.merge(this.constructor(),a);return b.prevObject=this,b.context=this.context,b},each:function(a,b){return m.each(this,a,b)},map:function(a){return this.pushStack(m.map(this,function(b,c){return a.call(b,c,b)}))},slice:function(){return this.pushStack(d.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(null)},push:f,sort:c.sort,splice:c.splice},m.extend=m.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||m.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&&(m.isPlainObject(c)||(b=m.isArray(c)))?(b?(b=!1,f=a&&m.isArray(a)?a:[]):f=a&&m.isPlainObject(a)?a:{},g[d]=m.extend(j,f,c)):void 0!==c&&(g[d]=c));return g},m.extend({expando:"jQuery"+(l+Math.random()).replace(/\D/g,""),isReady:!0,error:function(a){throw new Error(a)},noop:function(){},isFunction:function(a){return"function"===m.type(a)},isArray:Array.isArray||function(a){return"array"===m.type(a)},isWindow:function(a){return null!=a&&a==a.window},isNumeric:function(a){return!m.isArray(a)&&a-parseFloat(a)+1>=0},isEmptyObject:function(a){var b;for(b in a)return!1;return!0},isPlainObject:function(a){var b;if(!a||"object"!==m.type(a)||a.nodeType||m.isWindow(a))return!1;try{if(a.constructor&&!j.call(a,"constructor")&&!j.call(a.constructor.prototype,"isPrototypeOf"))return!1}catch(c){return!1}if(k.ownLast)for(b in a)return j.call(a,b);for(b in a);return void 0===b||j.call(a,b)},type:function(a){return null==a?a+"":"object"==typeof a||"function"==typeof a?h[i.call(a)]||"object":typeof a},globalEval:function(b){b&&m.trim(b)&&(a.execScript||function(b){a.eval.call(a,b)})(b)},camelCase:function(a){return a.replace(o,"ms-").replace(p,q)},nodeName:function(a,b){return a.nodeName&&a.nodeName.toLowerCase()===b.toLowerCase()},each:function(a,b,c){var d,e=0,f=a.length,g=r(a);if(c){if(g){for(;f>e;e++)if(d=b.apply(a[e],c),d===!1)break}else for(e in a)if(d=b.apply(a[e],c),d===!1)break}else if(g){for(;f>e;e++)if(d=b.call(a[e],e,a[e]),d===!1)break}else for(e in a)if(d=b.call(a[e],e,a[e]),d===!1)break;return a},trim:function(a){return null==a?"":(a+"").replace(n,"")},makeArray:function(a,b){var c=b||[];return null!=a&&(r(Object(a))?m.merge(c,"string"==typeof a?[a]:a):f.call(c,a)),c},inArray:function(a,b,c){var d;if(b){if(g)return g.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,f=0,g=a.length,h=r(a),i=[];if(h)for(;g>f;f++)d=b(a[f],f,c),null!=d&&i.push(d);else for(f in a)d=b(a[f],f,c),null!=d&&i.push(d);return e.apply([],i)},guid:1,proxy:function(a,b){var c,e,f;return"string"==typeof b&&(f=a[b],b=a,a=f),m.isFunction(a)?(c=d.call(arguments,2),e=function(){return a.apply(b||this,c.concat(d.call(arguments)))},e.guid=a.guid=a.guid||m.guid++,e):void 0},now:function(){return+new Date},support:k}),m.each("Boolean Number String Function Array Date RegExp Object Error".split(" "),function(a,b){h["[object "+b+"]"]=b.toLowerCase()});function r(a){var b="length"in a&&a.length,c=m.type(a);return"function"===c||m.isWindow(a)?!1:1===a.nodeType&&b?!0:"array"===c||0===b||"number"==typeof b&&b>0&&b-1 in a}var s=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=ha(),z=ha(),A=ha(),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=M.replace("w","w#"),O="\\["+L+"*("+M+")(?:"+L+"*([*^$|!~]?=)"+L+"*(?:'((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\"|("+N+"))|)"+L+"*\\]",P=":("+M+")(?:\\((('((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\")|((?:\\\\.|[^\\\\()[\\]]|"+O+")*)|.*)\\)|)",Q=new RegExp(L+"+","g"),R=new RegExp("^"+L+"+|((?:^|[^\\\\])(?:\\\\.)*)"+L+"+$","g"),S=new RegExp("^"+L+"*,"+L+"*"),T=new RegExp("^"+L+"*([>+~]|"+L+")"+L+"*"),U=new RegExp("="+L+"*([^\\]'\"]*?)"+L+"*\\]","g"),V=new RegExp(P),W=new RegExp("^"+N+"$"),X={ID:new RegExp("^#("+M+")"),CLASS:new RegExp("^\\.("+M+")"),TAG:new RegExp("^("+M.replace("w","w*")+")"),ATTR:new RegExp("^"+O),PSEUDO:new RegExp("^"+P),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")},Y=/^(?:input|select|textarea|button)$/i,Z=/^h\d$/i,$=/^[^{]+\{\s*\[native \w/,_=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,aa=/[+~]/,ba=/'|\\/g,ca=new RegExp("\\\\([\\da-f]{1,6}"+L+"?|("+L+")|.)","ig"),da=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)},ea=function(){m()};try{H.apply(E=I.call(v.childNodes),v.childNodes),E[v.childNodes.length].nodeType}catch(fa){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 ga(a,b,d,e){var f,h,j,k,l,o,r,s,w,x;if((b?b.ownerDocument||b:v)!==n&&m(b),b=b||n,d=d||[],k=b.nodeType,"string"!=typeof a||!a||1!==k&&9!==k&&11!==k)return d;if(!e&&p){if(11!==k&&(f=_.exec(a)))if(j=f[1]){if(9===k){if(h=b.getElementById(j),!h||!h.parentNode)return d;if(h.id===j)return d.push(h),d}else if(b.ownerDocument&&(h=b.ownerDocument.getElementById(j))&&t(b,h)&&h.id===j)return d.push(h),d}else{if(f[2])return H.apply(d,b.getElementsByTagName(a)),d;if((j=f[3])&&c.getElementsByClassName)return H.apply(d,b.getElementsByClassName(j)),d}if(c.qsa&&(!q||!q.test(a))){if(s=r=u,w=b,x=1!==k&&a,1===k&&"object"!==b.nodeName.toLowerCase()){o=g(a),(r=b.getAttribute("id"))?s=r.replace(ba,"\\$&"):b.setAttribute("id",s),s="[id='"+s+"'] ",l=o.length;while(l--)o[l]=s+ra(o[l]);w=aa.test(a)&&pa(b.parentNode)||b,x=o.join(",")}if(x)try{return H.apply(d,w.querySelectorAll(x)),d}catch(y){}finally{r||b.removeAttribute("id")}}}return i(a.replace(R,"$1"),b,d,e)}function ha(){var a=[];function b(c,e){return a.push(c+" ")>d.cacheLength&&delete b[a.shift()],b[c+" "]=e}return b}function ia(a){return a[u]=!0,a}function ja(a){var b=n.createElement("div");try{return!!a(b)}catch(c){return!1}finally{b.parentNode&&b.parentNode.removeChild(b),b=null}}function ka(a,b){var c=a.split("|"),e=a.length;while(e--)d.attrHandle[c[e]]=b}function la(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 ma(a){return function(b){var c=b.nodeName.toLowerCase();return"input"===c&&b.type===a}}function na(a){return function(b){var c=b.nodeName.toLowerCase();return("input"===c||"button"===c)&&b.type===a}}function oa(a){return ia(function(b){return b=+b,ia(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 pa(a){return a&&"undefined"!=typeof a.getElementsByTagName&&a}c=ga.support={},f=ga.isXML=function(a){var b=a&&(a.ownerDocument||a).documentElement;return b?"HTML"!==b.nodeName:!1},m=ga.setDocument=function(a){var b,e,g=a?a.ownerDocument||a:v;return g!==n&&9===g.nodeType&&g.documentElement?(n=g,o=g.documentElement,e=g.defaultView,e&&e!==e.top&&(e.addEventListener?e.addEventListener("unload",ea,!1):e.attachEvent&&e.attachEvent("onunload",ea)),p=!f(g),c.attributes=ja(function(a){return a.className="i",!a.getAttribute("className")}),c.getElementsByTagName=ja(function(a){return a.appendChild(g.createComment("")),!a.getElementsByTagName("*").length}),c.getElementsByClassName=$.test(g.getElementsByClassName),c.getById=ja(function(a){return o.appendChild(a).id=u,!g.getElementsByName||!g.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.parentNode?[c]:[]}},d.filter.ID=function(a){var b=a.replace(ca,da);return function(a){return a.getAttribute("id")===b}}):(delete d.find.ID,d.filter.ID=function(a){var b=a.replace(ca,da);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 p?b.getElementsByClassName(a):void 0},r=[],q=[],(c.qsa=$.test(g.querySelectorAll))&&(ja(function(a){o.appendChild(a).innerHTML="",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(".#.+[+~]")}),ja(function(a){var b=g.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=$.test(s=o.matches||o.webkitMatchesSelector||o.mozMatchesSelector||o.oMatchesSelector||o.msMatchesSelector))&&ja(function(a){c.disconnectedMatch=s.call(a,"div"),s.call(a,"[s!='']:x"),r.push("!=",P)}),q=q.length&&new RegExp(q.join("|")),r=r.length&&new RegExp(r.join("|")),b=$.test(o.compareDocumentPosition),t=b||$.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===g||a.ownerDocument===v&&t(v,a)?-1:b===g||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,h=[a],i=[b];if(!e||!f)return a===g?-1:b===g?1:e?-1:f?1:k?J(k,a)-J(k,b):0;if(e===f)return la(a,b);c=a;while(c=c.parentNode)h.unshift(c);c=b;while(c=c.parentNode)i.unshift(c);while(h[d]===i[d])d++;return d?la(h[d],i[d]):h[d]===v?-1:i[d]===v?1:0},g):n},ga.matches=function(a,b){return ga(a,null,null,b)},ga.matchesSelector=function(a,b){if((a.ownerDocument||a)!==n&&m(a),b=b.replace(U,"='$1']"),!(!c.matchesSelector||!p||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 ga(b,n,null,[a]).length>0},ga.contains=function(a,b){return(a.ownerDocument||a)!==n&&m(a),t(a,b)},ga.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},ga.error=function(a){throw new Error("Syntax error, unrecognized expression: "+a)},ga.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=ga.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=ga.selectors={cacheLength:50,createPseudo:ia,match:X,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(ca,da),a[3]=(a[3]||a[4]||a[5]||"").replace(ca,da),"~="===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]||ga.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]&&ga.error(a[0]),a},PSEUDO:function(a){var b,c=!a[6]&&a[2];return X.CHILD.test(a[0])?null:(a[3]?a[2]=a[4]||a[5]||"":c&&V.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(ca,da).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=ga.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(Q," ")+" ").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;if(q){if(f){while(p){l=b;while(l=l[p])if(h?l.nodeName.toLowerCase()===r:1===l.nodeType)return!1;o=p="only"===a&&!o&&"nextSibling"}return!0}if(o=[g?q.firstChild:q.lastChild],g&&s){k=q[u]||(q[u]={}),j=k[a]||[],n=j[0]===w&&j[1],m=j[0]===w&&j[2],l=n&&q.childNodes[n];while(l=++n&&l&&l[p]||(m=n=0)||o.pop())if(1===l.nodeType&&++m&&l===b){k[a]=[w,n,m];break}}else if(s&&(j=(b[u]||(b[u]={}))[a])&&j[0]===w)m=j[1];else while(l=++n&&l&&l[p]||(m=n=0)||o.pop())if((h?l.nodeName.toLowerCase()===r:1===l.nodeType)&&++m&&(s&&((l[u]||(l[u]={}))[a]=[w,m]),l===b))break;return m-=e,m===d||m%d===0&&m/d>=0}}},PSEUDO:function(a,b){var c,e=d.pseudos[a]||d.setFilters[a.toLowerCase()]||ga.error("unsupported pseudo: "+a);return e[u]?e(b):e.length>1?(c=[a,a,"",b],d.setFilters.hasOwnProperty(a.toLowerCase())?ia(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:ia(function(a){var b=[],c=[],d=h(a.replace(R,"$1"));return d[u]?ia(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:ia(function(a){return function(b){return ga(a,b).length>0}}),contains:ia(function(a){return a=a.replace(ca,da),function(b){return(b.textContent||b.innerText||e(b)).indexOf(a)>-1}}),lang:ia(function(a){return W.test(a||"")||ga.error("unsupported lang: "+a),a=a.replace(ca,da).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 Z.test(a.nodeName)},input:function(a){return Y.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:oa(function(){return[0]}),last:oa(function(a,b){return[b-1]}),eq:oa(function(a,b,c){return[0>c?c+b:c]}),even:oa(function(a,b){for(var c=0;b>c;c+=2)a.push(c);return a}),odd:oa(function(a,b){for(var c=1;b>c;c+=2)a.push(c);return a}),lt:oa(function(a,b,c){for(var d=0>c?c+b:c;--d>=0;)a.push(d);return a}),gt:oa(function(a,b,c){for(var d=0>c?c+b:c;++db;b++)d+=a[b].value;return d}function sa(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=[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(i=b[u]||(b[u]={}),(h=i[d])&&h[0]===w&&h[1]===f)return j[2]=h[2];if(i[d]=j,j[2]=a(b,c,g))return!0}}}function ta(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 ua(a,b,c){for(var d=0,e=b.length;e>d;d++)ga(a,b[d],c);return c}function va(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 wa(a,b,c,d,e,f){return d&&!d[u]&&(d=wa(d)),e&&!e[u]&&(e=wa(e,f)),ia(function(f,g,h,i){var j,k,l,m=[],n=[],o=g.length,p=f||ua(b||"*",h.nodeType?[h]:h,[]),q=!a||!f&&b?p:va(p,m,a,h,i),r=c?e||(f?a:o||d)?[]:g:q;if(c&&c(q,r,h,i),d){j=va(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=va(r===g?r.splice(o,r.length):r),e?e(null,g,r,i):H.apply(g,r)})}function xa(a){for(var b,c,e,f=a.length,g=d.relative[a[0].type],h=g||d.relative[" "],i=g?1:0,k=sa(function(a){return a===b},h,!0),l=sa(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=[sa(ta(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 wa(i>1&&ta(m),i>1&&ra(a.slice(0,i-1).concat({value:" "===a[i-2].type?"*":""})).replace(R,"$1"),c,e>i&&xa(a.slice(i,e)),f>e&&xa(a=a.slice(e)),f>e&&ra(a))}m.push(c)}return ta(m)}function ya(a,b){var c=b.length>0,e=a.length>0,f=function(f,g,h,i,k){var l,m,o,p=0,q="0",r=f&&[],s=[],t=j,u=f||e&&d.find.TAG("*",k),v=w+=null==t?1:Math.random()||.1,x=u.length;for(k&&(j=g!==n&&g);q!==x&&null!=(l=u[q]);q++){if(e&&l){m=0;while(o=a[m++])if(o(l,g,h)){i.push(l);break}k&&(w=v)}c&&((l=!o&&l)&&p--,f&&r.push(l))}if(p+=q,c&&q!==p){m=0;while(o=b[m++])o(r,s,g,h);if(f){if(p>0)while(q--)r[q]||s[q]||(s[q]=F.call(i));s=va(s)}H.apply(i,s),k&&!f&&s.length>0&&p+b.length>1&&ga.uniqueSort(i)}return k&&(w=v,j=t),r};return c?ia(f):f}return h=ga.compile=function(a,b){var c,d=[],e=[],f=A[a+" "];if(!f){b||(b=g(a)),c=b.length;while(c--)f=xa(b[c]),f[u]?d.push(f):e.push(f);f=A(a,ya(e,d)),f.selector=a}return f},i=ga.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(ca,da),b)||[])[0],!b)return e;n&&(b=b.parentNode),a=a.slice(j.shift().value.length)}i=X.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(ca,da),aa.test(j[0].type)&&pa(b.parentNode)||b))){if(j.splice(i,1),a=f.length&&ra(j),!a)return H.apply(e,f),e;break}}}return(n||h(a,o))(f,b,!p,e,aa.test(a)&&pa(b.parentNode)||b),e},c.sortStable=u.split("").sort(B).join("")===u,c.detectDuplicates=!!l,m(),c.sortDetached=ja(function(a){return 1&a.compareDocumentPosition(n.createElement("div"))}),ja(function(a){return a.innerHTML="","#"===a.firstChild.getAttribute("href")})||ka("type|href|height|width",function(a,b,c){return c?void 0:a.getAttribute(b,"type"===b.toLowerCase()?1:2)}),c.attributes&&ja(function(a){return a.innerHTML="",a.firstChild.setAttribute("value",""),""===a.firstChild.getAttribute("value")})||ka("value",function(a,b,c){return c||"input"!==a.nodeName.toLowerCase()?void 0:a.defaultValue}),ja(function(a){return null==a.getAttribute("disabled")})||ka(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}),ga}(a);m.find=s,m.expr=s.selectors,m.expr[":"]=m.expr.pseudos,m.unique=s.uniqueSort,m.text=s.getText,m.isXMLDoc=s.isXML,m.contains=s.contains;var t=m.expr.match.needsContext,u=/^<(\w+)\s*\/?>(?:<\/\1>|)$/,v=/^.[^:#\[\.,]*$/;function w(a,b,c){if(m.isFunction(b))return m.grep(a,function(a,d){return!!b.call(a,d,a)!==c});if(b.nodeType)return m.grep(a,function(a){return a===b!==c});if("string"==typeof b){if(v.test(b))return m.filter(b,a,c);b=m.filter(b,a)}return m.grep(a,function(a){return m.inArray(a,b)>=0!==c})}m.filter=function(a,b,c){var d=b[0];return c&&(a=":not("+a+")"),1===b.length&&1===d.nodeType?m.find.matchesSelector(d,a)?[d]:[]:m.find.matches(a,m.grep(b,function(a){return 1===a.nodeType}))},m.fn.extend({find:function(a){var b,c=[],d=this,e=d.length;if("string"!=typeof a)return this.pushStack(m(a).filter(function(){for(b=0;e>b;b++)if(m.contains(d[b],this))return!0}));for(b=0;e>b;b++)m.find(a,d[b],c);return c=this.pushStack(e>1?m.unique(c):c),c.selector=this.selector?this.selector+" "+a:a,c},filter:function(a){return this.pushStack(w(this,a||[],!1))},not:function(a){return this.pushStack(w(this,a||[],!0))},is:function(a){return!!w(this,"string"==typeof a&&t.test(a)?m(a):a||[],!1).length}});var x,y=a.document,z=/^(?:\s*(<[\w\W]+>)[^>]*|#([\w-]*))$/,A=m.fn.init=function(a,b){var c,d;if(!a)return this;if("string"==typeof a){if(c="<"===a.charAt(0)&&">"===a.charAt(a.length-1)&&a.length>=3?[null,a,null]:z.exec(a),!c||!c[1]&&b)return!b||b.jquery?(b||x).find(a):this.constructor(b).find(a);if(c[1]){if(b=b instanceof m?b[0]:b,m.merge(this,m.parseHTML(c[1],b&&b.nodeType?b.ownerDocument||b:y,!0)),u.test(c[1])&&m.isPlainObject(b))for(c in b)m.isFunction(this[c])?this[c](b[c]):this.attr(c,b[c]);return this}if(d=y.getElementById(c[2]),d&&d.parentNode){if(d.id!==c[2])return x.find(a);this.length=1,this[0]=d}return this.context=y,this.selector=a,this}return a.nodeType?(this.context=this[0]=a,this.length=1,this):m.isFunction(a)?"undefined"!=typeof x.ready?x.ready(a):a(m):(void 0!==a.selector&&(this.selector=a.selector,this.context=a.context),m.makeArray(a,this))};A.prototype=m.fn,x=m(y);var B=/^(?:parents|prev(?:Until|All))/,C={children:!0,contents:!0,next:!0,prev:!0};m.extend({dir:function(a,b,c){var d=[],e=a[b];while(e&&9!==e.nodeType&&(void 0===c||1!==e.nodeType||!m(e).is(c)))1===e.nodeType&&d.push(e),e=e[b];return d},sibling:function(a,b){for(var c=[];a;a=a.nextSibling)1===a.nodeType&&a!==b&&c.push(a);return c}}),m.fn.extend({has:function(a){var b,c=m(a,this),d=c.length;return this.filter(function(){for(b=0;d>b;b++)if(m.contains(this,c[b]))return!0})},closest:function(a,b){for(var c,d=0,e=this.length,f=[],g=t.test(a)||"string"!=typeof a?m(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&&m.find.matchesSelector(c,a))){f.push(c);break}return this.pushStack(f.length>1?m.unique(f):f)},index:function(a){return a?"string"==typeof a?m.inArray(this[0],m(a)):m.inArray(a.jquery?a[0]:a,this):this[0]&&this[0].parentNode?this.first().prevAll().length:-1},add:function(a,b){return this.pushStack(m.unique(m.merge(this.get(),m(a,b))))},addBack:function(a){return this.add(null==a?this.prevObject:this.prevObject.filter(a))}});function D(a,b){do a=a[b];while(a&&1!==a.nodeType);return a}m.each({parent:function(a){var b=a.parentNode;return b&&11!==b.nodeType?b:null},parents:function(a){return m.dir(a,"parentNode")},parentsUntil:function(a,b,c){return m.dir(a,"parentNode",c)},next:function(a){return D(a,"nextSibling")},prev:function(a){return D(a,"previousSibling")},nextAll:function(a){return m.dir(a,"nextSibling")},prevAll:function(a){return m.dir(a,"previousSibling")},nextUntil:function(a,b,c){return m.dir(a,"nextSibling",c)},prevUntil:function(a,b,c){return m.dir(a,"previousSibling",c)},siblings:function(a){return m.sibling((a.parentNode||{}).firstChild,a)},children:function(a){return m.sibling(a.firstChild)},contents:function(a){return m.nodeName(a,"iframe")?a.contentDocument||a.contentWindow.document:m.merge([],a.childNodes)}},function(a,b){m.fn[a]=function(c,d){var e=m.map(this,b,c);return"Until"!==a.slice(-5)&&(d=c),d&&"string"==typeof d&&(e=m.filter(d,e)),this.length>1&&(C[a]||(e=m.unique(e)),B.test(a)&&(e=e.reverse())),this.pushStack(e)}});var E=/\S+/g,F={};function G(a){var b=F[a]={};return m.each(a.match(E)||[],function(a,c){b[c]=!0}),b}m.Callbacks=function(a){a="string"==typeof a?F[a]||G(a):m.extend({},a);var b,c,d,e,f,g,h=[],i=!a.once&&[],j=function(l){for(c=a.memory&&l,d=!0,f=g||0,g=0,e=h.length,b=!0;h&&e>f;f++)if(h[f].apply(l[0],l[1])===!1&&a.stopOnFalse){c=!1;break}b=!1,h&&(i?i.length&&j(i.shift()):c?h=[]:k.disable())},k={add:function(){if(h){var d=h.length;!function f(b){m.each(b,function(b,c){var d=m.type(c);"function"===d?a.unique&&k.has(c)||h.push(c):c&&c.length&&"string"!==d&&f(c)})}(arguments),b?e=h.length:c&&(g=d,j(c))}return this},remove:function(){return h&&m.each(arguments,function(a,c){var d;while((d=m.inArray(c,h,d))>-1)h.splice(d,1),b&&(e>=d&&e--,f>=d&&f--)}),this},has:function(a){return a?m.inArray(a,h)>-1:!(!h||!h.length)},empty:function(){return h=[],e=0,this},disable:function(){return h=i=c=void 0,this},disabled:function(){return!h},lock:function(){return i=void 0,c||k.disable(),this},locked:function(){return!i},fireWith:function(a,c){return!h||d&&!i||(c=c||[],c=[a,c.slice?c.slice():c],b?i.push(c):j(c)),this},fire:function(){return k.fireWith(this,arguments),this},fired:function(){return!!d}};return k},m.extend({Deferred:function(a){var b=[["resolve","done",m.Callbacks("once memory"),"resolved"],["reject","fail",m.Callbacks("once memory"),"rejected"],["notify","progress",m.Callbacks("memory")]],c="pending",d={state:function(){return c},always:function(){return e.done(arguments).fail(arguments),this},then:function(){var a=arguments;return m.Deferred(function(c){m.each(b,function(b,f){var g=m.isFunction(a[b])&&a[b];e[f[1]](function(){var a=g&&g.apply(this,arguments);a&&m.isFunction(a.promise)?a.promise().done(c.resolve).fail(c.reject).progress(c.notify):c[f[0]+"With"](this===d?c.promise():this,g?[a]:arguments)})}),a=null}).promise()},promise:function(a){return null!=a?m.extend(a,d):d}},e={};return d.pipe=d.then,m.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=d.call(arguments),e=c.length,f=1!==e||a&&m.isFunction(a.promise)?e:0,g=1===f?a:m.Deferred(),h=function(a,b,c){return function(e){b[a]=this,c[a]=arguments.length>1?d.call(arguments):e,c===i?g.notifyWith(b,c):--f||g.resolveWith(b,c)}},i,j,k;if(e>1)for(i=new Array(e),j=new Array(e),k=new Array(e);e>b;b++)c[b]&&m.isFunction(c[b].promise)?c[b].promise().done(h(b,k,c)).fail(g.reject).progress(h(b,j,i)):--f;return f||g.resolveWith(k,c),g.promise()}});var H;m.fn.ready=function(a){return m.ready.promise().done(a),this},m.extend({isReady:!1,readyWait:1,holdReady:function(a){a?m.readyWait++:m.ready(!0)},ready:function(a){if(a===!0?!--m.readyWait:!m.isReady){if(!y.body)return setTimeout(m.ready);m.isReady=!0,a!==!0&&--m.readyWait>0||(H.resolveWith(y,[m]),m.fn.triggerHandler&&(m(y).triggerHandler("ready"),m(y).off("ready")))}}});function I(){y.addEventListener?(y.removeEventListener("DOMContentLoaded",J,!1),a.removeEventListener("load",J,!1)):(y.detachEvent("onreadystatechange",J),a.detachEvent("onload",J))}function J(){(y.addEventListener||"load"===event.type||"complete"===y.readyState)&&(I(),m.ready())}m.ready.promise=function(b){if(!H)if(H=m.Deferred(),"complete"===y.readyState)setTimeout(m.ready);else if(y.addEventListener)y.addEventListener("DOMContentLoaded",J,!1),a.addEventListener("load",J,!1);else{y.attachEvent("onreadystatechange",J),a.attachEvent("onload",J);var c=!1;try{c=null==a.frameElement&&y.documentElement}catch(d){}c&&c.doScroll&&!function e(){if(!m.isReady){try{c.doScroll("left")}catch(a){return setTimeout(e,50)}I(),m.ready()}}()}return H.promise(b)};var K="undefined",L;for(L in m(k))break;k.ownLast="0"!==L,k.inlineBlockNeedsLayout=!1,m(function(){var a,b,c,d;c=y.getElementsByTagName("body")[0],c&&c.style&&(b=y.createElement("div"),d=y.createElement("div"),d.style.cssText="position:absolute;border:0;width:0;height:0;top:0;left:-9999px",c.appendChild(d).appendChild(b),typeof b.style.zoom!==K&&(b.style.cssText="display:inline;margin:0;border:0;padding:1px;width:1px;zoom:1",k.inlineBlockNeedsLayout=a=3===b.offsetWidth,a&&(c.style.zoom=1)),c.removeChild(d))}),function(){var a=y.createElement("div");if(null==k.deleteExpando){k.deleteExpando=!0;try{delete a.test}catch(b){k.deleteExpando=!1}}a=null}(),m.acceptData=function(a){var b=m.noData[(a.nodeName+" ").toLowerCase()],c=+a.nodeType||1;return 1!==c&&9!==c?!1:!b||b!==!0&&a.getAttribute("classid")===b};var M=/^(?:\{[\w\W]*\}|\[[\w\W]*\])$/,N=/([A-Z])/g;function O(a,b,c){if(void 0===c&&1===a.nodeType){var d="data-"+b.replace(N,"-$1").toLowerCase();if(c=a.getAttribute(d),"string"==typeof c){try{c="true"===c?!0:"false"===c?!1:"null"===c?null:+c+""===c?+c:M.test(c)?m.parseJSON(c):c}catch(e){}m.data(a,b,c)}else c=void 0}return c}function P(a){var b;for(b in a)if(("data"!==b||!m.isEmptyObject(a[b]))&&"toJSON"!==b)return!1; + +return!0}function Q(a,b,d,e){if(m.acceptData(a)){var f,g,h=m.expando,i=a.nodeType,j=i?m.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()||m.guid++:h),j[k]||(j[k]=i?{}:{toJSON:m.noop}),("object"==typeof b||"function"==typeof b)&&(e?j[k]=m.extend(j[k],b):j[k].data=m.extend(j[k].data,b)),g=j[k],e||(g.data||(g.data={}),g=g.data),void 0!==d&&(g[m.camelCase(b)]=d),"string"==typeof b?(f=g[b],null==f&&(f=g[m.camelCase(b)])):f=g,f}}function R(a,b,c){if(m.acceptData(a)){var d,e,f=a.nodeType,g=f?m.cache:a,h=f?a[m.expando]:m.expando;if(g[h]){if(b&&(d=c?g[h]:g[h].data)){m.isArray(b)?b=b.concat(m.map(b,m.camelCase)):b in d?b=[b]:(b=m.camelCase(b),b=b in d?[b]:b.split(" ")),e=b.length;while(e--)delete d[b[e]];if(c?!P(d):!m.isEmptyObject(d))return}(c||(delete g[h].data,P(g[h])))&&(f?m.cleanData([a],!0):k.deleteExpando||g!=g.window?delete g[h]:g[h]=null)}}}m.extend({cache:{},noData:{"applet ":!0,"embed ":!0,"object ":"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"},hasData:function(a){return a=a.nodeType?m.cache[a[m.expando]]:a[m.expando],!!a&&!P(a)},data:function(a,b,c){return Q(a,b,c)},removeData:function(a,b){return R(a,b)},_data:function(a,b,c){return Q(a,b,c,!0)},_removeData:function(a,b){return R(a,b,!0)}}),m.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=m.data(f),1===f.nodeType&&!m._data(f,"parsedAttrs"))){c=g.length;while(c--)g[c]&&(d=g[c].name,0===d.indexOf("data-")&&(d=m.camelCase(d.slice(5)),O(f,d,e[d])));m._data(f,"parsedAttrs",!0)}return e}return"object"==typeof a?this.each(function(){m.data(this,a)}):arguments.length>1?this.each(function(){m.data(this,a,b)}):f?O(f,a,m.data(f,a)):void 0},removeData:function(a){return this.each(function(){m.removeData(this,a)})}}),m.extend({queue:function(a,b,c){var d;return a?(b=(b||"fx")+"queue",d=m._data(a,b),c&&(!d||m.isArray(c)?d=m._data(a,b,m.makeArray(c)):d.push(c)),d||[]):void 0},dequeue:function(a,b){b=b||"fx";var c=m.queue(a,b),d=c.length,e=c.shift(),f=m._queueHooks(a,b),g=function(){m.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 m._data(a,c)||m._data(a,c,{empty:m.Callbacks("once memory").add(function(){m._removeData(a,b+"queue"),m._removeData(a,c)})})}}),m.fn.extend({queue:function(a,b){var c=2;return"string"!=typeof a&&(b=a,a="fx",c--),arguments.lengthh;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},W=/^(?:checkbox|radio)$/i;!function(){var a=y.createElement("input"),b=y.createElement("div"),c=y.createDocumentFragment();if(b.innerHTML="
a",k.leadingWhitespace=3===b.firstChild.nodeType,k.tbody=!b.getElementsByTagName("tbody").length,k.htmlSerialize=!!b.getElementsByTagName("link").length,k.html5Clone="<:nav>"!==y.createElement("nav").cloneNode(!0).outerHTML,a.type="checkbox",a.checked=!0,c.appendChild(a),k.appendChecked=a.checked,b.innerHTML="",k.noCloneChecked=!!b.cloneNode(!0).lastChild.defaultValue,c.appendChild(b),b.innerHTML="",k.checkClone=b.cloneNode(!0).cloneNode(!0).lastChild.checked,k.noCloneEvent=!0,b.attachEvent&&(b.attachEvent("onclick",function(){k.noCloneEvent=!1}),b.cloneNode(!0).click()),null==k.deleteExpando){k.deleteExpando=!0;try{delete b.test}catch(d){k.deleteExpando=!1}}}(),function(){var b,c,d=y.createElement("div");for(b in{submit:!0,change:!0,focusin:!0})c="on"+b,(k[b+"Bubbles"]=c in a)||(d.setAttribute(c,"t"),k[b+"Bubbles"]=d.attributes[c].expando===!1);d=null}();var X=/^(?:input|select|textarea)$/i,Y=/^key/,Z=/^(?:mouse|pointer|contextmenu)|click/,$=/^(?:focusinfocus|focusoutblur)$/,_=/^([^.]*)(?:\.(.+)|)$/;function aa(){return!0}function ba(){return!1}function ca(){try{return y.activeElement}catch(a){}}m.event={global:{},add:function(a,b,c,d,e){var f,g,h,i,j,k,l,n,o,p,q,r=m._data(a);if(r){c.handler&&(i=c,c=i.handler,e=i.selector),c.guid||(c.guid=m.guid++),(g=r.events)||(g=r.events={}),(k=r.handle)||(k=r.handle=function(a){return typeof m===K||a&&m.event.triggered===a.type?void 0:m.event.dispatch.apply(k.elem,arguments)},k.elem=a),b=(b||"").match(E)||[""],h=b.length;while(h--)f=_.exec(b[h])||[],o=q=f[1],p=(f[2]||"").split(".").sort(),o&&(j=m.event.special[o]||{},o=(e?j.delegateType:j.bindType)||o,j=m.event.special[o]||{},l=m.extend({type:o,origType:q,data:d,handler:c,guid:c.guid,selector:e,needsContext:e&&m.expr.match.needsContext.test(e),namespace:p.join(".")},i),(n=g[o])||(n=g[o]=[],n.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?n.splice(n.delegateCount++,0,l):n.push(l),m.event.global[o]=!0);a=null}},remove:function(a,b,c,d,e){var f,g,h,i,j,k,l,n,o,p,q,r=m.hasData(a)&&m._data(a);if(r&&(k=r.events)){b=(b||"").match(E)||[""],j=b.length;while(j--)if(h=_.exec(b[j])||[],o=q=h[1],p=(h[2]||"").split(".").sort(),o){l=m.event.special[o]||{},o=(d?l.delegateType:l.bindType)||o,n=k[o]||[],h=h[2]&&new RegExp("(^|\\.)"+p.join("\\.(?:.*\\.|)")+"(\\.|$)"),i=f=n.length;while(f--)g=n[f],!e&&q!==g.origType||c&&c.guid!==g.guid||h&&!h.test(g.namespace)||d&&d!==g.selector&&("**"!==d||!g.selector)||(n.splice(f,1),g.selector&&n.delegateCount--,l.remove&&l.remove.call(a,g));i&&!n.length&&(l.teardown&&l.teardown.call(a,p,r.handle)!==!1||m.removeEvent(a,o,r.handle),delete k[o])}else for(o in k)m.event.remove(a,o+b[j],c,d,!0);m.isEmptyObject(k)&&(delete r.handle,m._removeData(a,"events"))}},trigger:function(b,c,d,e){var f,g,h,i,k,l,n,o=[d||y],p=j.call(b,"type")?b.type:b,q=j.call(b,"namespace")?b.namespace.split("."):[];if(h=l=d=d||y,3!==d.nodeType&&8!==d.nodeType&&!$.test(p+m.event.triggered)&&(p.indexOf(".")>=0&&(q=p.split("."),p=q.shift(),q.sort()),g=p.indexOf(":")<0&&"on"+p,b=b[m.expando]?b:new m.Event(p,"object"==typeof b&&b),b.isTrigger=e?2:3,b.namespace=q.join("."),b.namespace_re=b.namespace?new RegExp("(^|\\.)"+q.join("\\.(?:.*\\.|)")+"(\\.|$)"):null,b.result=void 0,b.target||(b.target=d),c=null==c?[b]:m.makeArray(c,[b]),k=m.event.special[p]||{},e||!k.trigger||k.trigger.apply(d,c)!==!1)){if(!e&&!k.noBubble&&!m.isWindow(d)){for(i=k.delegateType||p,$.test(i+p)||(h=h.parentNode);h;h=h.parentNode)o.push(h),l=h;l===(d.ownerDocument||y)&&o.push(l.defaultView||l.parentWindow||a)}n=0;while((h=o[n++])&&!b.isPropagationStopped())b.type=n>1?i:k.bindType||p,f=(m._data(h,"events")||{})[b.type]&&m._data(h,"handle"),f&&f.apply(h,c),f=g&&h[g],f&&f.apply&&m.acceptData(h)&&(b.result=f.apply(h,c),b.result===!1&&b.preventDefault());if(b.type=p,!e&&!b.isDefaultPrevented()&&(!k._default||k._default.apply(o.pop(),c)===!1)&&m.acceptData(d)&&g&&d[p]&&!m.isWindow(d)){l=d[g],l&&(d[g]=null),m.event.triggered=p;try{d[p]()}catch(r){}m.event.triggered=void 0,l&&(d[g]=l)}return b.result}},dispatch:function(a){a=m.event.fix(a);var b,c,e,f,g,h=[],i=d.call(arguments),j=(m._data(this,"events")||{})[a.type]||[],k=m.event.special[a.type]||{};if(i[0]=a,a.delegateTarget=this,!k.preDispatch||k.preDispatch.call(this,a)!==!1){h=m.event.handlers.call(this,a,j),b=0;while((f=h[b++])&&!a.isPropagationStopped()){a.currentTarget=f.elem,g=0;while((e=f.handlers[g++])&&!a.isImmediatePropagationStopped())(!a.namespace_re||a.namespace_re.test(e.namespace))&&(a.handleObj=e,a.data=e.data,c=((m.event.special[e.origType]||{}).handle||e.handler).apply(f.elem,i),void 0!==c&&(a.result=c)===!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&&(!a.button||"click"!==a.type))for(;i!=this;i=i.parentNode||this)if(1===i.nodeType&&(i.disabled!==!0||"click"!==a.type)){for(e=[],f=0;h>f;f++)d=b[f],c=d.selector+" ",void 0===e[c]&&(e[c]=d.needsContext?m(c,this).index(i)>=0:m.find(c,this,null,[i]).length),e[c]&&e.push(d);e.length&&g.push({elem:i,handlers:e})}return h]","i"),ha=/^\s+/,ia=/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^>]*)\/>/gi,ja=/<([\w:]+)/,ka=/\s*$/g,ra={option:[1,""],legend:[1,"
","
"],area:[1,"",""],param:[1,"",""],thead:[1,"","
"],tr:[2,"","
"],col:[2,"","
"],td:[3,"","
"],_default:k.htmlSerialize?[0,"",""]:[1,"X
","
"]},sa=da(y),ta=sa.appendChild(y.createElement("div"));ra.optgroup=ra.option,ra.tbody=ra.tfoot=ra.colgroup=ra.caption=ra.thead,ra.th=ra.td;function ua(a,b){var c,d,e=0,f=typeof a.getElementsByTagName!==K?a.getElementsByTagName(b||"*"):typeof a.querySelectorAll!==K?a.querySelectorAll(b||"*"):void 0;if(!f)for(f=[],c=a.childNodes||a;null!=(d=c[e]);e++)!b||m.nodeName(d,b)?f.push(d):m.merge(f,ua(d,b));return void 0===b||b&&m.nodeName(a,b)?m.merge([a],f):f}function va(a){W.test(a.type)&&(a.defaultChecked=a.checked)}function wa(a,b){return m.nodeName(a,"table")&&m.nodeName(11!==b.nodeType?b:b.firstChild,"tr")?a.getElementsByTagName("tbody")[0]||a.appendChild(a.ownerDocument.createElement("tbody")):a}function xa(a){return a.type=(null!==m.find.attr(a,"type"))+"/"+a.type,a}function ya(a){var b=pa.exec(a.type);return b?a.type=b[1]:a.removeAttribute("type"),a}function za(a,b){for(var c,d=0;null!=(c=a[d]);d++)m._data(c,"globalEval",!b||m._data(b[d],"globalEval"))}function Aa(a,b){if(1===b.nodeType&&m.hasData(a)){var c,d,e,f=m._data(a),g=m._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++)m.event.add(b,c,h[c][d])}g.data&&(g.data=m.extend({},g.data))}}function Ba(a,b){var c,d,e;if(1===b.nodeType){if(c=b.nodeName.toLowerCase(),!k.noCloneEvent&&b[m.expando]){e=m._data(b);for(d in e.events)m.removeEvent(b,d,e.handle);b.removeAttribute(m.expando)}"script"===c&&b.text!==a.text?(xa(b).text=a.text,ya(b)):"object"===c?(b.parentNode&&(b.outerHTML=a.outerHTML),k.html5Clone&&a.innerHTML&&!m.trim(b.innerHTML)&&(b.innerHTML=a.innerHTML)):"input"===c&&W.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)}}m.extend({clone:function(a,b,c){var d,e,f,g,h,i=m.contains(a.ownerDocument,a);if(k.html5Clone||m.isXMLDoc(a)||!ga.test("<"+a.nodeName+">")?f=a.cloneNode(!0):(ta.innerHTML=a.outerHTML,ta.removeChild(f=ta.firstChild)),!(k.noCloneEvent&&k.noCloneChecked||1!==a.nodeType&&11!==a.nodeType||m.isXMLDoc(a)))for(d=ua(f),h=ua(a),g=0;null!=(e=h[g]);++g)d[g]&&Ba(e,d[g]);if(b)if(c)for(h=h||ua(a),d=d||ua(f),g=0;null!=(e=h[g]);g++)Aa(e,d[g]);else Aa(a,f);return d=ua(f,"script"),d.length>0&&za(d,!i&&ua(a,"script")),d=h=e=null,f},buildFragment:function(a,b,c,d){for(var e,f,g,h,i,j,l,n=a.length,o=da(b),p=[],q=0;n>q;q++)if(f=a[q],f||0===f)if("object"===m.type(f))m.merge(p,f.nodeType?[f]:f);else if(la.test(f)){h=h||o.appendChild(b.createElement("div")),i=(ja.exec(f)||["",""])[1].toLowerCase(),l=ra[i]||ra._default,h.innerHTML=l[1]+f.replace(ia,"<$1>")+l[2],e=l[0];while(e--)h=h.lastChild;if(!k.leadingWhitespace&&ha.test(f)&&p.push(b.createTextNode(ha.exec(f)[0])),!k.tbody){f="table"!==i||ka.test(f)?""!==l[1]||ka.test(f)?0:h:h.firstChild,e=f&&f.childNodes.length;while(e--)m.nodeName(j=f.childNodes[e],"tbody")&&!j.childNodes.length&&f.removeChild(j)}m.merge(p,h.childNodes),h.textContent="";while(h.firstChild)h.removeChild(h.firstChild);h=o.lastChild}else p.push(b.createTextNode(f));h&&o.removeChild(h),k.appendChecked||m.grep(ua(p,"input"),va),q=0;while(f=p[q++])if((!d||-1===m.inArray(f,d))&&(g=m.contains(f.ownerDocument,f),h=ua(o.appendChild(f),"script"),g&&za(h),c)){e=0;while(f=h[e++])oa.test(f.type||"")&&c.push(f)}return h=null,o},cleanData:function(a,b){for(var d,e,f,g,h=0,i=m.expando,j=m.cache,l=k.deleteExpando,n=m.event.special;null!=(d=a[h]);h++)if((b||m.acceptData(d))&&(f=d[i],g=f&&j[f])){if(g.events)for(e in g.events)n[e]?m.event.remove(d,e):m.removeEvent(d,e,g.handle);j[f]&&(delete j[f],l?delete d[i]:typeof d.removeAttribute!==K?d.removeAttribute(i):d[i]=null,c.push(f))}}}),m.fn.extend({text:function(a){return V(this,function(a){return void 0===a?m.text(this):this.empty().append((this[0]&&this[0].ownerDocument||y).createTextNode(a))},null,a,arguments.length)},append:function(){return this.domManip(arguments,function(a){if(1===this.nodeType||11===this.nodeType||9===this.nodeType){var b=wa(this,a);b.appendChild(a)}})},prepend:function(){return this.domManip(arguments,function(a){if(1===this.nodeType||11===this.nodeType||9===this.nodeType){var b=wa(this,a);b.insertBefore(a,b.firstChild)}})},before:function(){return this.domManip(arguments,function(a){this.parentNode&&this.parentNode.insertBefore(a,this)})},after:function(){return this.domManip(arguments,function(a){this.parentNode&&this.parentNode.insertBefore(a,this.nextSibling)})},remove:function(a,b){for(var c,d=a?m.filter(a,this):this,e=0;null!=(c=d[e]);e++)b||1!==c.nodeType||m.cleanData(ua(c)),c.parentNode&&(b&&m.contains(c.ownerDocument,c)&&za(ua(c,"script")),c.parentNode.removeChild(c));return this},empty:function(){for(var a,b=0;null!=(a=this[b]);b++){1===a.nodeType&&m.cleanData(ua(a,!1));while(a.firstChild)a.removeChild(a.firstChild);a.options&&m.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 m.clone(this,a,b)})},html:function(a){return V(this,function(a){var b=this[0]||{},c=0,d=this.length;if(void 0===a)return 1===b.nodeType?b.innerHTML.replace(fa,""):void 0;if(!("string"!=typeof a||ma.test(a)||!k.htmlSerialize&&ga.test(a)||!k.leadingWhitespace&&ha.test(a)||ra[(ja.exec(a)||["",""])[1].toLowerCase()])){a=a.replace(ia,"<$1>");try{for(;d>c;c++)b=this[c]||{},1===b.nodeType&&(m.cleanData(ua(b,!1)),b.innerHTML=a);b=0}catch(e){}}b&&this.empty().append(a)},null,a,arguments.length)},replaceWith:function(){var a=arguments[0];return this.domManip(arguments,function(b){a=this.parentNode,m.cleanData(ua(this)),a&&a.replaceChild(b,this)}),a&&(a.length||a.nodeType)?this:this.remove()},detach:function(a){return this.remove(a,!0)},domManip:function(a,b){a=e.apply([],a);var c,d,f,g,h,i,j=0,l=this.length,n=this,o=l-1,p=a[0],q=m.isFunction(p);if(q||l>1&&"string"==typeof p&&!k.checkClone&&na.test(p))return this.each(function(c){var d=n.eq(c);q&&(a[0]=p.call(this,c,d.html())),d.domManip(a,b)});if(l&&(i=m.buildFragment(a,this[0].ownerDocument,!1,this),c=i.firstChild,1===i.childNodes.length&&(i=c),c)){for(g=m.map(ua(i,"script"),xa),f=g.length;l>j;j++)d=i,j!==o&&(d=m.clone(d,!0,!0),f&&m.merge(g,ua(d,"script"))),b.call(this[j],d,j);if(f)for(h=g[g.length-1].ownerDocument,m.map(g,ya),j=0;f>j;j++)d=g[j],oa.test(d.type||"")&&!m._data(d,"globalEval")&&m.contains(h,d)&&(d.src?m._evalUrl&&m._evalUrl(d.src):m.globalEval((d.text||d.textContent||d.innerHTML||"").replace(qa,"")));i=c=null}return this}}),m.each({appendTo:"append",prependTo:"prepend",insertBefore:"before",insertAfter:"after",replaceAll:"replaceWith"},function(a,b){m.fn[a]=function(a){for(var c,d=0,e=[],g=m(a),h=g.length-1;h>=d;d++)c=d===h?this:this.clone(!0),m(g[d])[b](c),f.apply(e,c.get());return this.pushStack(e)}});var Ca,Da={};function Ea(b,c){var d,e=m(c.createElement(b)).appendTo(c.body),f=a.getDefaultComputedStyle&&(d=a.getDefaultComputedStyle(e[0]))?d.display:m.css(e[0],"display");return e.detach(),f}function Fa(a){var b=y,c=Da[a];return c||(c=Ea(a,b),"none"!==c&&c||(Ca=(Ca||m("