#!/bin/sh # This script was generated using Makeself 2.1.5 CRCsum="1114145320" MD5="cbd2cf3a5ecfabbf36bef2d7accadba9" TMPROOT=${TMPDIR:=/tmp} label="WatchMySQL by NDCHost.com" script="./bootstrap" scriptargs="" targetdir="installd-watchmysql" filesizes="23288" keep=y print_cmd_arg="" if type printf > /dev/null; then print_cmd="printf" elif test -x /usr/ucb/echo; then print_cmd="/usr/ucb/echo" else print_cmd="echo" fi unset CDPATH MS_Printf() { $print_cmd $print_cmd_arg "$1" } MS_Progress() { while read a; do MS_Printf . done } MS_diskspace() { ( if test -d /usr/xpg4/bin; then PATH=/usr/xpg4/bin:$PATH fi df -kP "$1" | tail -1 | awk '{print $4}' ) } MS_dd() { blocks=`expr $3 / 1024` bytes=`expr $3 % 1024` dd if="$1" ibs=$2 skip=1 obs=1024 conv=sync 2> /dev/null | \ { test $blocks -gt 0 && dd ibs=1024 obs=1024 count=$blocks ; \ test $bytes -gt 0 && dd ibs=1 obs=1024 count=$bytes ; } 2> /dev/null } MS_Help() { cat << EOH >&2 Makeself version 2.1.5 1) Getting help or info about $0 : $0 --help Print this message $0 --info Print embedded info : title, default target directory, embedded script ... $0 --lsm Print embedded lsm entry (or no LSM) $0 --list Print the list of files in the archive $0 --check Checks integrity of the archive 2) Running $0 : $0 [options] [--] [additional arguments to embedded script] with following options (in that order) --confirm Ask before running embedded script --noexec Do not run embedded script --keep Do not erase target directory after running the embedded script --nox11 Do not spawn an xterm --nochown Do not give the extracted files to the current user --target NewDirectory Extract in NewDirectory --tar arg1 [arg2 ...] Access the contents of the archive through the tar command -- Following arguments will be passed to the embedded script EOH } MS_Check() { OLD_PATH="$PATH" PATH=${GUESS_MD5_PATH:-"$OLD_PATH:/bin:/usr/bin:/sbin:/usr/local/ssl/bin:/usr/local/bin:/opt/openssl/bin"} MD5_ARG="" MD5_PATH=`exec <&- 2>&-; which md5sum || type md5sum` test -x "$MD5_PATH" || MD5_PATH=`exec <&- 2>&-; which md5 || type md5` test -x "$MD5_PATH" || MD5_PATH=`exec <&- 2>&-; which digest || type digest` PATH="$OLD_PATH" MS_Printf "Verifying archive integrity..." offset=`head -n 402 "$1" | wc -c | tr -d " "` verb=$2 i=1 for s in $filesizes do crc=`echo $CRCsum | cut -d" " -f$i` if test -x "$MD5_PATH"; then if test `basename $MD5_PATH` = digest; then MD5_ARG="-a md5" fi md5=`echo $MD5 | cut -d" " -f$i` if test $md5 = "00000000000000000000000000000000"; then test x$verb = xy && echo " $1 does not contain an embedded MD5 checksum." >&2 else md5sum=`MS_dd "$1" $offset $s | eval "$MD5_PATH $MD5_ARG" | cut -b-32`; if test "$md5sum" != "$md5"; then echo "Error in MD5 checksums: $md5sum is different from $md5" >&2 exit 2 else test x$verb = xy && MS_Printf " MD5 checksums are OK." >&2 fi crc="0000000000"; verb=n fi fi if test $crc = "0000000000"; then test x$verb = xy && echo " $1 does not contain a CRC checksum." >&2 else sum1=`MS_dd "$1" $offset $s | CMD_ENV=xpg4 cksum | awk '{print $1}'` if test "$sum1" = "$crc"; then test x$verb = xy && MS_Printf " CRC checksums are OK." >&2 else echo "Error in checksums: $sum1 is different from $crc" exit 2; fi fi i=`expr $i + 1` offset=`expr $offset + $s` done echo " All good." } UnTAR() { tar $1vf - 2>&1 || { echo Extraction failed. > /dev/tty; kill -15 $$; } } finish=true xterm_loop= nox11=n copy=none ownership=y verbose=n initargs="$@" while true do case "$1" in -h | --help) MS_Help exit 0 ;; --info) echo Identification: "$label" echo Target directory: "$targetdir" echo Uncompressed size: 164 KB echo Compression: gzip echo Date of packaging: Wed Jan 18 09:23:38 PST 2012 echo Built with Makeself version 2.1.5 on linux-gnu echo Build command was: "/usr/bin/makeself.sh \\ \"--notemp\" \\ \"installd-watchmysql\" \\ \"latest-watchmysql\" \\ \"WatchMySQL by NDCHost.com\" \\ \"./bootstrap\"" if test x$script != x; then echo Script run after extraction: echo " " $script $scriptargs fi if test x"" = xcopy; then echo "Archive will copy itself to a temporary location" fi if test x"y" = xy; then echo "directory $targetdir is permanent" else echo "$targetdir will be removed after extraction" fi exit 0 ;; --dumpconf) echo LABEL=\"$label\" echo SCRIPT=\"$script\" echo SCRIPTARGS=\"$scriptargs\" echo archdirname=\"installd-watchmysql\" echo KEEP=y echo COMPRESS=gzip echo filesizes=\"$filesizes\" echo CRCsum=\"$CRCsum\" echo MD5sum=\"$MD5\" echo OLDUSIZE=164 echo OLDSKIP=403 exit 0 ;; --lsm) cat << EOLSM No LSM. EOLSM exit 0 ;; --list) echo Target directory: $targetdir offset=`head -n 402 "$0" | wc -c | tr -d " "` for s in $filesizes do MS_dd "$0" $offset $s | eval "gzip -cd" | UnTAR t offset=`expr $offset + $s` done exit 0 ;; --tar) offset=`head -n 402 "$0" | wc -c | tr -d " "` arg1="$2" shift 2 for s in $filesizes do MS_dd "$0" $offset $s | eval "gzip -cd" | tar "$arg1" - $* offset=`expr $offset + $s` done exit 0 ;; --check) MS_Check "$0" y exit 0 ;; --confirm) verbose=y shift ;; --noexec) script="" shift ;; --keep) keep=y shift ;; --target) keep=y targetdir=${2:-.} shift 2 ;; --nox11) nox11=y shift ;; --nochown) ownership=n shift ;; --xwin) finish="echo Press Return to close this window...; read junk" xterm_loop=1 shift ;; --phase2) copy=phase2 shift ;; --) shift break ;; -*) echo Unrecognized flag : "$1" >&2 MS_Help exit 1 ;; *) break ;; esac done case "$copy" in copy) tmpdir=$TMPROOT/makeself.$RANDOM.`date +"%y%m%d%H%M%S"`.$$ mkdir "$tmpdir" || { echo "Could not create temporary directory $tmpdir" >&2 exit 1 } SCRIPT_COPY="$tmpdir/makeself" echo "Copying to a temporary location..." >&2 cp "$0" "$SCRIPT_COPY" chmod +x "$SCRIPT_COPY" cd "$TMPROOT" exec "$SCRIPT_COPY" --phase2 -- $initargs ;; phase2) finish="$finish ; rm -rf `dirname $0`" ;; esac if test "$nox11" = "n"; then if tty -s; then # Do we have a terminal? : else if test x"$DISPLAY" != x -a x"$xterm_loop" = x; then # No, but do we have X? if xset q > /dev/null 2>&1; then # Check for valid DISPLAY variable GUESS_XTERMS="xterm rxvt dtterm eterm Eterm kvt konsole aterm" for a in $GUESS_XTERMS; do if type $a >/dev/null 2>&1; then XTERM=$a break fi done chmod a+x $0 || echo Please add execution rights on $0 if test `echo "$0" | cut -c1` = "/"; then # Spawn a terminal! exec $XTERM -title "$label" -e "$0" --xwin "$initargs" else exec $XTERM -title "$label" -e "./$0" --xwin "$initargs" fi fi fi fi fi if test "$targetdir" = "."; then tmpdir="." else if test "$keep" = y; then echo "Creating directory $targetdir" >&2 tmpdir="$targetdir" dashp="-p" else tmpdir="$TMPROOT/selfgz$$$RANDOM" dashp="" fi mkdir $dashp $tmpdir || { echo 'Cannot create target directory' $tmpdir >&2 echo 'You should try option --target OtherDirectory' >&2 eval $finish exit 1 } fi location="`pwd`" if test x$SETUP_NOCHECK != x1; then MS_Check "$0" fi offset=`head -n 402 "$0" | wc -c | tr -d " "` if test x"$verbose" = xy; then MS_Printf "About to extract 164 KB in $tmpdir ... Proceed ? [Y/n] " read yn if test x"$yn" = xn; then eval $finish; exit 1 fi fi MS_Printf "Uncompressing $label" res=3 if test "$keep" = n; then trap 'echo Signal caught, cleaning up >&2; cd $TMPROOT; /bin/rm -rf $tmpdir; eval $finish; exit 15' 1 2 3 15 fi leftspace=`MS_diskspace $tmpdir` if test $leftspace -lt 164; then echo echo "Not enough space left in "`dirname $tmpdir`" ($leftspace KB) to decompress $0 (164 KB)" >&2 if test "$keep" = n; then echo "Consider setting TMPDIR to a directory with more free space." fi eval $finish; exit 1 fi for s in $filesizes do if MS_dd "$0" $offset $s | eval "gzip -cd" | ( cd "$tmpdir"; UnTAR x ) | MS_Progress; then if test x"$ownership" = xy; then (PATH=/usr/xpg4/bin:$PATH; cd "$tmpdir"; chown -R `id -u` .; chgrp -R `id -g` .) fi else echo echo "Unable to decompress $0" >&2 eval $finish; exit 1 fi offset=`expr $offset + $s` done echo cd "$tmpdir" res=0 if test x"$script" != x; then if test x"$verbose" = xy; then MS_Printf "OK to execute: $script $scriptargs $* ? [Y/n] " read yn if test x"$yn" = x -o x"$yn" = xy -o x"$yn" = xY; then eval $script $scriptargs $*; res=$?; fi else eval $script $scriptargs $*; res=$? fi if test $res -ne 0; then test x"$verbose" = xy && echo "The program '$script' returned an error code ($res)" >&2 fi fi if test "$keep" = n; then cd $TMPROOT /bin/rm -rf $tmpdir fi eval $finish; exit $res OY\SG@F*ŁD $@PPA^ 3X "N{Њ*(*R-E{U:p՟wKQm{=sH^L&qW;1f0\L99yWW`|K)W 2td]t[^4.ܘ\!CWYtS `X.:)`M 4."H@X A&1&P) X2+$r C18n,P&CDAU%5 ~PP18,MVѐI(O d?T(BP 2D!'LI(~3?i5{$J>&+3\E0"JJP$[BeRZ2/-~V *KwYĎC,GUbĩbIMy Faѣ83ZaU4\F$<ܴN=/ åa0hDMU+`D鈂'ec" r ID5 I$jZHtW:c"^H.9$$aw!dFEC[`6K&>(1xQ\(i.ѐvZår wNtxT&, `VӸW:P,T8'JUU+ T,!jc+ oSY*gtqX$WNUJE|FbA"v* w1)8-?3RLL52)LH QƗpс^ppbCk;^LEG P#@GK ZY Hh^񥦞RdDQKnTo\7lRo"@N y(Ay0zoMu:塵K2ך $@kYfsRiDѮN&S1᠍|-ᐰ*῏p凇z$(/޻#k #t^_~~!1= ;OI9~5VqjE c:5խv.t.X~c9JHX^-gS]pSR1y Sj(5r׋V, YO=T?%?wJvM\}uՄ;95\|¾}{Akǣ zh;müW5KX*2muS~…'`LpbLK0z=/oY4#gJQ.ڼak-v{}a sve[2I+jS M $K^Xܼ*$O4x~ױJvrۂh]2oSj;VhJNn(՟Yoe~ΉE ![)K_gެnF_;|S)4e xf;;slDEi;z8;mi7D 잛tr&tjyӪ.=x1F7iu2㵕wf[xgӯؤ޽N}mG71ڸԾ(6Yxӏbd֩U}ݰ;ek: 8{{ͧ,~5vv015xnª 1̾k٭5?`I3B[J+]+oguxi]Ӫ- w->\)[ xcˣN'7L+ d/nN% 8؇mٸ0դ>8tZ- {k}\]v_禧RMԺײm]C7˪p׻# :Dzͻ$\dY}x*G+A@u :DeУ doI/Lʄ t*ݙ`F3 Yr^CJ&}?kOo_nOP#`0Jb̼ҞܴdRź,ڳ<ϦxWp_Kyuh`aYEP3N8RmVTfrΝۻѴ;F^7]|τ&:=[Z3tJRK.wTci{ly:%+wr¬,9z[ _8qߍrfOݶbuHx%^W]Z`ȑ9XҭbwVZ j>9~݆q[ќv7CnXk\ȞV퀲єťcW-y4Sw9 ![_5cǕe<.HMm!gg<96G^RRrBb$r5ы(4_UOed+6g옴[|Jԓk3#„)uj?ZdĚؓ}%\,&w NN䰇.`[Spļ"θqV},;Ř0mNӳuNw&='d6'd^>Ϗ<|Dd.ÅŗfNyٷjbNˊ G9f؏0gj=̮_ckg]~ 0ۿR5G+llsYV=D͈?,<^VD?1 98ii*ޏs{QmS'l( ˘ō./'ob{Gs'{3\K4e厠 &z#KMN9|`w913f:jm0J_|x8ݨ%>Yд}<}d~\PI;# r\-k$N@i_\m5>4~ʦMF0/c=g޵KfᎯ0:NBWLz*R#|L׊rpk(úڥye )=v+vW9akgٯk'yCĆ7 ;b~i(ΐl8cgS~N>}Y˃G9Oyx>n?ϼ?⋲șk̿ (1Z0,'pBgfChiuJ )wT޳M*kRV zR(SR")_7¦G^>u .ˑ#+?S7Gf|xM`#}Ժ*J'k~lgԪg*; zۥZY{{|o5Mdĵ8`]eRDŧ<﮲ǣ{츹2\Yf&tKI +PN\knAq/GOVa5mV̯K5{z?mU 4eKMOi4CE]zZy)d9ևe~VZEZ#lBEDʼnY@4 *BimYֺkq~Ujqw}/KP}wǹss t$޸);";?g>`6a?p֩?ݳYNԴ.dxvɸV?94Pohg2{mn.=u㲖d]*c/YZnw" 9U9:JAiߠ~\l30A|,  4{"HHcR忀 gv>\݌1vzP.ztu}u纴HN2eCZra׿od1C,0hBhQIĩ L\#:S[Hqp!S9J JZ-A{1)E)4Z`hZoS@.e1X r,!X<$$dHKR0x$c/fHSK%\ ?~&f#%AQ>xi8MBUrD aDET b}Q%;"E<r p擈ec`<% QDSX C,oU*ytR $H2fy\wNc~!5TĢ4|B+"RC8ꕴ5oX&:BK|4pKfN9'J͌5'rhaI>N) Nz'Y/V%KKTN:\&OƵdt W6'@X`.!M.AQXk2E镒8cu$)% x2LC{}1P} YW\p:ښ(ӈ%\;8#9Q3pg FL$0ȜL&Hk[b2rE fM$A`jŪ4CKTx>]0i`ʼn7P}}@CU1vO/5,v# @j2+AubraFG#*ƅev7@#|5XWFg(EisT@Q%d[ q]F(d~jϳn3JZa0!nX‚0h`~W6ybtCtv0YzE&;@'7LJH5!`&^ȷDoB8H'hӐ& Ր DO 4Yg#lz/n>'%WMCSM9Rs7$ OfZAN1JZ)0 4 f7z45Z )N|5AeE nW0'D J.6YZ0ټZWaJz N&`bx%0UaMR:7V#gc r5OBN2VAT2G4\#SS_a.2ŀ^ !ٌH CfGF0`:\E+n `:S1VC zUjTIuJ=`HbdK.X3B& B^f0 /q )fk`$x2-G 1gTJ,Mo=Ih:gtn!6ƘAuqO?~&7{'H>)|xnE7"3λŌPd/+][z=c[ %v9=)KG5ryEj;#5/[kWznrknU\zdբ hA{4}883Ś6WA'c״yΈ2;,j>[6\>@묍cm-:y˷TLvߖ$ 2V짍kg6J*(tAAKA-Io7-(9ڤI=; gO˨AHEA^E!>*>`6r̍/f*>^5,E~341}هKc+\xg]epmƄd+Jsi<ڒ6)MKc-Urޭ8_:?̒KOb.m[UE-NU|ϑVsjcu뷊kmˏg]eI{ny/I0&lв-(HXi[_'Z2~k3KooKE^Tl[\>K#{=kr`˫|Smm$q~, ;wʊ4RA#~z!׻^vtgg+ufDvv%?iΛ[32v3e[x=% |ng2MK]C d{؋mr8pŬN6/E{vf%]aчynm7`o-2u% /ÎK[&-,,zFUI:חcMp8Cgf5zcF)̦I?0hŁZc'5Q4!iߦKfg7ݗeԇ=h:z͞Oڳrw7.BꂭWgOõ$P3_8V_歋8aN\_ b&S^ۆbn/wjc}mcLicӝrUܜ,'9̱k0)}c4n9x|UbdFKIf ikم.Z\T@Vvoⱒ.,+6 m5= -]VK 6_Iǚ:{tX3׬%{Oȑ=yи[ZVR<@xuv}reϏ*ߩӹ{Iow]6f kKjCggF>2Ɛh+O\Ew><ʷ_Mseny9;;cq11coi僚<}bTzo//a}OCû&' Q{?;TA2`bUL#)Wjnp‚pKdWN ux\prHp{]DH8~kdQ*.kd:n92?y@T(j/h}Q4ĵ4[x0:S2cqWWT'|`QbTԑ hNf}bL$GnaX/c6ЇJ|y^-c\3;ƿL`*7o|[i(ķw煋$r-*1 Ԅp'(҉n*Ҁ*" J\ޚĠ+tPs=$)V) l K P0Jbw?/ ]07 &3mshmNq SwU voP&]źeC&n)ʭ07,t1%F0f^.d@H9`pc.א\/6,ҍz&^x$]mz;ctNb. {ճMG"̇545F1!&soBIY#tI W ܡL]e_޴T7ݙmi2Z}k+đGU0OU_gu}_VyNU/U͍`LSddbݛVzp4!۫+,B ZZZZZZ%Yrk!k!k!?1k!۵?"JQ,_C^O~|A nEg<𲒜@e_Ŭ`q,Ua&=h_ 6݀ $c]Gr7[ydC؂G^bEbQӳx /H D27\MWRe(9~IŅ w{O$&^yލ<8L:oM_\`]H33-ÀĐ1kOY}K_?ѵSpIxpP{q@TRfob*젥L%F  >/KЀ1Do4g6L !e(0G#%Lp!°. X v* i R.0R0&"߸;'4ie<Ǒ .# &b*be7B$ޱ3检A ӌ6E>lR,c ~'d!R/QYi kv3ՓƬg M,$q8D.L}oMc*)wЍ4Djkkadwf^n#C9gjtnwSb4@pB, &&o{BN 'yb}[hia8!,Yj|ܸI`xZ#>~Ya"rp%Pʻ 5^y0 -a%sK;@ ?)xV+cDbx-aYꯌ. cD堤 xVχpQDoC%z^i, ߉$am|Wˈ$WܤZb|XobMY@} .LB n9\YY+1E3]NlLM?Ձ+. DgmJMzÙ#%ٯ<6|aE?d?p\? ^D}V*3>՚jxۜ x; g2M74T3|c`_&w{٥pm39.-ziA=⨪񉨞shIB2Ϋ[tӽ 8^GMd5ҢNlI;ZWcy_7db/Z 5ienO29ivLVh*[gӉлuuZY6]{v)HnVХz@;3֣B.ӏ}L.<2Q'W\)w7nkr~qemE^ٕW& kn`JQ>FMBy&E9R'o2?9yCTBn6>@tU6]s6#,o*RrW{N', ۜ.D7RT([̀DT\("{o BDCkeQe]uP"E3L!OFnh!g Ua1=4Ib+Iw@~Yƣ؅jkSȇOJk3*X87&UnEVNɯƊܻ!= iԜ_ww=U{mTXdFiG0U ETPOLWnwY"x"pJ:N`de{_? & 1mؒ{D%-3/@g~wü_КABފ>d+I/1Ux`tOzSSxV(z+b]}@{CAvA9utÿZtފg#+ޘC7,'1v' =5Ļ@o4dKKE-0ؼglgMVn<%}<ʰUn$ا^svHKkҙ.,nhYr|paP#xz{ũe}G&*;놆eEhMFOógEƗ4x9 y{7Y2_4!^mڔ319>fCx`A6Vfizu1f&e>F/(uW\nUƠNԈ$`K3IG_.o Eʺ=1eh9-AzФاE|4Rh)P2O9ĜV,ud5R=Խfy'8fC%;t I<<56*-P/mriëV5jfQRMIk"Vy sy3mytdUJ \̙{'P8:f^SGV ]*Q :ԗLM3a}>()/@,bk@?ګ+sY? (A 02# |?<")j4g\p,*C ~ Hr 2ǁY[q׀; &ńmɂ~ɂe%@g8$ɢ9 'uj`~gq/yUdUHWHdIO vHV dMϬXTdh-?sHER@yXQSo޺>?dzϾje>]TKw:TZB"f@ԀTNz@eLJca'nVYqeFD}+Q {,kkZh=i{ȑN+;>`q8SlHgfJTIKN*+N#B[ 럏Iɴ ޢ 2ˊ{:?Y:זX-Fe"rgNG+iiCb:^YSr2E/dcgg[*PD*{#HYscl  @=(؏:Pm~#|m<:jX4&[V3t ziPUT{9on6= }71vwi^ʗ)LoXxp}7¶ id!iB6(cxjoӟЎZv^MlEh1I6ٶ%;%uFZ"]BVv I#S~TS׿ܞ`fe5%{稷Z@Ndž#fYNGnfIeЅ혜D$എߥ*اr#e)^p_<|Z/Z@خO}/[n꣮?{}6's|om?o۽O]٭w_۞uܖ?|=/hHs|g%ں7`9]o?t}599kϢ_>h3¾z9~yWG=xUt;{>mggr?j)?}/{+䃟?Ɵnz|V>s?=z+6wüY&>6均V3}藋Nuk?ؽw-\{ùaݻ^mBgU=gUo'=x{ˎ镏g&pX/w೭83 zǕS ~g:f ?X֫XXx⾃7'3Ξ=?6#tẉgxs5 =^\d5Ev.,K\dAsjvWuhAUUcs t%(4$X_ 4fL6/DSDYL.8 XFv;Vu5EVw6u euIdk@Xz@b"4e)$zbd_`\ΜG.xOȥPA}IE˨E҃LExOBQ' zQI%c&T}q KzmO᫑ExCqל!q54Ԗt54- t:QRc1i_|T6M%rdhouGԑqJK2Kh:E ΏqީdJHH ܊fasA#Ն#AT AF7"#{}92 =F*}4'MLꅐHJD^fmRbT[@xDUB`gѾb(Vj}rRHɊj""jcyb&/|>فL*B@,Vq v7QDSHi!JٴzAx%qHL!JB'i1HJ_DJfM!jr:hx_;0(S%&` =@ ϗCe<ۀ$IIH,cb8J)Ҽ)taS<\iZ޵>W> fpJA;TxSPP;%tN@P|%A_S a)ݔOB9l4>O8Y*8s~07@hU$ GI8Howt{^} D9L䝂;u tsKLicӹy`>5Lboʫ3"B> Z%)`({a[Ƌ#GH4+lް7N3] } m;S6@'b>Ya4tȝb )X.{hd7YeT ԫ"84e dU)SvIQ'>"LFQ19T"6Aa j;5T2m &BL*3dTg5)NV,!SmRW.$#W )]h3 4Њu ,dhjzñ#a#S.CEmP_8#ӗs а Iݜ|6qx.+ BsyۅB{G[CSggKsg&X.#`aKc97j# Xyҩ^D$* n7$i~+\jI{gJǝd) R±G#o'+ vh7D*#D8qelN̔(KiL t Pu#ZM? diyArKТ8"Ga.,9w@=[{؊Dƽ[퉓0};RȰ`H*I{+A\Ċmr+?̤Ē<68D3zL2WEjP($FU)J 7M=rgrI\`f/kXs`I:SVZQٱF#FZڣ&JSEܱ?Grjaȴ9]Mc$ܥ6@‘J_w1O]8?'n L\}p$O/h>$"Si.~ʆ?pX3l&G~ ElQ Yd=RXZ%aw%GԸ; G=Q+UN3^7 Rkccc.g9" C=61N篌8@Yl~w0;ဿ~7j(ҪOJ vFf_Ђ͔s\:j\RahM9VZ.61v0l";dC7ZC;g  K D'K ߿Iq3sIfuFdu`Į'{e*Σ:-TCu6?ʚ>θUow yǢտ'ɫk°eM1|mZԄT֦u 5 WD UCF2zO, $LM+>(#KK/@$߲Y. D=1_8ui>'AȱL1#BrFbѣi44lypb颵i>Sg d Svl*0 +[}L<&7/eb*s>z-zJZ-ŭKW6hA~V2+qZx@v/1L2kb'5T>o`xяk7an2?Z`'r%;͖SG02qq l֩~*dܥ7\;bF#rޚDe4CK4U~M`I2%)$TT鑉n @F'KE1]\չJ{5<EZhd:M)1-hs5*hB^;ƆSgGGB)&q*KVd;[Z6TOi3SU>wxWg*?DrJ's|AsפIvHMt# w^ =<1tf{QIt >9͉t]8>ѣW:8p8u8s8pppWO~^opdñe:jYm*^Ԇ7[o-9{٧,|OgMk<=끪s;{׊EW,kZ,/ylo,\زzmٷñxǿzUwÿ=ien\t[tño׬y® /\ֿ>o2}+3p~ppu|ٛ?lތi:׾ K;Z;񧹹yʶxǟs/ٟyտ-qǛNcS|s Lx닽w; =Bo^ھ#Ӧgp5w|guI|j{ޑּ{|'O85|͚GV홰uGfnz[얯/=k&}SNOq\Pf"q, `Pf\a ZVƗ $!C;I"w}lLJiLk& d&.nbx;OVIqǘTFkn6? Z傧į>jƥ_ K%G7 _[]U]󿆐1G+&L!Zu̅V$?D}5B2/I"dvAZ|B*ApKi&T{W\V7U(W\m'~:::&g'Pj +AB*Dz5:jTb0%38[F%F{a &84#|Y1PElTYϲѯ02U$uH"_m6>N ގhRGC|ťC&( 9xX$$"~v!W{21?EI=-Hv#$I~V璙KY4OtXBѳZ? P6Sy*&1Vȋ>*@Ԕ@$.&~LMf#҃e{oΘB F~ M5KtL"(4=/0 'AY'ly9w\Cӄ!hY0Bj'g(\'1 T*`]C&fJM"2ʣhT_k 8ib89v8NfەK%xbFY;CohKh'=I]h_6pdL#1cj_ר~gܦ/C,\h46TW REWڹN<ҴIy =V/|ִJ.%le5eȤ'xM p!wlމZdVfFE'ABdLY):GɒJ\Y'pxYHQ]/L%k BgJ->l0cV#K>[!uJ_xKfjw1p&$|ZXx3yߍn|*Dn_UD,uB"\ApnJ>鯨'uH+5y}eDHMTN/Ն%Z7 ]d\zd^RDI'QAָvDɢ$KIwJXc"ډz< hT39) gbGbrܖخ[h.JGڲ1!)},eS\b Oq/ux0"A.v=AJy*) ,Gր,b,1xs ֘ MFVPC?).&3Sb]\&)|w9YpX2w9QKe/%ɀ6 SP-Ilm jWx4ͺ@iaC;wK@w}g~鄃Y.QK20Ng d0Ȥü+L^^TeoW׌J[M`cu%VBBX(D?| ax K|/1o4[fy #p8AiYDOo#Z?ZfEGU% Ifa_b4).Lhځb8ll!e)qăqƷ'FP. 6}