|
#!/bin/sh
|
|
|
|
# Display usage
|
|
cpack_usage()
|
|
{
|
|
cat <<EOF
|
|
Usage: $0 [options]
|
|
Options: [defaults in brackets after descriptions]
|
|
--help print this message
|
|
--prefix=dir directory in which to install
|
|
--include-subdir include the laview-latex-struct_0.1.1_amd64 subdirectory
|
|
--exclude-subdir exclude the laview-latex-struct_0.1.1_amd64 subdirectory
|
|
EOF
|
|
exit 1
|
|
}
|
|
|
|
cpack_echo_exit()
|
|
{
|
|
echo $1
|
|
exit 1
|
|
}
|
|
|
|
# Display version
|
|
cpack_version()
|
|
{
|
|
echo "laview-latex-struct Installer Version: 0.1.1, Copyright (c) backbone@backbone.ws"
|
|
}
|
|
|
|
# Helper function to fix windows paths.
|
|
cpack_fix_slashes ()
|
|
{
|
|
echo "$1" | sed 's/\\/\//g'
|
|
}
|
|
|
|
interactive=TRUE
|
|
cpack_skip_license=FALSE
|
|
cpack_include_subdir=""
|
|
for a in "$@"; do
|
|
if echo $a | grep "^--prefix=" > /dev/null 2> /dev/null; then
|
|
cpack_prefix_dir=`echo $a | sed "s/^--prefix=//"`
|
|
cpack_prefix_dir=`cpack_fix_slashes "${cpack_prefix_dir}"`
|
|
fi
|
|
if echo $a | grep "^--help" > /dev/null 2> /dev/null; then
|
|
cpack_usage
|
|
fi
|
|
if echo $a | grep "^--version" > /dev/null 2> /dev/null; then
|
|
cpack_version
|
|
exit 2
|
|
fi
|
|
if echo $a | grep "^--include-subdir" > /dev/null 2> /dev/null; then
|
|
cpack_include_subdir=TRUE
|
|
fi
|
|
if echo $a | grep "^--exclude-subdir" > /dev/null 2> /dev/null; then
|
|
cpack_include_subdir=FALSE
|
|
fi
|
|
if echo $a | grep "^--skip-license" > /dev/null 2> /dev/null; then
|
|
cpack_skip_license=TRUE
|
|
fi
|
|
done
|
|
|
|
if [ "x${cpack_include_subdir}x" != "xx" -o "x${cpack_skip_license}x" = "xTRUEx" ]
|
|
then
|
|
interactive=FALSE
|
|
fi
|
|
|
|
cpack_version
|
|
echo "This is a self-extracting archive."
|
|
toplevel="`pwd`"
|
|
if [ "x${cpack_prefix_dir}x" != "xx" ]
|
|
then
|
|
toplevel="${cpack_prefix_dir}"
|
|
fi
|
|
|
|
echo "The archive will be extracted to: ${toplevel}"
|
|
|
|
if [ "x${interactive}x" = "xTRUEx" ]
|
|
then
|
|
echo ""
|
|
echo "If you want to stop extracting, please press <ctrl-C>."
|
|
|
|
if [ "x${cpack_skip_license}x" != "xTRUEx" ]
|
|
then
|
|
more << '____cpack__here_doc____'
|
|
GNU LESSER GENERAL PUBLIC LICENSE
|
|
Version 3, 29 June 2007
|
|
|
|
Copyright (C) 2007 Free Software Foundation, Inc. <http://fsf.org/>
|
|
Everyone is permitted to copy and distribute verbatim copies
|
|
of this license document, but changing it is not allowed.
|
|
|
|
|
|
This version of the GNU Lesser General Public License incorporates
|
|
the terms and conditions of version 3 of the GNU General Public
|
|
License, supplemented by the additional permissions listed below.
|
|
|
|
0. Additional Definitions.
|
|
|
|
As used herein, "this License" refers to version 3 of the GNU Lesser
|
|
General Public License, and the "GNU GPL" refers to version 3 of the GNU
|
|
General Public License.
|
|
|
|
"The Library" refers to a covered work governed by this License,
|
|
other than an Application or a Combined Work as defined below.
|
|
|
|
An "Application" is any work that makes use of an interface provided
|
|
by the Library, but which is not otherwise based on the Library.
|
|
Defining a subclass of a class defined by the Library is deemed a mode
|
|
of using an interface provided by the Library.
|
|
|
|
A "Combined Work" is a work produced by combining or linking an
|
|
Application with the Library. The particular version of the Library
|
|
with which the Combined Work was made is also called the "Linked
|
|
Version".
|
|
|
|
The "Minimal Corresponding Source" for a Combined Work means the
|
|
Corresponding Source for the Combined Work, excluding any source code
|
|
for portions of the Combined Work that, considered in isolation, are
|
|
based on the Application, and not on the Linked Version.
|
|
|
|
The "Corresponding Application Code" for a Combined Work means the
|
|
object code and/or source code for the Application, including any data
|
|
and utility programs needed for reproducing the Combined Work from the
|
|
Application, but excluding the System Libraries of the Combined Work.
|
|
|
|
1. Exception to Section 3 of the GNU GPL.
|
|
|
|
You may convey a covered work under sections 3 and 4 of this License
|
|
without being bound by section 3 of the GNU GPL.
|
|
|
|
2. Conveying Modified Versions.
|
|
|
|
If you modify a copy of the Library, and, in your modifications, a
|
|
facility refers to a function or data to be supplied by an Application
|
|
that uses the facility (other than as an argument passed when the
|
|
facility is invoked), then you may convey a copy of the modified
|
|
version:
|
|
|
|
a) under this License, provided that you make a good faith effort to
|
|
ensure that, in the event an Application does not supply the
|
|
function or data, the facility still operates, and performs
|
|
whatever part of its purpose remains meaningful, or
|
|
|
|
b) under the GNU GPL, with none of the additional permissions of
|
|
this License applicable to that copy.
|
|
|
|
3. Object Code Incorporating Material from Library Header Files.
|
|
|
|
The object code form of an Application may incorporate material from
|
|
a header file that is part of the Library. You may convey such object
|
|
code under terms of your choice, provided that, if the incorporated
|
|
material is not limited to numerical parameters, data structure
|
|
layouts and accessors, or small macros, inline functions and templates
|
|
(ten or fewer lines in length), you do both of the following:
|
|
|
|
a) Give prominent notice with each copy of the object code that the
|
|
Library is used in it and that the Library and its use are
|
|
covered by this License.
|
|
|
|
b) Accompany the object code with a copy of the GNU GPL and this license
|
|
document.
|
|
|
|
4. Combined Works.
|
|
|
|
You may convey a Combined Work under terms of your choice that,
|
|
taken together, effectively do not restrict modification of the
|
|
portions of the Library contained in the Combined Work and reverse
|
|
engineering for debugging such modifications, if you also do each of
|
|
the following:
|
|
|
|
a) Give prominent notice with each copy of the Combined Work that
|
|
the Library is used in it and that the Library and its use are
|
|
covered by this License.
|
|
|
|
b) Accompany the Combined Work with a copy of the GNU GPL and this license
|
|
document.
|
|
|
|
c) For a Combined Work that displays copyright notices during
|
|
execution, include the copyright notice for the Library among
|
|
these notices, as well as a reference directing the user to the
|
|
copies of the GNU GPL and this license document.
|
|
|
|
d) Do one of the following:
|
|
|
|
0) Convey the Minimal Corresponding Source under the terms of this
|
|
License, and the Corresponding Application Code in a form
|
|
suitable for, and under terms that permit, the user to
|
|
recombine or relink the Application with a modified version of
|
|
the Linked Version to produce a modified Combined Work, in the
|
|
manner specified by section 6 of the GNU GPL for conveying
|
|
Corresponding Source.
|
|
|
|
1) Use a suitable shared library mechanism for linking with the
|
|
Library. A suitable mechanism is one that (a) uses at run time
|
|
a copy of the Library already present on the user's computer
|
|
system, and (b) will operate properly with a modified version
|
|
of the Library that is interface-compatible with the Linked
|
|
Version.
|
|
|
|
e) Provide Installation Information, but only if you would otherwise
|
|
be required to provide such information under section 6 of the
|
|
GNU GPL, and only to the extent that such information is
|
|
necessary to install and execute a modified version of the
|
|
Combined Work produced by recombining or relinking the
|
|
Application with a modified version of the Linked Version. (If
|
|
you use option 4d0, the Installation Information must accompany
|
|
the Minimal Corresponding Source and Corresponding Application
|
|
Code. If you use option 4d1, you must provide the Installation
|
|
Information in the manner specified by section 6 of the GNU GPL
|
|
for conveying Corresponding Source.)
|
|
|
|
5. Combined Libraries.
|
|
|
|
You may place library facilities that are a work based on the
|
|
Library side by side in a single library together with other library
|
|
facilities that are not Applications and are not covered by this
|
|
License, and convey such a combined library under terms of your
|
|
choice, if you do both of the following:
|
|
|
|
a) Accompany the combined library with a copy of the same work based
|
|
on the Library, uncombined with any other library facilities,
|
|
conveyed under the terms of this License.
|
|
|
|
b) Give prominent notice with the combined library that part of it
|
|
is a work based on the Library, and explaining where to find the
|
|
accompanying uncombined form of the same work.
|
|
|
|
6. Revised Versions of the GNU Lesser General Public License.
|
|
|
|
The Free Software Foundation may publish revised and/or new versions
|
|
of the GNU Lesser General Public License from time to time. Such new
|
|
versions will be similar in spirit to the present version, but may
|
|
differ in detail to address new problems or concerns.
|
|
|
|
Each version is given a distinguishing version number. If the
|
|
Library as you received it specifies that a certain numbered version
|
|
of the GNU Lesser General Public License "or any later version"
|
|
applies to it, you have the option of following the terms and
|
|
conditions either of that published version or of any later version
|
|
published by the Free Software Foundation. If the Library as you
|
|
received it does not specify a version number of the GNU Lesser
|
|
General Public License, you may choose any version of the GNU Lesser
|
|
General Public License ever published by the Free Software Foundation.
|
|
|
|
If the Library as you received it specifies that a proxy can decide
|
|
whether future versions of the GNU Lesser General Public License shall
|
|
apply, that proxy's public statement of acceptance of any version is
|
|
permanent authorization for you to choose that version for the
|
|
Library.
|
|
|
|
____cpack__here_doc____
|
|
echo
|
|
echo "Do you accept the license? [yN]: "
|
|
read line leftover
|
|
case ${line} in
|
|
y* | Y*)
|
|
cpack_license_accepted=TRUE;;
|
|
*)
|
|
echo "License not accepted. Exiting ..."
|
|
exit 1;;
|
|
esac
|
|
fi
|
|
|
|
if [ "x${cpack_include_subdir}x" = "xx" ]
|
|
then
|
|
echo "By default the laview-latex-struct will be installed in:"
|
|
echo " \"${toplevel}/laview-latex-struct_0.1.1_amd64\""
|
|
echo "Do you want to include the subdirectory laview-latex-struct_0.1.1_amd64?"
|
|
echo "Saying no will install in: \"${toplevel}\" [Yn]: "
|
|
read line leftover
|
|
cpack_include_subdir=TRUE
|
|
case ${line} in
|
|
n* | N*)
|
|
cpack_include_subdir=FALSE
|
|
esac
|
|
fi
|
|
fi
|
|
|
|
if [ "x${cpack_include_subdir}x" = "xTRUEx" ]
|
|
then
|
|
toplevel="${toplevel}/laview-latex-struct_0.1.1_amd64"
|
|
mkdir -p "${toplevel}"
|
|
fi
|
|
echo
|
|
echo "Using target directory: ${toplevel}"
|
|
echo "Extracting, please wait..."
|
|
echo ""
|
|
|
|
# take the archive portion of this file and pipe it to tar
|
|
# the NUMERIC parameter in this command should be one more
|
|
# than the number of lines in this header file
|
|
# there are tails which don't understand the "-n" argument, e.g. on SunOS
|
|
# OTOH there are tails which complain when not using the "-n" argument (e.g. GNU)
|
|
# so at first try to tail some file to see if tail fails if used with "-n"
|
|
# if so, don't use "-n"
|
|
use_new_tail_syntax="-n"
|
|
tail $use_new_tail_syntax +1 "$0" > /dev/null 2> /dev/null || use_new_tail_syntax=""
|
|
|
|
tail $use_new_tail_syntax +307 "$0" | gunzip | (cd "${toplevel}" && tar xf -) || cpack_echo_exit "Problem unpacking the laview-latex-struct_0.1.1_amd64"
|
|
|
|
echo "Unpacking finished successfully"
|
|
|
|
exit 0
|
|
#-----------------------------------------------------------
|
|
# Start of TAR.GZ file
|
|
#-----------------------------------------------------------;
|
|
|
|
? [NT ?@T???>?Q-?[?Q?????W19(* ?e5 ?B ?E??ĥ?n7oݺf/?h/?R|?=?^>JM{?QS?RҊ?Zk?3?Ιsf0??????Kg????Zk?????쳧,???y?]Y?Y?OI?U?Yw8?\Y??rV\Y?*-?v]?oY??_ll?~???7?,?Ŀ??b?[????{u????Zc???k????*??W^??*V?(.?*
|
|
?.?}!???????U???Mn?s9KϱN?jE#ɶ???;?O\okN????e?\?S?;????U??EY??e%Y?Nk?
|
|
??No??ҲJ˜?e????X???d?;?r???܂B'????0f'?G?[!cI??l?????4?xrVA?(7*???1I?ץ?IN???qiv????)c8?<F?O?<il"|??????ȚT?lf?&???l?5?0???j%?J?cK*?????kzIa?+?`r?K?Uo?????e?!~0T`?NΪpd?ѝ??l??֬??!?|?}??'??_??!TЌ??Ů?kny(?#H??Ņ`Y?ˬ %?i?Җ????\?'?5J/??3A??d??I6?ٚ1=y???r??????wk6BYi???(?Y?ۊd????bH4???U ?{k+W<??ؒԂ"?`??9?_0???>?ǎKJ?H??
|
|
]?S?]?i
|
|
rԾ?'?.??d??wo:0Â?<?0??9??d???5?)?a????FO??????#R&????fM?mjن??t?5?|??$?VW~i?2??`?䘆?rƞD:i??]?]?? /??Z??J?)?|??u?M?=??˴ҧ??4p?O???????r???;n?-U?O?G?81Q?????C??+Iv?T??q?f?[ ?AJQ?^?A?唞?,,`m????\SKT}???NKM?
|
|
?OI?ʨqco??@?R??\??Wq??%?I???R#wN?"????,r????oa?\??? G??2??????k?>?????Qo?k???7?Bo??5???^??d?m??????i???}?4Їk????Ѳ?/?????"[?_o
|
|
?s?9p?@q??E?d??62`?-?R??Z`??K?R?dH-.?si?yth??=?????!?i?Њ?PY??ݏ;F:{;?D?k"EGz?N?y?e0@?E?%?8???? L?ӒZJ?2$^p\?2.]??K??6??2fDj???f:T?bH??t?OӼ1?b??x?i:d?3????*.??<??Y}??d???5VPN'?n? ?)?⊠i?,u?O??R?x?CL?Z?ENg?????('?Y?r????N??? ?ߖ7??J\????????_?;"?Z???U??_?(?-x??]???? ???
|
|
?"?????_??+W???$`??0????4?)9?|.?Z???????΄l)?c2???T?h?2&)y?#yܸ?"?aO????YFL??Q#?????I????Q?ǖ?:Qͭ??U?Uh?`]*C??%2?{??N?l??P??5?ĤNKTov/;??n?;?*??
|
|
??_??z???@?bL?f??d??T?t9??ⱋ?0l?`?(/*0?Y?%<?-?a???E[??8'}-?\Q?<??8R??(?GK?>?Y?2?
|
|
?"S?v?P?3?ǙK???4??)~??K???&?z??E?B?r?V|K??Vͺ?5??tߣ?!-ňjr?0?9\?Ƞo?????e??8M?}?H????????7?o???????g??#???W??z ??'?@?(???? ??BT?ku8?????Ʀ??8?ƍ?????H?ݐ?|#|d@0??1n|b?c?x??#???????:?G?%P ??y= ??-֡y????!W?[??(s??%@W Db ??8KW?d? !v?8??S?Q?R????Ғ)Ic?1?u9?َ<??AKbz??g??1?Ok???ў?8ʑ2&=?6&H[z?5?????G
|
|
?????x?L?7f?1"9
|
|
?Hw?-1Y[??\M?f???B??r?$,?? ɨ$}?C?[??[++Xk??tk٘?6?????T[zz????[j"E?*)??U??*l?V??L?e?fܛ(mImnkt?Y?W?bb@6???ؙ?$}Ɂ2??܅A??8?)???Baf?L)ߟ?U??Նө 5???V??Ў){???آM??Up?Pq????Z2??zK5?)XF?g???ۆ?&?&9??`I??Z?????-?e??(?W???#^Tu?:???A???t/i>&]F?@??,U?#.?U՟?G?S#??????W???k?`?k?1?y?h;??=?n??JzIϸ)5ټ3?B??K?މcSi?q????]\(?ѽ}??I????ip?V?൷@??D???LU?R?UUt??5??Z?{7Wс??o???gj?1?y?to?=?sD???ޮ?{?v7L??bJ̩*???>?(R_?y?TӸs?yFѢq?T?ňfj11,Z??}5??oI??eК)C???ɩ????YXqr?ш ????
|
|
TYK Fu???
|
|
??!??[?????h?H?)??с??Z?amA??ll?#HO$(??:???
|
|
?A"1r?li??D_?'??
|
|
d??9??^?$?4??̆????|???}fÅi
|
|
???p??237?>ג??/ը?`uC?
|
|
8???N?????]~?^??d?Q?и,u?a??[`? X?a?Y
|
|
2??e4?????歪%??f?6?0??qj?_4???ެ"?)?-?^6n?t%c??9?p場x?????????(ޠ???I??7?2?O PS?P?
|
|
???`"钐=p?-?ԁ?D???@??c?d?~??jT?ɜ;#y???F l????Y?ӫ??bX?V?*???b?S?Ӵ?3
|
|
??K?b?,x2S??!?4?WS{SKҗ(?????snuu?lY?tVe[dQ?p?.h?-?"k?A??c[d9?9??blp???Rl@
|
|
7g!?(?VPMWa??`
|
|
??t?=Z9?ǜ-???WЪ[??!?~??"?7?SQK>???}?P??y?h??Y?$Mk6??f?????qF????N?mg<???OŋE??l?fVsоu??}[??~s?ޥ?dk?i~Pm???_ ?;??x?Z??ݨ???|?j??<.?[3z??&?G?ѻ|?.H?-ЃT?5G? ?H???FA?R+j????2k?UK(`o?5??ܜ???N??:v???P=????[ƙt+o!?f????\AX????? ]?[Hs*j?n?>_e-?՚??@f?;Z??c???sмB:??^?<?"|h??m?u?f?g{K?w?u?8:?ь??<????d@?S2??]:??A4j?E??R????1-??<?(???cIV????(om??e?e?酯6?T?N`??0?b??sU1???q?~̨o????W?ȗ??<?-???%?ͬ4a"-???H0[3?L}z???}?<??|?v`)}[?u?W?G"????N?U5De?āզI??NGR?D???t???*<??w?????F3ղtq?Lx??n?`GӤfM?ͨoH?D??n??Z????Fv?mr??|?&OS*????MF<ӆ??s???????>wF??-K??(?m;?ZD??N?k?3?tg)???P????3???M?Խ?Q??2?Mj??l? R??Lo??5???n?r??S?:?.!;[5h2q?jsJ??X5^e???oE?f??ـ~ό??ڵgJHP???;ZB??)????B&?oa?4{?ΨM?l?ғǥ?OqR??L ?????)?Q???3???????t??A!?-qG??,>tf?????; J3?#ޝ#??b??>?&?;D-p????v?J??c?N??fJ?????<?m
|
|
??o??{?^?.?3? y?f????O?R?5?qM??Z??'vN?c?#?f]?)????.??}T?,??錯?G?zn?9??????>?9
|
|
??\?r??H?g?x??C?v??+?EPGe??(?I??????7u??a?&?]?Or?-??P?g?"??4?nݒ?ޞd??Z?~R5K?"??? d:?[?:o???l?{?r?T??????ˁ????D??/??;?????????o?ޠ?<???^/????9?H?w?`F:?EDnf,?zvx?4?Pq}?y$ʚX????`I?T??&M??c(5??߀1????o?n?????????4uW#*??4T????%?i??j|R???:?1b??DG??1?C????%?{3Xꔖ??A=?? ?????2d?e ????bD??&*???Yz9l?rd?a,??Ȕ??A??͒*P~??(M%??$???J??@_R?J?d?(N>!0:g?H??Ʂ???ޅ???'?bN7g??4??4? "?XѬ,???tDн?mζX????O?'??}{???d?^c?v?|zEbQ ????z???????i~?'O?s=? +??y???ɣ_.?"??ۣ],Օ??z??J?>???hZ?5?ߛ???ъOc???đ?0?ޒ?4??]??zWVa??%7@???{????y??p??g?B?o;F??????????x?W4?? >76*???v??/??nF2????r~??!???????7X?c???Od??M???E??oQ??O!8???~?"(w&j
|
|
?Hou??P&-w???5eY?7`?f??E?S?M??U??)!H??O?????]?????ɽ?#h?ث??i?pZ{??_~?վ??QA?^?\䕌*0??鼱!??(??C]?x??9??8@6???Cԟ`$?D??g8fӔ c??W^O???9r{?2??9#?A>??V? ???????1?g:???h7n?????̊2?=x??~4'?0?j?1?????d"?q? r?+??`T?#?^?h;?!?`??]??3Zd$ǚ???? ??5??[L??????:P?A??jV??WrV??[??[Ue?0?6????i?p?p?!O?u?5s???E甗??^?rL'?e?:??4(N]?7)/@??x? ??ͱ 1?Pּ0E?'??$??@p??(? ??????ߟ?+,?t\?ҧ??O??Kll????~?E?^???_???۷߀??-־??'?E?????l???O???????B??o???-?Ͱ???7i????
|
|
???~?i ??S????????7?f%?^?[Y?? ?6]? ??M?`?????ZΧ?m???=T?i?X?_???|???=4????u?,?|?j?+e?+{h>#e5?g???Z^?
|
|
?g?E??Z~?}????%_ ??{??h>?|?C??????|?????eA?E?\e??NK??ׇu?c?v?X Z???]????????t?㠤?[?????AE??fq\?p??e?????X????j????o????>?j?˾>???#|?>?de??3O?4?F?5?g$???2M \sQ.??????????T????? ?6K???p??K?w?~??z?*~\c?F?#?zQ~o???'?z@~?)???????p??uD?{????
|
|
lp
|
|
??_??w,?v?????O?5????\??u;\?pU??n`,|??t?p??
|
|
??,?,??Q?}???"?⨤[???s?????5?q
|
|
W\OK????H?????˄?X???5????]???,a????="?3??p???K?(?1???
|
|
????7???9??p-??k??6?.????o???o\_?? \??؝p?`?<?9?? ?㒾W~^,?'???Iw?????}???6?????<?? ???vM?k6??2\[x????6!?ɂ??O???"??0?ߕ}??}????/??????ؽ???J??/?O??
|
|
t?)||ac?f????%pu?z?Lb?@?$?? ?V?ކ+
|
|
???Z?Wo~??u\[|cx\?X??P?F?ນ?=???k?zPb??gQ?.?F??0????????s(\M:>u???v61|???? ???????\?????\?X??v??^??*??ؤ?[?ʒ??8!
|
|
?oLҫ????,?3?zU~? ??,?
|
|
??9??v??1?????S??{???Z?,?\????A??KWޗ??_?{p?W'K??p??1?0l????$Kh?p'tL%x???a8?/ھS??.m#-?D?^?7??b??????[?Ӗ'?6????HKHېʴ???1?,?f
|
|
???x^?H[????m??v???=?????}??~?##??zZ. ??,?x?????3^q?Qm
|
|
?_??W?!1???1&P??"???γ?<՟`\?q
|
|
??2??X?>c.?? k?:V?á?q<??? ?3???[?1?a|?>c(uLWmU?Y??O?.q?????c3?o1NT???0C??1?ڏ?_㸄c4?h???!?Q?6???ձ????? ?9?a?kyA{??h??/?~?M??.?xU??e3ç?s???ŭ|oӊ????;d7$??}??????A???????W_3????>????UC:?]??Y?c??????~~UA??xN??????????6Ƈ????%?ۗLm?Q?!y)?;ħ?r-<?????g?^??;?N?o?]?x7???#??????S??j??????n{ ???Zg?w??{????ݱ?kG?=?0ቂآ?????i?w?????ε;-kK?8????^???}??V?5n.?l?r???9s??'N|?????ᓂ?/???j?8wIȖYWtt?;?T???]tgّ????y??̚??⺘+?????-??????C'?N?ۯ????3;f??s??]?i?M??n?b????]??I?????????,?5uD??~k???M]/_Ԧ?˯?~_w????R~]??s<w]F?.?l?>??/{N??????^\fK2p߆{?Wxx?kw?sI?K??<??ѳ<c?Y?퇁??????5N?=?Ǟq:?JL????/s??sb?{?7?
|
|
?/t?ѹ41?vʵΘG>??ڮ*kY?v??c͆;?Jj???-#:?5eg??>w}???^utL???.z??;!?ڏ?9"???gotZ??\?i?????N?Z==`?%?_+?x?t?cR[_???ne?????<c?(??bR??6???c<??1??\c??f??H?zq??I&?????$??.???&??Ƅ??7??3)?Q? ?/???bR??&?? ??eR???M?7)??c?cy?0?6??N?~n?O?I9????L{8bbW?E?y]M?لϤ0c|O?1??Do?L??h?O??3Ʒ?ԛhb????/3?7DŽO??????R=<oR~?I9?L??6??Ϥ?~aRNd'?܀??o??}?????? o0??X{?٤_2?????q?~??s???W????Y???&?>??~?????B???DϘ?{??\?o2??X????0??i??fb?M?<?d\?????7???I;zL?gw?????Do?&????c??P???2?q]?j?/5?wL??1??}?D.?ɸ?shC}???l???? ?e??j??jR?C&?????ɤ?
|
|
&??>'??s??0??
|
|
???"?5????ȵݤ_ԛ??¤?Q&?t?7#???+QFK?????A????H?sAϖ????>xP?=?%p?41?WZ??R??xd????>?m??M??Z?v?%?Q?\?[?O.?ϡ~?[?[?.ҫӿ?:K~?C??12R?+?o??_?x?|??'?:Z?ye?ԧU?S????w???&?V??X????O?.????????rَ??:??4L????z.;G?a?(G}??Q?W.D?"?p}?????o??Շ????|VJ>U?Y$?O??%>V?[+Q??͔?V???QQ?K?^@?L?+?-??᳴??s??NH???Z>??????곢??UyE?yr!??VR?*A???Ϫ?6Zk?I?????zWK;ɔ??jz\$ygi˿??l?????'?qZ;?.?K?\HU???@W]????j????.??&I<??LB??Rq?d9e?? ??5???yZ~?v???,h?????i?7?v\xO???R???zx]??X??B?U+???UR???Pɧ|pW)?e?
|
|
????,g??Z?d???wk???v????J>?~-hU????^)??B?w?z???K??ڏ?DH|???e?d;??]в[~???ʇ?.??&?K??_??"??-?w??Γ?;P?????-?k?8???????Z=??Gʇ??^??v???!R?K????%??:>?J?Yr??w???e{UN???A??^??x?7M.??!???ܧ7?<ǒne?6?-?%?ߓ??ƹRޫ?$?]_??|X??Z?rCI???Q??(?T?????)?>???_?^????v?/????)m;??D?$???TH?S+70H?jq?????U???Jm?j?r?N??R?%?????U?[????R?Z?_?????~?????O???uk???qMp?ʏE?:;<O?y?V??$????wb??P?j?????Z??-Dž?j?-˷?????g'??eڇ@?r|??v???V?.?:?|??u???qNWiϙg?????"?wJ;9*?+S:?=??M$o?_??Y?s?ԧ?.e?Q??wI=??ϐ??"?O?~U?[Α????r???K;??_?e??#劔?W}?;Kƥ?r?T?a??jgk??[?+?\%?3N?;_??.??wd?Z?^??ϒ????U?.?>r???$? ??K??ί?ߦ??b????-??6?M ??r??w[WZݓ?S?)???K{(??!$?7H=??@???K???? <D*?H??rs?ʧK?/ {???-?]x\?j\?Ɓ2?R?U?Ñ7??ȁ?h]??QPT?8r???H???q?:?
|
|
?\?Ҍщ??j"??qdWdaY?w9?.?8???"s?Y?īt?????!?'?e?Ҝ?5E?z??&???'
|
|
?M??'?????ʢ?????8?-u??K???ܬ?Bǔ?Ң??<??I[???(?I?s8?o?DUK?cWA??l?^mI)???????Bg?]NM?$???t?y????$-^Q+u?Z?P?$?????),?`(S6?&?z??????gQ????"*U??/H?n??Q????©??xJ?3?+PXE?3??V??2G??k???
|
|
ȷ?t??-??S?l?????Fs??2U/pbd?*??z??#?NvV?_k?%?????ff?gAn<d??F??xe??[r??L??? zP?i
|
|
㚵?di?i^?????|g??"?v??.)-.??C? ??:?,??????9??r??J?wA?? ?'j??????>AO???+?P?:?kI???D?ū?54??8
|
|
U??)?@?«<T?|UiV!2??U??()w9xY?7?? ?4G_??!?ұPG??ɓ?M??- ?h??#oS?EΊ???P?F????B????~??(???.??)+3p??ej???P5y?}?Y?R?:i|6)??3|C???+O?M?3K?W??,?_?#???R?RxO?2OBG???.???m?[?S?9ch?????XG?az??[^??@?+?Pm5?h?h?????g6%??b?cw.?B4t??E?|??H?YŽ????ւ<????*?)Ĝ?jwi?TC??8?#uDɓ?
|
|
??a???O????,?òT7#?
|
|
??(??????ue??4????ťS??!???$?[ws???Y\i:E?ܰ?{;??A1eAJ1?Ϻd?mV???u?Tn?f x
|
|
?R|??Ʉt q?͞?CoVYvA???jv?c???;????ߊ?4?:????+d?L?o?'?N?e????-h???2W?d?q:]N?ۋT???h???e|(?#G?WF?]?9????쾾? 6???=T?&??/L????>?܋???[?}???????r?A}?IӨt??'C????`EI?A?2]Fu?T?*?5???&??b??K}sJ?S_????j|???f???*?Q`ć??y??҈?Y
|
|
?DdRT??F?w?;???j"?Gwox?ޠ@??Nvy)?_????lgoE%?e???_??[Z<YN?t??>????r(F?C?]?ٝ._aqV?????Ru>?˲??8`P=???0??~?t?F
|
|
?~)R??t3?U?6??y?轸ė??$xzj$W??????y???`?8?
|
|
PW?f
|
|
?5A?d&W8s?V??f?iS??s??ff??(<6?,?D?.?}i8?ɁyS?na??S?????k??
|
|
VO.??''XFgH?"?e??e?]V??F???(???T;???oyQA??u?wp?I??Q
|
|
?N??Io\I?d??EM? ?=tS鲂?%0QH???4ȳߊ??2?^?Sgg馚06g?H?? 49??dT&W~??I? ]?g}W;?2W??˭D:a??o?X?gX?c=5h?u??DAN?d???#Kd̢?wfc?u?@k(<]?z??z@??|Jü?7
|
|
h4K`??u?~????Ogpd?">5?*@?Z?D?i}??,??"̆!?1yA??P?{?IJ?f????
|
|
???<?`??+c???=}?3?+???'&!???o,gTmq8&??Gy ??t ӈԔ?}??ѿ/??B?;???ӟnI-???9??????;?}??W?=j????VϽQ?}??!>+tx????Zy??+?F? ˉ?XW?L?A????T??}???:?N?Q=?x?\???$???7?&????$^??$>O????>_?gl????D????Atx??+ux??g4O_?<e????S??:Y?B??B??:<A Tk?~??*?????
|
|
??F}??a?:??tV=.ˉ?????X}z?!#^?ϗ?$D?e??r_v?I? :<A????[e?t?B?]t?*?}z??z?$????? :?V?t?E?Y????}???\'?Р???ʍ8?i??2}????t?V?ު?˥?cux?L?ãd?:|?<?i?O??=.{hԗ#???\??}?s?_(?:?R??B?'H?Q????z???m?O?ᵩR:?R?+tx???tx?ģz??????:<A?:ܚ.?:<R?;t?>?O?Q?o?x|/?_???&???/??ӥtx??u??J??+t? q?_?C?i:??/??÷???:????>ux?L_???#?_?í;^????N??e??:?yY?^"??????
|
|
:|?Lߨ?_???z???L??ߔ?:?A??ї#???p?.?'??m2}????t?{2?<^!???m???:|?L?X?????%?????e??:\??w??dzE?G???ÛT}^??Gr??? ?G????.??'?????_?U?????K??d?<??????g.`?_?p?3|8?k~?W0|?????~??[??
|
|
??p~N?>?W0\a8?7???s???j?G?
|
|
? e????p~?d,??3<????p~??????4???? c[?3??-????%??U??^?????p~|?|??ջ??X?????-f?y??Z???V0??[V?p??63??͵????????c??W???*???-q>??1?????s???nex?c??e8??3???3<??0??p~?W?????7?g2|????j ???e??????y???~?p}2y2???/f8??_????ʯc8?Gq3???[??w0?b??c??+????_??F?G3??ׇ_??0?_??H?_??(??0?????a8??.???????#&0???ig??OcxO?O`?v?g2<???p~?n ?w3???W0???X????_???3|?????ώ^?p~V_-????+~????|??p~^?V???^w0??%???}Yz??W3??????pͺ??>??1??g??/?p~.???0<??????g?@?'0<??v???_?>??~????|?????ex??dx%?????>???????o2??/f?5?e?C_?p??1??+????2|+????6??cx"??'1????od8??X???'???dx-ãng???)?a?Q??2???3|$?>??v???4??c?3??!<?g8??5???,???y\??֕_??y???????????d|.f?????c???i?c?;???????;????????3\a?I?70<???`???W?p~u$??3<?᭙??_???0???2?F??3|???p;?obx??y?>?????????%???w0??????s?>?3<??_??<?g?$?~1ó^??????|???9??????????p'??1|???2???yod?????cx#?#^??(???p+??????;?????p~4???????????d8???|??0???w2???^??R??cx??3???????/g?b?ocx-??`?[?c?????)??????????Y?V?w????_3????`?e????0????H????(?Oc???????e8_??g??'0|&????i?W3???d?=?g?l??0???`x=?+^??y???????^??????ޅ???i??cx??1|3????p??A;~6??^u8?^??o?/???ֹ?(?!?!?/??_S?q?????7???4ytϾ&??t$?X?g+?ÑE????H?????H?R?g!ѽ?ƥt?|?{ M?C*??4??)!?Ҹ???$:i\????4.m{?>?h\???}i\??X?>?4.I{"?ޏ4.E{,D?B y?@z;ґ$???!ݙ?'z?]H~?W"}6?O?r??!??^?tW???EH?K??8???D??t?O??Hw#????tw??軑>??'??H~?oG?o$?ѓ????'?f?/"?Gz?V???H_L?=?$?у????'?/??$?ѽ????'?җ??DwG?r???.Hǐ?D?#ݓ?':?^$??'?}?O?1?{??DD?J????H?!??ޅ?U$?o??Hǒ?D??t?O?:????D?D?j????H?#??^?t???EH ??~?$??#O?}?҃H~?g#=??'?n????D?"=??'?v????DOB???蛑????E?t?O?H?m$??ÑN?=?D???H'??D?B:??'??ב?DwGz?Ot??$???H???D?"=??'?dУH~??!?J?}??$????C???$?Ij??H~??C?z???uH?#??^?t:?O?r?3H~?? =??'z?7??D???$??#=??'?~?o"??????$??w#=??'??[H~?oG?V???IH?F?}3???Wj?3I~?G"?E?=?I$?у??&???t?Ot/??$??=??%???t?Ot??I~?Ñ. ??E?v???k????'?҅$????L???"???]H?????H???D????$???.%??^?t?O?r?]$??K?.'??^??]$?я#=??'?a?+H~??Gz*?O?l??&????i$?ѥHO'????$?ѓ??I?}3ҳH???HW??D?D?????H?&???t?Ot_???D?Bz.?Ot??%????}$??]??G?????':??I~?O????'??'??>?t
|
|
?O?~? ??ޅ?$?qj???D???C$???~??'z%ҏ??D/G?$??K?~??'z??$??~??H~?Fz?O??H???'z6ҏ??Dߍ?$?ѥH???'?v??$?????S$??7#???j???D?D?i????H/"????3$??}?~??'??ϑ?D?@?y????H?@????$???H?H??????????'??/??DD?e????H?B???WI??????%??~?e$???^N????H~??#?:?O??? ??^???$?я#??O??H? ????I~?g#???'?n?W??D?"??O??H?K?= ??$??7#???????:???H?%????:????H?'???????^Ho$????&????Hד?DwAz3?Ot8?[H~?C?~??'??;@?O?}?H~?"?!?O?~??"??ޅ??$?1j????D???6???uHo'??^??'$??ˑ???'z ҟ??D/B?s???Ǒ???'?a?w??Dߏ?N????H?"?????$?ѥHI?};?_??DOBz?O??H?%???Gz?O?H??&????~????H ????7$?ѽ????'??ߑ?DwG?{???.H+$???H{H~?C?>H?}rЇH~??!}??'? ????D?G??O?.????
|
|
??H7??D???$???>F???H~??#?3?O??!??^??q???Ǒ>A??0ҍ$???????!?4{M???C,qM?????n^w?坮?N???xyg??3?wg???~ݹ@މ?H????>w~n?ʝo?i???k?v???????Ƴ???^?f?r??p?֦}?~ ?^)??\?M????ݽξ??????m?唹뫔y;d??75?????^?l????U????$??????a?WFÔU?5ݺ?M% !?/?y9?l?? ??2`n?d?;???Ӵ?VύP@?E???3
|
|
???ϯn3??[W^?f(V t҇?GS??N??O)y0???mbP5m<??-w?4@?L(0&??)?@?^y???K??_\
|
|
h?(A}J?????B??H
|
|
?x2N?H ??G???X^u??e(xb$|?P|???^??y"}?H??֛?x?>?XWjg??W??H????H?v5.??ՁIukD???&???M??)??FBz????Bƚ??0??
|
|
9<???ϗ?.??"?ݾ?c?G??q"??????[u?????????_??W@??%?3|??????_3l ???? ? (x??h????㶬A?*N覫??0????ʣ?P?Þ?r?{????<?????0? ??u?2?????????^{uB?D?(???'?Ҋd????W^;oyQ??m?T^wQ?k
|
|
???n??`???-c<B?N
|
|
UC?sw??7?:@?
|
|
??)??6)Ae6w}??۠?3?{????g???Q?B???)?
|
|
???H}?<N????lw????@C?Yu??"쀤T_????!??Wp??Ƶ?wL??v??V?m6?????;???#quJ5f??W"a\E??+????A?Wp??=w[?<Ny??N???ۮk?????ƜUTUt?*?̥v????i?v+?#??T?????|?????^?y?g?}??۫??C??u?????^?byNנ?*ˏ ??Bn?'?TI??F2ޝ????a2??^G?%?:???٪;?~ }R?[?,??5mBL?ے
|
|
Z????M"'????믶>???????W?{DC|?4?za?o5???.?y??7UmC<2??>?Vԗ??Sޒ6??g?@???q?kc?Uje??dc??&0v<?ݤt??=??3`?P????Ȭ'????GXe???Y?*??:?H#?^e2$>?*?W???k?????;??w?r?{j?O??F??R6:???ir?????????ǩ??,M??Aj??1s??~D&~3?????Bc?^??q?,????Z???M?Q=(AZ,? ??Iq??%'?X???~????U????:??5]w??hW??T?N??^d?-?g????Rk.? JQ?B????!`6?э?Ac?F$?S?C_P=4b"pn????O?&??r?jmr-???V???Z?nz?Qe1@?????G???G?t??!J?t???2_{????7????f?=5yh???Þ?
|
|
?ݤP[?L??&e?Bm9?rᘯ?Q?4?{;??????ZY?wToe ?M?άw???Xq}?e??ds??$Mp?v???#,?>?????AÏ?ZK?????Ϡ????zX9?I????:???X7????=]??J7?XYO?
|
|
%$??^?f??R????O???5gpw????D??:9ӝ?)S:??mj??,~5?G?8D???U??/????????
|
|
??W}?3?U]????l??oe?<??O?+?}????>???IxU??'???}?8?k???i?g????P??x??ko????-??O?{??\kR?{}R4??????7??? ??g???]?<??y?)nGl??ԝmU?1???@?M?%(??.??.??9?4?/?h???W???{5T????N(?ԏr?7???G̭???????g????z2D??uSu???}?ƈ??(ԍ'(?
|
|
?ӿv ?O?^?oUӣ?W8"V%? ?{?l@m07??EF??w+?L???H??0? -?^W???f??(b??EJMatH?q?(?t?|(R/??s|_? ?p;EC/|'_??`?ʳh??Џ?K?H???h?Ҹ_?
|
|
?"_?
|
|
?V?ro?*??cP??^?sX?i>ծjM???P???T1gv̼?n#??)?d?w"c?q)Y???k?L????+???
|
|
??߬X??`???D|?}?x? Rk?M????y??fZ?J?`<????'?lP/??hO=??fbrc????]?? ?????;p@6T?????}??C?/????I?y?o??????P??Qdy?Z?????ثg??x??d?q??"?? ??~?@d?J0?|?љG?h???x(?ZД??;??? ???6w?2??g??!:b???0?Q?T???7??????q9r>l\NSE?ps?7'z? J??
|
|
ir ???)=Ś?`@?qz)v?j?UY:X??p??KI?_h?%??;?s"Js?&}:??D???z??????,?Nd\J?z?b?WWĢ??+???X?? ??E,v?_?F?f?C??)C?@?Q??GP??-?]?U??h????b????~??OXͿIP?En/????&??Wg@?D[?hu?uؑ??R??+3d?s??t??i:?{?N?????<?O??~3kwن??9?|???????7?k{??<?B??????????BUsO?5F?????3r???#~?~?> |