Файловый менеджер - Редактировать - /home/latest
Назад
#!/bin/bash # This script was generated using Makeself 2.1.3 INSTALLER_VERSION=v00172 REVISION=d5a7dd73dab22602bb395930b65463ace75e8860 if [ "x$BASH_VERSION" = "x" -a "x$INSTALLER_LOOP_BASH" = "x" ]; then if [ -x /bin/bash ]; then export INSTALLER_LOOP_BASH=1 exec /bin/bash -- $0 $* else echo "bash must be installed at /bin/bash before proceeding!" exit 1 fi fi CRCsum="993939464" MD5="766a615cce4885bffaeb516cd2a60662" TMPROOT=${TMPDIR:=/home/cPanelInstall} label="cPanel & WHM Installer" script="./bootstrap" scriptargs="" targetdir="installd" filesizes="60088" keep=n # Set this globally for anywhere in this script if [ -e /etc/debian_version ]; then IS_UBUNTU=1 export DEBIAN_FRONTEND=noninteractive fi # Workaround busted default perl environment on Cent9 variants if [ -x /usr/bin/yum ]; then # install system perl if needed ( [ -x /usr/bin/perl ] && rpm -q perl >/dev/null 2>&1 ) || ( echo "Installing perl package"; /usr/bin/yum -y install perl ) # reinstall perl (metapackage) ( /usr/bin/perl -MFindBin -e1 >/dev/null 2>&1 ) || ( echo "Reinstalling perl package"; /usr/bin/yum -y reinstall perl ) fi 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 if ! type "tar" > /dev/null; then if [ ]; then apt -y install tar elif [ -x /usr/bin/yum ]; then /usr/bin/yum -y install tar fi fi if ! type "tar" > /dev/null; then echo "tar must be installed before proceeding!" exit 1; fi MS_Printf() { $print_cmd $print_cmd_arg "$1" } MS_Progress() { while read a; do MS_Printf . done } 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.3 1) Getting help or info about $0 : $0 --help Print this message $0 --info Print embedded info : title, default target directory, embedded script ... $0 --version Display the installer version $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 --force Force to install cPanel on a non recommended configuration --skip-cloudlinux Skip the automatic convert to CloudLinux even if licensed --skip-imunifyav Skip the automatic installation of ImunifyAV (free) --skip-imunify360 Skip the automatic installation of Imunify360 (free) --skip-all-imunify Skip the automatic installation of all Imunify offerings --skip-wptoolkit Skip the automatic installation of WordPress Toolkit --skipapache Skip the Apache installation process --skipreposetup Skip the installation of EasyApache 4 YUM repos Useful if you have custom EasyApache repos --experimental-os=X Tells the installer and cPanel to assume the distribution is a known supported one when it is not. Use of this feature is not recommended or supported; example: --experimental-os=centos-7.4 --tier: Named tier or cPanel version you specifically want to install. example: --tier='stable' or --tier='11.110' or --tier='11.115.9999.0' --source: Source to download cPanel from. Defaults to 'httpupdate.cpanel.net'. example: --source='next.cpanel.net' (for public testing builds). --myip=URL Setup myip url in /etc/cpsources.conf --no-reboot Prevent the installer from automatically rebooting -- 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_PATH=`exec 2>&-; which md5sum || type md5sum` MD5_PATH=${MD5_PATH:-`exec 2>&-; which md5 || type md5`} PATH=$OLD_PATH MS_Printf "Verifying archive integrity..." offset=`head -n 507 "$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 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 | "$MD5_PATH" | 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 | 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 ;; --version) echo "$INSTALLER_VERSION" exit 0 ;; --info) echo Installer Version: "$INSTALLER_VERSION" echo Installer Revision: "$REVISION" echo Identification: "$label" echo Target directory: "$targetdir" echo Uncompressed size: 260 KB echo Compression: gzip echo Date of packaging: Tue Dec 10 21:37:19 UTC 2024 echo Built with Makeself version 2.1.3 on linux-gnu echo Build command was: "utils/makeself installd latest cPanel & WHM Installer ./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"n" = 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\" echo KEEP=n echo COMPRESS=gzip echo filesizes=\"$filesizes\" echo CRCsum=\"$CRCsum\" echo MD5sum=\"$MD5\" echo OLDUSIZE=260 echo OLDSKIP=508 exit 0 ;; --lsm) cat << EOLSM No LSM. EOLSM exit 0 ;; --list) echo Target directory: $targetdir offset=`head -n 507 "$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 507 "$0" | wc -c | tr -d " "` arg1="$2" if ! shift 2; then MS_Help exit 1 fi 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:-.} if ! shift 2; then MS_Help exit 1 fi ;; --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 ;; --force) scriptargs="$scriptargs $1" shift ;; --skip-cloudlinux) scriptargs="$scriptargs $1" shift ;; --skip-imunifyav) scriptargs="$scriptargs $1" shift ;; --skip-imunify360) scriptargs="$scriptargs $1" shift ;; --skip-all-imunify) scriptargs="$scriptargs $1" shift ;; --skip-wptoolkit) scriptargs="$scriptargs $1" shift ;; --skip-apache | --skipapache) scriptargs="$scriptargs $1" shift ;; --skip-license-check | --skiplicensecheck) scriptargs="$scriptargs $1" shift ;; --skip-repo-setup | --skipreposetup) scriptargs="$scriptargs $1" shift ;; --stop_at_update_now) scriptargs="$scriptargs $1" shift ;; --stop_after_update_now) scriptargs="$scriptargs $1" shift ;; --experimental-os=*) scriptargs="$scriptargs $1" shift ;; --tier=*) scriptargs="$scriptargs $1" shift ;; --source=*) scriptargs="$scriptargs $1" shift ;; --myip=*) scriptargs="$scriptargs $1" shift ;; --no-reboot) scriptargs="$scriptargs $1" shift ;; --) shift ;; -*) echo Unrecognized flag : "$1" >&2 MS_Help exit 1 ;; *) break ;; esac done case "$copy" in copy) SCRIPT_COPY="$TMPROOT/makeself$$" echo "Copying to a temporary location..." >&2 cp "$0" "$SCRIPT_COPY" chmod +x "$SCRIPT_COPY" cd "$TMPROOT" exec "$SCRIPT_COPY" --phase2 ;; phase2) finish="$finish ; rm -f $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" else tmpdir="$TMPROOT/selfgz$$" fi mkdir -p $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 507 "$0" | wc -c | tr -d " "` if test x"$verbose" = xy; then MS_Printf "About to extract 260 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 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 � ��Xg�<iw�F���_т���a�R�Y�d�(���x�YMc�q��e�o���� )[3Y{3��K,����꺻@3�c7f�?�JO����������'������m��hot����o�$Ql��= }���R��鳾�J��5t�V�C��ά�����4�k�L�G�����Ob��Ƭs�_g'͓�~ ��Ϟ�2���G<��6���6=?�$��n����W'�6g�7J��V�b��.��\��^ě��3�x��Gn&�7�iA�O��s�RI"8t�x�>��Ѓaю�:t\��Z^��{h]g|�x��I�\h��̌�d�� 3CN��"`�W�s��#��3*�=�uk�-�����#te��]֩?4�1 }/枭/�LkZfhM�[Iث �0⨥���`��y�Lj��|�3�ƴ:�i���W��mMm���� }�E�ߌ��泛V��|V�!v������i�$���Hf/v\f�����#?���3�0����@H����F�g�����k:��'FO�L�Q�K�~�l�3m���X��U���v�i;��3\�`��.�bH�����π��>��G܀A�l �֠�:����U��Әl����:�="[�Liwi��N��S���@G{���p�|�e��Qd�V�H��d�\H�|���{63�8�3sl:^aR�]C�%��G�ҟf���/�O܅�i%�:��7ק'�?�vV�XEw7��k�-QEcM1��!�k2���c*=9�����֖��<�v� q���xĸ#�yt�8�:�6&����y�x�]���%���vk� Xl����=`�%�-C% �Lj�JZAH�VG/�tT4���Q�X�JAt�����4R]��P���n �*3��k|����~������/6_ll������}+�}��M� 9��e���O��q��C߅|�� � T�(��x�)"vIg���f� �-��._~�_\��j ,ڝ����x��5��,a!"���ѩ��J�ɚ- �R9�8;��i����Yh�7�f 8I3N���s 7��{��C�d'VzoYUbk��,���_�Rl��!�9����������&)�c_h�U��m�NdAI�� ���Lw`��FE���{��hg�PU�7����:�0WC�$U�c�p˖��� ~����! 9N������=V=>���;9�_�g���E��cq.8����{0�Gf�C9����y� ��&�Fk�y+hu�U��9���WG�V�M�\�5���a*� �l�b6u��n2e�'��S�93�sȈ��<?fDE6C�ױY� ��Go8�t� �nw6~y�~RhNa���2i��l4�f���u�"��yO�-��q������l��l��8�r�` �yh�1��|���1(� *�}+Aό�y��������$sаgG�c�g�g�s �����8!G0l0�����͇�� n%G�'z|9�~u}zu��TP� �W�{��Ë�ӫ��A��A�ԘV���j6_��� .=O�-qj�w��vK��8�&6jB ��8�k|`��������ca�2�""7^� �p��A��M��ƍ��d�68�lw����z@�`(C�C?�(u�����Q���iE l_�|����':Aa YyE���#s����oH��֗���R�U>F#�J_H�E��C��=s�iYc��o6��4R> l3�8<�آ�=C��Jݸ���o�hʚ�&�&���'6̍?��]{r]������L����g�Ƕ!�l�+����3�]Ey�SН�qS}�~���N�v/�6��x��9�����8�j �X��$�G�������� 6R�`abA%8��`I�)R,���$�tj:^K�e ���L�~��#N y��w����.�ŭc���]��_0k�`�'~�ڂم1�x�`@�L�!�G�L��x���]�B�f�O�5�����?� ;���&|��}�OJN� ;L�E���?���B��O���]�����.� ���.���Ͼ?���L�r�������y�io���_|��o�`�s&�����.������~Ď1?�'nb ������+ �Ϻ��"2�k�钮<��n�,��f����۽r�96�{>����u�ig'�x��y��F���jkʠ��#�O���}�9cj���/?@�K8�$`~I,�#� R�+�W��dQD�Iy�7����� ��O���������B>2��m�������{��u��~` ����M7���N���b���Ҽ�@`MKF�/��aV�L� � At�r�쇃���#�J|]Y#n�>��tF�6��:��<�r)��2H�;|@,�l���xĨg�#yUt1�es�$7DB�05n�a2��Ĕ�y�$�hG�ف�}�?:>}�e:k�b��uq~�� �*:��K\WV`�-�߶�Ag�U�Y�R(�@�"Q��Ȼ���L6�]��id� ��@SL����P��<�(*�B� ����<� �U�D9:�d4B���� n��X~�� �l���� �k��ӑts�L��b�sB�e�6y��yMH�J\]yoh2�$�=�l� />�c�8XU 7�� QՐ\�)�v���9��+��2L*>� [�i4N�T{�~�fCc>�Dz�Y&�����h�^J�;�q��n�*లB���DU ͩ=��au�Ċ|d泩ILW���b ���a�A-*+x��J���u�<5����b= ��k� ש&���\&h����V�T�� �|�76�L%I�%ޘ�%�r�2e���Pa�Hj��({F����("�Q�[��YSͅ3�����)�K��_\�]@EE����j�v��t���w:���T��[�%�������=DY�Ej[�Ң=ռ�(�O��iw��$�J�y!����$'ܚ�c�>�n�Qž��BJ�L�vCs���3��欢�ti�dr�����l8�9P���ر��L��O3CA�Ѫ��F�&ս��+��Z�4m]�!�S�<�+��e��2����u�=����:�8���!�Dz���"�!���W�Q�y5��� �*�y۪���2���OiL� �3q�*���n�n�6_�ܽػ��+��mQ�"`ȁ����qY����`0�]r�c�$/��hKޓ� ���w�wbhWX $$��}I������닓f*z�܉!n���$%|v�mHg9���*����n�Ï�Vo)��r�:L��N��e�S֕��ۍ@��HC�9���F���%]�Ck�3Q�`���c�B�Bl�����,Z�voy��)��O���*+v�R��c�H4b��J�S���k��},��*^�ՒW�#���N�`R�J,���`�����Z3�1�~x/'*'� �T�f`��R��DM���CC�e&[١=J��x���hJ�F(5il�JOϮ�]�: �|Hx8GS0 MQ� ���f����I#�ub���*r�"���*XX!&-N~fo�.N 퍈U��8q��G���PHR�x�S�V�V<�O�[^�����x]z|s~K5��{;q`��A���E�l �_�Oْ���0��5>� �?�u�M�w ��.�� �^`�N� ������{���S���A��`������F�B��S*��=vn��@:�/�h��SR(���f /l�chJ� _w�2M�z��,K�]�ͷ}.�~b7P���O�vyy��?ާ�z���X�A��ḡ�E.��#�)Stf����M4�� �b�~��)�jP�i�!��HK��LK+����:���ua���H�H������!B��jU1_C �q�F�p+<���%7�(�������t�b� �":�����f��'�J�#��e ��"d�+~�4m�,���$eͦ��c�i�02o�2L��I�)ߋPsҜ�.�C��L/��U:��#8 []���gQb�����Ȭ<L���`��i�eO#��p�@��j�v�O }Z� j����AX�}�~�VB��._��33 b��Φ���Ne!�tn��gVN���ܷ�m9��uz��?���G(��y23�囑������:��O�a�!��$?�Ô�[2S��#f���}�Y��!�H1=�B�3��v����ƾ��qLKɡ���c[�6eb���G�����v(�@�8bs��!3�κb��?�Oo�����@��R9(Q�) a� ��d9�壳k�K�c�jg�2Vw9R]Z�.��G��������%�ZU _��߄�������_��U ߦ @�\��dX�+�)��w�� ������9FW[���{�'W��E���oq�m���za����~��"}R{�Ѩ4��Q�m�oC�q�+F^0�p��K_���Ҹ_��|�V�� ��4�;��J�m��n�o�7�5�͂������i�d�vzx|T�^}[O.e�Hds�.����e#�u}~�w�/���R\�� �ǟ\`���<� ���؏c����*�=ŭ ���_���). �P�b��Q� �3�wm�?S�8l��|@���q:���n�ra��kJ��a�>�& ��� 0?�3tAq��]*G5�������T�R�t�`��%�x����4k7�}���0^vo�7����T��Tҷ�mqs �����Y���RL�N����4k����ྻ��}/���5�+��Le61j�ۈ0.���w�<�f���Ś��H�Lk V]���^ܱ���Y�<j�E�Z�m��Ć�֥��+=L�2�2T2H���KL�`P`d1G`MY8�V���8!C yD�{�34���tM�`�Fi9��AܤC@m�)6�����/_�!j#�δ���G���JT�� �LM@�z�3�or���M�h:GaҴI�ݮ{"H���P�tX��C�Yu��ve����¦�M`��b)�i�^6};���Kf�H��\�N!!��~#"9� �[� �b�H@7f :��\´��L�C���'��6��S3��(KB��%r)5V��64�`8��KC����K#Iڂ=0��Qi�X�]^�� �/h����~̻��QT�C�s�Q�e�3ͨ�l��Ѱ �2X�rL��-̮r�ʧ��s��y�B�K�z_�[d6s�C�����{�#{�ȼ@n���H�3s�J��,OB����O99� ͏s�u��4�c�,����JAV-�[-J��^��[`�q_��W�έ�gH6P� �N,�j.��� l�/K e%� �=�������Mt�l�3ȞB�<=��<(Pʕ������B-����n�x%W��:C�y@����\����-;����'��� Z�hEY�@�bu��Gir�d(����'�r�s���`�;�{����:�`�-"��� AwzZ����j"V�|�gN��,9�L8#�J�"�ձM^x���Ė�����f���UM �8uC`���`��G{��F����9�_���H !4$��Hň`�$�TF��'�$=�p@C�ce5�A �{����Y��ըF�Y���Kju�� �T4yνBf����^ͷ�2J6l�S���nT��N~:�o��qw��'t��ϒ��|p�J|��8M��E��\�ڤm�!�ݮ�T�U�:Nc�m���j0s��1��)��▖J��Af���z�ѹ��1��[,�a^���`�S�V��8ο�����ۻOj�ջ$����w���&�'��"E(VZL�;dR�e�@�e+���GM�'�a%�������?��K�Eې�Kf�̧,a�vT�+"��ֲ]���l̝�gs#*/u6��_�\#�)�_�~��k���,�`{y��Q�u�d>�`���3ֳ��ؽf4 �Ĭ�X�`�O͘�8�|��*�s�11���+\1D&�Za�]{����;���@�R�/b�ܖ�XM%��7ˍ���=n�[�D3��a_���,k����UKd�����HV�n�p�Z�\~5춼*��9^�.�aGhƐ-Μ�xj�S#7�HR=n�M��x}�ڷQqZ h��fT=�d�D��ۼjA[a4��W[�_ia�E�j�)�<�vvh���֡)��3�KjRhk�:�)���Q����UB��k�/��y��Y�^Yi�~�\��m����tN�w�ӧ}����GNޭ�|b4$Kpy$�Rl�Ҭ���ȗ.� g�@;�-ÖX&4%��mD��$"x(�2oh�+谺�64x,*N�6gNը-)Я��v'�$E&�zX,�����AzX)������ ���wl=�;R�!a ꠆��m2=��ͨGI��j���U�r Xض�b~�4S����%S�R0ܕ|�"5��d=ԙ�C/]���� ��d�x����=���Tj(���E��7�}�"dਏ8E��l�u�$�l�p3������ ������3��?A����U��G��L��~�ƻK�zE[;�>�j��<{���w{/w�����b+��g���`�KǕ57��g/v�;��s�!P�E)�+<d����&Wd�(azɻ������Xi���&�u��P���o��F?y;��7&S�{�6P���냝���_���zNuW�iB�t��D{��V ѣw��ׁq� G��Ȫ��|�ڳQ��-/�9(�X��|?�ذ̓t(5�/O���f2��^~��eU��B��|q1s�Q-��W�U[�}u¯��o��oP�p��\:_���� �XTq��w�OF���<Zu: ̦��蹓Ǎ֛��fO��d�$����iBQ3�h<��ґRh���#��]?#[qS�i�R�d�P͘�)6����hE���u1�5�@*o�p��d��l��n~u܄���q2M�����jDz �q�jq��a{m"p}C'�P9��\�E�Zȹp���\I�����x��Z�W���� {�۔,���ڦ>i�!l!A|��(�� ���E!+��ט�t��a5\g���Q���(6{���IH l�Z�U�J�g9������u�*% ��H���9�,fv��V<�����fTn��y�S���B.kܞ���{[��7A���ѿ)�� Z�W��J��l� �]"��N^$��P+� Ԛ��@�#��2bv7� �yc��T7#;`�n��#��+Y��ʏk�ļ~��tQ�ݭ�w�/ﷆ�g�w��K�D� B/&��3�tcΠ�Uof�,���(�<�:���G��ag������ U�Y�Q�����]8t�7�7R��r���) �^@�s��qȂ��;�,/����E�T��u�� Le�U*�F�X��i9�ac��P���B�7�s��i�#�����O#A�%gW<)�ɕ�;���ϑ��4diҴ�,.�K�=ͦp���UzY��|�hk��aEɢ�N�x:��%3�_�Hr�YA��5r<kq@a ℰ�|#l�,dxL;ZIT���uk��hͅ*��j��E�{l��ͷ�^��>~�m������o�ꛭ�7�<��w��p���5/�o�=�ʨ� E# *U����;�:��{�!�l���BM���Z�B,-�J��R^Еܹg�* �'�IA�Y� �y����+��������t�i�ܦ�����l���f��k��P���}�d�?e�:�k�_��fl��+�$�.�� �w��t�I��)�UM���%��Р�iP��>գec��ԍ���k��ptC��2���%��� ��(��:o��FU����Ƴ�V֮Ҥ��}_`e�46���\/5�R 0G*��~-�[��e�(�;�N�ֱ:���0�� Bh �$J����0�I�7']�� �JXq�䠢�Ƴ��J��9_���4:D7nS��"3Še�o�=*�ߨQ�cQ5�����Æ��˵�ɭ�A�PO��n��� �ⷱ\�#|V���s�?�>x���|��������ʃ�*��B4W $V)�;�QGӟ�;�7%?_V�@I @�;�b8:��!�D0H�L$�t��%=y*�"K�e+i��t�����I�qSv��K�䪕-�ދ����s����Z(�;/^�}o���{�>{�.�^L�}��@���/���ʁ����AUx ��k�k���K�c�1���H;mA�&'�����R;$�Qj'�'Y���/� +�g��BId���,q;� �$4vbĈِA� :R^�|\]}�³ʛ�5�n��~bΦ�nym�|:r h~�cT�H#g6^�غʑ��;/�RU�n��~M%��_T���a���Y�CP�%�vZX2�B�L�d^�u�dڣK�TX��]��Ŭdۑ�tx��XJ�Ls{���v�W:Ҟt~ɲYP+T�y-<� q'�C#Ť{>�(W�_�g���3���|(��QF%���q�z�q2�<)-�5�3To�kg��Q��m��,�ْ`-� ���VB�����ᳫ�Җ.���I�^q�E�a[�%���D#�[W�̐�IE5H:\�I<u����^���U�'�����y���� �|��� �[z�x�_//s����8��6�,ս!�*x/&��VkCޗ�9�X{�P�����x0��f�g%���^ �����*�H[|bo�ӄ^��Y�th<�X[�<ՑȆ"R���x4B\�$�3�9�������GF�|�4�D_N5(�,�H{��F"bhZ����נ�?�(���_�76���N������� �]���\:Jk�TɄ���(�����{����d�L� 8���`�4a$ X���#��uSPM��й����@, 3�2��DIZ�%�����#=�d�꾗|9gSQ�`��R��v��;e�b�����Q��r�r�dJ��k�O�!!y�� �D,.r=M&��t�x�]����~��� ����8�b�S8�NO���S֟4�V�h��>\�����]sw.�e�O�q��w�Z�a���'��{�˫�y�Y�.��\]}��V��_���J��>���Z�����������|�/�������~C��(�6��ּ��i���Ҙ��[�w��wb�����Y,� Go�����?X�a��z]#��]{r2CB��L��4"F��xj�N:i/N�]b��M�73[]쬛>�ʨ��LQ�\���'W(����J��^!8;�"p����V�������}'F�`.M[]�㖏�='���w��ab?H�yU*^Rm�5�'x{S �~r�N��$/yc<�z���#��P�����e�H�Jホ[6���#���j� Ձ��45��|�c��'�k�A@ƾ���������z�2�Ш0'���}+��~�?ZP��'�2�d+�U�[�U�[����{��������~z�+�ʾ�+�^����_Q��e���tє[7�*�.D �c}���|R}��hq�c��u$ H�����Z�>�����=�@ϲ]?(v]����,VO�Bh�M*�6��T*����#3D*wO���H��5{LX7�W`�ͧ��"b-��x�=@�k���?Q�l���4ʈ���:��`���0��>V8��*��>��Qxo(Z<頹���i�'�M6k�F��>*��T25_ ��9���l���Z�ù�����{����V�������������� ���xn�^[��߳�������6��v�;�o}����,� $G��N9��:�$��'e�t�%�#�P��ɑ `�� �<2ã���8��!Fq�+2�b�(սj���eX|����G�1J��i'QOw��&��)9�}Pe'����C�{i�����4;��Nw�½m��c�{�v]�r���e���� \2��7��gd���Uo�@�m�eS�8�� s��!�c K��C�!<6=/)^���[�e5kWq ��������0Z_P;sx�\ e}��.��l�2�p�Nע"�|y�BNO�V� <#7&��.�[��5�t�K$ZViP~�(�E��4�7D�*~�RW]���blJ��'�D���_ v�'êɰ:#ê�#U%L@T hʠ*�/R�|� ��?���Y���:P��ѣY��}�G+�V�.��߽����V�Ѥ4�wm���ďl��u�?x�`�m���{�<z�Y����?��gῬ�^P������|�K�h�o܇��{ �$��g-�o�TV�nm�f�h�����Q;ڊ�����n��Z+���K�����m��pw���������H_��hl�����nӻ��� ��e�hC ���%=��0R��B��*�+�7'h�7 �KFs��v'�6�h�VH��F�E�d���i/i[�n�n�����U��c<�lF��o�� uܠ'�uUEZK�x��z[j�*�f�{����{Q.{��y<�[ �Iw��LsU�ВU��f�E�t~����!k�-!;�^���lS���T��I|���n?�u�uCJ��A/z�M�%�Γ��@a<ɹi�tC�j$�!��I����0SF���(�<M�����" ��=?ʥ������G��Β��I2�[m�.�ߋ��*��0�N�FÄodU�)��<$j\��y������"P�]+5S9^��� �r�/��`:�`����H��nq��r�nQ:�"����q�4�<����ºC��� % ������`��*.�� wM� ��a��=���H��Y��|(�+�:���=�>�4��?�[k^�T#�r{��L��\8#����[Wx��� U {<��6�>�`��Ψ%z�L�B-A���f�(� �G[2��]>==M�'�Ѐs�{�P#S�<Q�r��e�/b�Q�y2z��B��#�V��8�B��d� Mjڭ6d����m���{�Tv�/�H����; �k����f��H�B��U!��I|�<Z<Q�3q�]a�7��U��!`@`X�^ &_(Rx�e��ă$+���!N���� r��O�h���i ���m"f��i��k4��N6�%���+9&8�"C{�7[�Ηݽv����B/��X"��S1�c� y�"���Nx;��nZ���N�\Ct�~)�@��z���}U��r�<N:'���;K&ZN�,ٗ�R� s2|�����ZM�v(�kԛ�rWK$y�t��5+�����ɴ�5hg[� ����F�ea����nB�Qn��ޱؑ�4�?�^��ö�a������x�&�����V �Js��,�zsѩ��9�'!�F&��p��A�M� ĉz��X| )Y��oߥ�^b�^ܻr��s�MO~ ��\� %�Fo��8��� �ʦu+�G�Y�0�;�9OGn�sV��W�5�'�0I`s�0B���}t��%?Ƞ�}�R�Ϝ�m��.z�'��=5������+��Zo�qO܆ی<F/2�/�v^d���0t��%E�ǑQ����Yd�]�#�ŃLN'CO��&q�V(n� �l�]�0�{�?���T���tH�1[�y�j�FUk�m=�Wt�k���h �v"萧^|y@e�� $Dc��.� $w��p�5���f�-aH6�z�PC1 )�?��=�|$ǀ�E��>"��B�6%W��9�:�qMNڽ�K���7��-�z�Tt�w[^��95i��[�P�n��#�� !)ռ����M)��ʫ͏U�5Dwo�-�2�p�'t%_���`�ˊ�ڄ�{ݸ'�k&�6#����Дb(�b�H�¯����K��<����:�Л�@� ����,�z����~>!�Z'4� =�~�zTLc�����<�f8��c�>��Ҥ�[�SY����z��?%7퉪�Xv��g��P6��SB�u�c�4���8|Z霠���3�C� ��f��� ��g��^�[3|);�]Zh����"���l�-TT5N2�B��@^mD�u�,>B\������p='���z:��岫Q�i7��E�s�Z���1�a��0�H~�`�,� u�����·���^ѽY1��T�<���B���3gC�.��P4��>T�!�ѱ_�$�˲�ο��9<��9�n�u�z!sj?R���1g�����ɶ�<k��"B�m���MIL� ��MքUW`a�7Y��� �Q�C�~x�q�i���G<��!�?a����y�>����||��{,�v�ű���*ē��)H�B��~���$ܰx�� 7鐗{�MJ���_�H���7ogK9* ��2|M'Gp��8B���<���C_�7X�����v�d��K�-ȁ��K�|������9UE��8 ㉵�.��Z��"�3����P�R�b3���0�-��kG%y7%,�Hm��>"�$�DD)8�\hC�� �K���#(=u$!E �x�o���K�/���T���Қ4�V����Z1O�mt����ey ����qiD�4d{�j��=ʂڈ�]Sм;g������9�)z( r?�Q�5e�XX�cYW�z!;t��2����F��4�*?��= �,�1�+ 1���?�^#DE����º�Go0��7ok-�W>�� �DzE�j�XV�z� �p�}�pp �'����N*�o �wP��`���X�Ö�S�HQ�HB���ãM͚��I�(!([��+�)B8���¡����u�4ol�Ƥ��I�G��xn�>���Q]'�����eki@e�n�R �eE�&�J%�e�V��=���p���ke����2�G���!=�� 2�8Q7r��u���HazYw�\8�ԄЩ�B�h;�wJ�I){�$N�:� ���߆:ry�DF�!y��3�S�Ȫp�6P3=fcE�� �K�Cj��*��x�-9rf)r�_�+���HQ5C�"M� ��h��I7�\Z 9���8]��8����֓����B��8�5�</&�*�E�._쉧��l�O�{^��+�!��a�SE�v����v�Ժ2lmq�Ui�jnF=h�y痪�!�k���Bb6ӛ�Z�����C�,>W8�>��&+_T~��O<�:��*/���W��2i�m=�}�|�c3��C�EGP��ݻ'Y�J!i��$VC�mf?�r�A6��Uu�Q�s%b%WsK4Fl�� E�wO/E��8�׆�i�V6�e������D�ٔ���ʁ���tNM�V�h6$�L�^g�[��`o��M������"�Kqo�~T����f��K8���.��Ib�[$����v�2<K<�|{�E�O���� �ci>���r]`.P!y>G$��CDBB������:Aj��At�����ć�*�3��Ys���U��Ѕ(��;�T ��^`��J>T�ӆZ��7c�P���dL�t�\��mN�z��H`��IM$Z�hM�F�_}uo����&��t��>�_�m�/�뜪���l�lUk�G�h���/�'��z�C���~��E& �Ƞ�s�#X��7�� �&��[��w����O莲(� K �G�~Hm�����e+� B��T4'^���S�"f�|�@V3:l:XZ|Қ)�o��vB�]�iԏ��^/t��a����7���f�z a�!��G��a�p{����F�R&�[7 �� �(��&,Ճ���� �����࠲�,Y/��,���8#��W�`�Y�v�A �nOqr�B��&���+��l=ǿ�Asq���.�t�5u�����sS\�M�n��������v�R��)!ޭ��wc��<�k��9����\��� �j�,�l�u*�� Eꣵ*�;�)W��/v_�r�C��rQ��%����l�˚b]�Ó�`Y�Fm�ۨ����L�����|�}��>���@�%an��>��%��խ�.P�(�d�+�<�&�Hj���-1��#qB���= ��.4`~*5�٠Uq֭Ox<���֗�@ۂ��-�n�һ]��·_�_�ڪ4���K ���b,�˃�}!�W��\��x���m�n:h##��rW�}�PMѷ-�2��꒐�sZf����W�`�jC3��P��X��:�tP�L\�D7;C�6�E=�v��C��uaH`-����o�tqԗ&�{dN�KLMYd/��H`ǰ�`-�H�����i7�U�eQ<�xcͳ��6"\�)*������+J�k��f`���`}�2� �����V� s���d����g}J���-Ֆ��DS���$}縛��d�U�Kd�'�N(*��蓺x1�;���ꙋS,'G��(ߎ��&�(�;��t�/�����}F�w$���&�����d��A��ܱj�<k2V��X��Ƚ�n:�N섓�C�D���S<έ����w�6 �gϤ��zn�C���,�����:�kQ���i����Z�T���eDcu��v��p�!�2�gH��SX�}��1�HFTUZ�)*OC8Xj�ي3�P!yB����� ���c}��(2$"�Slm�9�hW�-w砎{}6��bC&��v��0�E'�.���f�(Ĵ�\൹ڌ&(y���n�+���,,hz�J<�������|��ip=���#W�J2�`T�瓴o���s���F�)f�E��������e�*���$fX�D#�b�ZO�Ч32i�}Ea��"�1�~v�L#�!F�����f��� H!�:5��l��%8_����&�a���}����:��)����]��2��8 %���� ��2�-�Ðċx--�t�g�D#�3X�v�! -"n7^�P�Y��*�f��T���V=�]d��|�Q$F-6�q/.Z���#��<O�<F��t��$�D,���>��=DQ\Dk�d8�9�ۙ�uR<����G�@ze��DZ� ��F���'<*0gz��z;PG���#"X��Z���}�氕�J������(���ɛ���)9?I��B�9���eZ�5Di7� X�!�[F�ť�d_6s2�� �zu�ޠ �\�9��CQ�L�K Md�CNoOS���$�f�Y�\�3t3��)ՋY�*�l^m��8��`9�K�%ثR|e7oV�5 �j��l,aJ4�*�'rXl�@�Q��N�c��J'�`Ma�r�Q4K�;#�E����F�x�q�C�U撚�G�y$��_����1��4�o�'������5e��g�զW�\������ho��9��[@�ŕ��� %�`��z4�>I ���iU��2!ׂ(��?�+v�];�>���� M�\iއ�b�ˊ+\�mѝ`�!?Ͼ����6�F�Q�黎X�N���e�Z?c�-93Q��X�8��Z�Г�,�R浗��"~�,��}|=�A?�a�#zc�-�Z��ǀD�O}�o�9���� ��61@���!_qp�.���BuZQ�����J�fK�����&,��-:�K����X�o�F�����;Ry��Af����L�Rbbq��� �*�t�Yq>��s������ ٍ�<_{H���J&E���l����!��׆���x�sF�D&#��P����y��ВR� �1�\��Uk�es�8��+)���Y�͍$`�æT� ̔�"յ%���^=�z�3�a����̳l�kϨ�ٳ��e3�]�!�J�r�1�F����G�4+� �V*ԇ I�����۬D��6= r/,����D�B�̒kIXȚr��e�|�f�T��ǖ�bdyr5��r¼�gi�.��,����ꓞ�,>��Z,� g{�*�}ؾ�c�P��lloISw�dÁU�&Ϫ�O�f��I�%?jGO�0B��K��y�1�����D餁�!�Z�e�̱S�z={��5 :]t��H�::K�ځË�IM���5��ZaL�Xem-pjs#f8�0������6�fqi�)�A���V,��Y�Ma�y���OY:�F卲.X.`;L7�K��ZQ�n�{)��PjuƢ�S�AG�3�6O��n<DgV�t�.LX^�K�[GBc����-��u��HQä��"#( UDQ��i.��}��,$�#�Q�W���܊Γ� ë���.�f�@�$�bl�"ԉ�E�J�R�r��c�����7�n�vx,���u��fSK�%���@W\�ɉ��"e�i��@u�'��nI�N��4�bqX ��ҍKb�� �_�.��!+jZ�-���QTAޕT�&��D�\�^&G�҄ͬ���J=�T,��W ̠7���Vi����T�;y���%��t��6�x㎲?D�O�����gӘ�����Ô��5�AcS��ؼ�o�M��/O�nnD?�� �P�P:���*e�[�� ��Q���)�˽�;���G{������v�*`��t��[v�ЪO� ��h�A[�w��DH룛�4稒�mET�>�����8��������<�pՊ杄���v�;z����dc�X>�v��m�FD�2X�7�S˟ri&|p`�:�[ܔ�E�k�?��$����g��hK�֓��o���i���f+��6��J�b��`H�YiGYl�э��@vOV��0Z�uef�@4����`�4��3��Vm&�Q�u#�8�ú� ح*9��f�.�nr<��8��SF�} ��h�l�l���c<DVq���O��G/�4������A&>��2`�E �,��iSz���8�T�D�X<L �b��`x�/�����(|�rK��[O���lH��K@�"X;dg��r�^�TS8� ��]�*v�5"��U]�0��yt����C�}��q}f,��0A"瑈~��"�T�2N�vB��/�)vr��O��۩c�&J�'��wH�y���k�Q0#@��]�^�T bA���=���{�� Z>��ɚ���d�Hx�.�~�4on:�@���\����뷴�����D���;)'_���*�ŋ���v?Hm[C��\�/mJ_�Evp���|�|�%���a ����"B��\V���- sY��Q%�=쐦���60i�G��He;�� �66���y�LBE�ߍa8��23�g��c�<�(D�0Olܦ�p��V]&Ymه@2.�/�!��1&5�'dSVR�p�����K�Ǿ`*l�$�=V���^L� s�$�xщF��К'�@[ I1�_�a��P�x~^�;���a��h�P8Y�(��=q�#OM��Ƭ��.�)�V3���?���B@;O�,%Q�c�B\$���cz�j��O�C�R)t�}�\-�nC��pp����v�h��RCi��3t�h��E��0�vx�8K:�~���^���N@!�v�xv�x�z���!�Ub�Imd%a(B�%�d`O����Vt�e�o_j�'j��|�@�`��u�a����EV���:#�ʷn,���;����YE����1���a�7����oC-rXS��-��FYQT��հG���Љ��� D���;���p Rp����m�hc'WE�b���z-�Jܺ�dܟ�* /��s6�8��{Ⴓ��)2��Z�������u���~���*���a3f�[���<%��Xn��#wC=uIK�gut�1�֑bvoxF�0�7�8 ��LC�E�̖�D��%z�Bi���k�v^\���3�ԥ�u�@`�y�pG"1��N��Y��,�$Hb k�͕�t��8��Pm�Peyd���_q�b�6�_c�Q�rz�E���3���|H�d ��A��ë�q���uM����Yc՞nG��v+�8�K�����p;��P��y&|�ڶ���k��5�z��� �w����[j��Sq�:z=�:jEvԚ��K����:Rv$�7��q4.�TJ��>����htN�m�J��ޅ���Zڱ�vuBw₾�o�kT/D�7�B��R�B68/����!���UB�][��,a4��n��)R��k/s9�S�J�֬� *�ՈF��Zy�g�g�}����6��֭s=5���<��B/HV�Ŵ2Z�h)��q�&��`��F~����y�}~�v��^��6[���ZhNf�� �:VaQ�h1j�<����D��$V��ĉ�0���T�&�����������ޫW;�G��Tޖ�=qݶ�(e]C=#���R�f��4�w�W��zq������m�R�^�8w�({2�M��� ��/�́�Nt����0&O~�~�C��i9�x�h�<���C5�QO�~��/���J_�d�#�I?�ϱ9"s�cV ����E��%�m�5\�H�����ͧ6 �Mx�&\Q/��u}>���dp�T� $�&L��R�(��z������,#[� �������p8�-��V�_��pl�4ۺR!&ҕ��ܘW�F�'�fgt(�%�մ}fN#顊�$�)�\;��Ro�Crl _�\<U����6ȷk��Q!MH����8r-���WhS"�2��/ř-�V�^�R�5���z}��ۃ_�& ׳��}*�������[7cA�����V�P���Au*�}'7�K�r�h�=>/� Șu'ɤD<�嵛�Y P�I��B�T�*k~u�G-P��V�gm�X�+aֈ;6�εrނ��>�ޚ_oԷ�P����Ǖ�NN�ۈv6��a@���60f���D�{��2��+V��D�Yŵ�[/��� 5��=5��>ea}y�%��� ��dy��3ej g���*��M� I �sY�/H)|������~���Uɾ]q]8f��ɋ�O7�kA'����$��E�"6�V g��QCK�P�#��LM? t���L>`찗��AQ�t#�s��T�Q@h��l��7g��t�XN���˝v�*yx6�#��W�G�5��mv�v��*W\��-ks9t�vv���Z��4�A0ŢnKt8�*�%��.l����W[E����b��2M{�A�$��[��� �ˉKǔ�#����@&�I"���v��$g�Ŗ��8`�=�7l�X�w�������cP,�ߓ��+�"���l<��E��_� s8�8U��۹�=�ni �)�����$z����|� �A[Y�]/�O�\��<ś[��^����F��`�=I�@J��VP����� m ��X�Fep�0��ė���B��OZ]���4u92(����fMDE�%�KEP����\ Y�?v����B��W�D��Oɴ����G�߶�Σb��ow�>�is4s�&`d1j\�dt�RpG�Q����*Q��[{�j9��[� ŖKN��@��-B54�O��P�^��W�a�li9�w�X�� ��;�.��%�ՉG��.�8Nhw����jb�A���[�7�h��|�n �~�j��l���6�Z.*ڰ������dO��Udm[m!�`vnfk��L��R���l˜��t���W����F�X)�S�O1���ͥ�;���� g��qF g�)K�i�o��+:{dq1��y��NO5����tx�E�!� ���&a+첌���>�Ș��ֿFy������[�o�����V�|\=O�W�Vj�Vr�z���e�$�y�]=�}U;���2J�hi�.*o[/�ج�'�����J ����t�}�Ftm�~�\�sOh�*�e�9�e�ٳU��u=G/���<�l��i���y�=n������l��h�|�>�}<:�~�f�~<�'p�Ƅ/�0�_���o���/��ǭ��^}�d�˴�qkz��0}��N>���}|�t��?@C[{Ga�tH�b���A/� ��e�*���%<#�qF��U ��\ ����O�1Q�K�l��ڋ�����h��o_YZ*���!Qu~ݯG�l{qi�N�5i����h��e+��� �znE*ዋ��pK��\G0*�\(��u��"'�����/����훸��ۻ��.�+u؍Q�T�'�?���v�Dwa��܋����������� �r"�z�V!o+�OCv�`2���Ј����_�߿��Vh�Q���>i��G�T{b&`~�U��a3�-_�Z�0��������T��^`�6�AU�G��Ɗ%z� ���0H� �- �:<�ѦN��ޡs�u���HPK.//������ut�:���[�w'-44ț����ʣ�ʽ�}�)ã�=h>�8��R��/�{���}r��-�ZxD!�Ʀ�3@_�2���i����Ғ�P�X�sW�(c�wP� ���c��_`���7���}��,�����r�_�d���)-f)�����Y��J6�{��+��P~m�/i]M�G�=ۯ&���s��� ^��T�k��y��k�k[�i� �fn�n�pU�>�mn�i?>��7do筪=����饕�֙k_Kc�Day�U*>��)G4�z}�Ӣ ���_0�F�/c���7��������7;�����������8��ý�v�v�^�{y'��^t0��Qt�����ݿaY���w^p���W?tv��v��!N�W�&Z᳣w��=)�!#Ng��t����RY@d�l�A��*�I������+�.���i3���{1�� �/��G>��o����Sl��bo0Z1{Giǧ�)L�C<