|
#!/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.3_amd64 subdirectory
|
|
--exclude-subdir exclude the laview-latex-struct_0.1.3_amd64 subdirectory
|
|
EOF
|
|
exit 1
|
|
}
|
|
|
|
cpack_echo_exit()
|
|
{
|
|
echo $1
|
|
exit 1
|
|
}
|
|
|
|
# Display version
|
|
cpack_version()
|
|
{
|
|
echo "laview-latex-struct Installer Version: 0.1.3, 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.3_amd64\""
|
|
echo "Do you want to include the subdirectory laview-latex-struct_0.1.3_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.3_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.3_amd64"
|
|
|
|
echo "Unpacking finished successfully"
|
|
|
|
exit 0
|
|
#-----------------------------------------------------------
|
|
# Start of TAR.GZ file
|
|
#-----------------------------------------------------------;
|
|
|
|
? ǖ?T ?} @T????K?hid.?Q?????V??6*?4l?b??R??r"_d???Zx?k?^d?Y)???&ii????L+??s??;s?{g??ۏg>??]?9??=??n?y%??fgd???o*Ș?o?scA??V~c???,?~c?`8d?????a??bd?QÇF?o?9,2?5?[???y????!QC?E??^??e???&?=E?^??:Ε1???/??i?Q?ɍ??B[ 㳍?s??$Y???C?
|
|
?d?.2ٍ????s?6?)8?0c???8#?f???H???Nn.)???VR
|
|
d?i??E?6cDV?-#?Vb??/?AJ?cmq????2?e?gm%%E%?E?2?y??@`ѝ&O???81>n?I?If?D????ĉ???ȏ?L7)???/?w????Y`ka32ف?,?1? ???h?%?Fl?+?⒋??cJqA?ݒ?+?Ώʇ???Ɯ??R?(?U????(?f??????"?-?UH1`?`vQ~6??????PHiI?5?0?V>?0?Vj?qfK4?????R??'?<?ؒ_hK??e?_?R?9ƨ:8x???dk?X??5`?B??٬??e??f?**???ݕ??1?0???Z*??f??n?>???Ш?QCBAQ?1??3Ș`??l*)ɘ;ZQ=o??ng??V&?.mK9?????9???N?XT?,6`3
|
|
?s??q??????}$????L;???????f-b???LTt kk??-*`(cV?1????͔??a?t0o-?P??????s_D,???^BUwJ???s??yVa??'ϖ??gW?W?,Q?4?%?Ԯ0???l??7(?l$2M???H?iܤ? &?;+u.?3??i]1\??%[V??)gͶ?d????5??f???g?\???]??
|
|
|
|
??!~?@??Ų?S'$Y??'?VH??d!(yҝ?c?P7N?7h??me,??n-fɿ\AA?
|
|
?3$jĈ,+?8?D?d??DYE?v[??]h?-????#??E??t???W"^??@????8?c[????>?????>????݀d?#۟???]Da?1?(?˃NY???ϸHM7?ꁭh?????w???NKQa?]?ԡSZ??r??S?M????L?4?=M?4QDf?p?8?V9??N?5ff>?`
|
|
??Y?ދtJ?D???P>&6?q??)J&9^EXL*"%qb?%^]XY????9|?????1j!N?fA?v???y???++?Vb?_???fq5_A?E??f)
|
|
?{?(V?^??f?j???2?\?96???g?*,??n/??_&P??K??????pps-`?RW2?#????9T??w??T?be??????????????=?????fٟ?Z??"UVF?=??????ڒ`??d??1??S?!s[????g?????9??0W41eb?5֜h?'U'?ŧY㓓'??Ts|r?|??B?9?f???'e?d?n?¢ 9?7??Q?K?ez??J???N??^6?- x4?V_jb?RՕ?%N????V?D??=??0?Z??L蒌???R?-???1A???Ns;?8?? &|?#????:??P??u????J?UyOR?&?(Jٴ?FԔ??Z2?Vn?oE<*?e?l??hbRG۫?f??X{$zY??:\?h?J??c??=?b?6@??S?⪄??F?? ????j/??j??/?????Ye?6??~?ڤ????9j?P???QÇ?????????y??Ǟg3Na?峊Y?(Q]??_????9F??j?4!?z?$?i?5)y???????4%1?N???&?)?ɓcS?c'?9?5!6֚??<??<?j?Z??a???^S????? ?nU17alT(?g{$?Q@U ??)????UY??H
|
|
Lp???kIS?S?J??&?M?5F?ֵ?geY??`œ^??@?&? cD?k???ݚ81%?41?ASJ?1??G??B??(;?w????-?5!>???<??,?U?"?_?'?jS??????$$?(/ɰ$uɣ?[?D[+?Wk?.??LD[?fkA
|
|
k?Ŕ?qLv?u?!???{??F?+|???&m?H?SzQ???:F_?E?????Yt???3??s??.?[?????0??`?8?Ւ-N=????|?)?p_???l?\?R?E{?f??]ط?^??{/??=Z?w??^
|
|
??q????|?U?VM?2z:>a5??4?/kgMIbcH???? ???x?p???r????%?ln?tt?????{??B?t^??_???9ZR?U?????H???^?zC븾2?f z?F?} ?+D?5??uCbV?KJ?]?x?Έ???.?{?N?X?Lɦ ??UT 6?????R.?{?KQ4??bߵ?A??%?????)|tow)~U???w????????[?r_?Ez??z?%???>?3?L?L??zpO????/lN 9eC??v?5?TW??y????r?yQ?E풱؋?#?EDZp??S??\%?K??A馄?:???Xԣ?????q?弨??WFV????b Ъ?g?????x???(?-b??Z??6?????5???l*?=??k??3?V?v?z=턊????}?u?????dS?91?=?'0?"?"?+0?*?빸?A?:/C????"?ע/n?Э?U?E>L???s?J?;*?R?j?Q5?(Y??J?䱈TݧT\????"?p1C?\?"d??`???
|
|
????v?2???G.Ïj?`?U?????????a?u-??u|QT?[?_EhS?Cz?,y?%???p٢??AI?kQ??}???[?x??|?Z??b:,ܿH??\4?KMm?C5*??/}??K???o?????-???ys|?dX ???T??t?ܩ?i?3:pI?w?e?/l?9]?+_4˾????
|
|
? ?O5t'S?S?ȋ?Di???^??I?,z?ב????\??doT???x_s˻cz۲?ٕm?MY?]:?U?厬?~?Ƕ?v????f?o???V?W????߯T?]X?7a?????D?ީ?֜?l??????|Vݖ?85%??g???????<??۾mznӫ??9???߯S???5????夦_=Nk??????t?K??????ʶ?`z5??[??7?Z?????.?&S?-?}Zӫ/???????????Gv??Cx?;??d?)Y?y???;?z??1?G??????G?mЃ?T?????N$??]It#u??EG?è??Z??ӓ??h
|
|
z5?S?FR?ڡ,?&&h?G?#Z??T?2.?[?
|
|
Q4??I1>?n???C_??3??b?B???
|
|
????ܕ?EW???????? -?k?Q֣/??ht<?1_;xE?Y???z??~?g?J»??'u?8|??Տ??t??L?$???'$?jOw???V|???l???\/ǘ ?nӘ?)ٔ??8??Vh???6:?34F?????d?? ne̅g?B?*?t?y#?G? 7#?d???4?_z?q?vɱ(7???7?L~*f?|v??溡ݫ??zm?Z?/ W??E]9??}?B;?V???){7?"??~??$*?2?? ?}R??eN-++
|
|
E??Ƴi???e???
|
|
?V<6?>??u)>?C[?5?????Ō>l????o?i\?濤?*6}???]?T?????0 ??ȗ?\?.)ʿ07?K?\W#Y??_?|L??<?g2??XJ???*?tu=?Գ???U?3???/>????̜dJN?ON????.V??}/?T????????K:??~???F~z?j:?Q????Z?3?o+>??zoYF?=l?嶮?!ZZ??2??ʫ'?(?Oq!??h?X<{???3?W?!???????X?[???$???????[pE??ʮ????)Z??????/??3?^??u?֯???DVk??????? ???o???}{?'E)h?g??!fj+b݊?P卫?bxU???CV?N?Ve??ٽ?o??+wr??.Rr??????!?!??j?65?-???H`??c??'???H<NX{??[E????٬?$I&???[?g?X??D????y??Y{?????MƟ̧???E??Tw~??eܼ?={?ذa??*^k?K?f??z?8k0n??nϾ`L?&L?k??41%uT0]??\?1U?3bѮ?A~`?Fz?@?
|
|
d?ep?
|
|
??"x???2X? M=2?z????????]?S?+?w3<??????z????G?3?Fi+EN
|
|
{ xM?Qa8??R??W?}???͑??%??iy1???WCj??x5Tk??$¼?@[]?S????\??e6?FԼ?G???ꖥ?~???
|
|
T7??
|
|
;E?<?L?Q??&??????j?OmH(??f?x??6
|
|
} O??-<????%?"x????*?Ɠ??:?\???pK??ǣ(]~+??J?n??w5??
|
|
?q????V??Z?(??v/?????*+"??`ڢ??\?$?r?l"???&?58d?y?V?*E?EH?5o??p????U??7?]?0>?ш?*?\???|dV??V?$?|??kV???O????_P???SG???-??mh"???^??i??]?^?-"?@??c??R?L?????*]?-???^G?eѰ?+s???[?
|
|
??yݭG??? $??%?w?e?6Q??v ??0I?? ?????Zo?.?*???(K??p?'?>]',k???}???ou
|
|
?Y?????E??{??t?֮??+a4e?? ??b4Nd?w?hn??oM?Y)y?R??+?r?>??B??*??NǬ?
|
|
?Λ1?ꤔn }?O??y??h?ݻm۴=?W;]P??3??& oks?????D~K??ލY?W??y*dԘԶVD?E\??????
|
|
??seo[?
|
|
a=?[+???٬?X??^(???????=N?ʷTx???ʇxHY?\8jjU????x?jSQ??˹$Ɨ??ʴZR??֛?x?=n?????ʦ??n?[κ???? A?,?????rɭ?Fu??I?(?e
|
|
?4w?Z+??B??(Rʥ???j?|????ɬ֟??;?c}???]??\?????e??+2?l??wi??4???Fy?j??Y??]?>?4?g?]??r?{&?)???+?
|
|
??궆??c??3??-?u?????I?W??]}g?????T???7???se%?謝؇??+Ȩ???4w=*^?ݚşƉ<w???M?|P??r?w5?????˼63?~??w4?=??u-??`"b?Z?ȗ?i?|?O&/??&?Zk(W#:????^2?\?+!??7???oP?????QS<?K]G㯅?O?ӗ??[?b??y%???B??G?_C???Fh??=)WՆqMTsgR?>?-???Jz??פ??$????nZtvY?<s?Z???Գ̜?MÜ?i,ahy^ڄ?}??H?? x?'?j(????Et?ǞKH*?W??=???ݘ"?i\?
|
|
???C??:ױi5??j??>?k?LC30뜰??"?u??zϭ?P???????^??~ҖR_????9EE?=?VY?{??????Xq?)Ç?????q?{J??f???o??????
|
|
?3ob??w .-?6o`??<???g??d???7G7F?eؐ[?!^5??6??????h?613??С:??<*??O????=4j???????[o???? ??8F?џ????
|
|
??{?´????@?7+??|٧???????=y??^E?@?/o/ϗ????? W#??L:f?nϾ??????~?A??^仃???E??_??N???WbP|?-Pѽ???}?~?????>??'0&????7?oھ?????+?j0\??еG?_bݞf0=?9???P?p?Ԯ[??t??ڵCh??"nlxUd???n? 0??m???eِ????E1???c
|
|
?K:?
|
|
|
|
O
|
|
|
|
|
|
2?7^????ۺ??,
|
|
j?O??P>???
|
|
??}?`??:<&?6????)?С?!p??p?]\??1?S?]??
|
|
?_~???1???Lk0?.?|??еcE礥??_?h??ӎeY]'?l?4?<Cl?,?T????>/?????o???>?e?W٧?}^c????[??m?}??׳?{??>?l\-?o?lm?]pu쳃???>????>??9?>?
|
|
|?}>??߇٧?}?????s?}$?9?>ߐ???;???}~ ?O?s?????9??
|
|
?0???ю}.a? ???>?/ߗ????U??<????.p?}%???>W?O/??a?}?o#?
|
|
?}?\/??}??}#?,~G????[??P??>??g4??a?q?ľc??q?;?}'????3Ap?w???>ɂ?̾??ϝ?3?}??????}??.?e??,??f??O>??d?YD?B??X?{?w??mg߳?g????<???>?????
|
|
?????֫??ش??5????q??z?bG
|
|
??????W???{??W?????l??[??o?{W?w9????#a ۷?Oߏ?????l%_w?a?(??Ί?.?BL\X??+?i??w??]K??Z?^;??w/o????OA]uײCl
|
|
??~???}???h[ĉ?????[?u?C??M-?{+_q????fk?NsM??u?vg5?^???{W?3??cM@?κ?O=??_?M{?C?????`?r_??
|
|
k?v?wE?????~x???;"?]?{_?Z?ܶ????s????N{????7l??冎K{v???(`?G????%Sw|eں???O.?{???lN?q?}?3{?}??k?;N>:???Só??h????vJ?y?߾4?|?Q?f?!]6Ǖ??a?6?1+?????s???v#x?HدS??8tj߷??????/^Ѱ?_??7???????{??h}u??3?ܞ?fû??h<?h?m??K.?????ㆯ~???5䲗?wh??????Sl|zg??c????˱xr???{o8ݐ??w??f?????5KFu?T?????u??]G???]??9???q??iQ??K2^kں(?????}~?ߞܺ?iZ~i???5?sޤ?_Y?p?Ϳ??2??g9W:
|
|
?-=?Yƴ????y??@ǁs????>?J?G?]yvdzw?2??g?U3?/sf>??L??&?K?????];??y!?7n]^??????a?+?g8?[r?Ko߹???o=?"?қ7????c!??}n?uy??οy???3?????????????G?k9ѯ??EM_??pM@IlV??m??F???MZ?̗?O?G~d????O???kN?k????w|Y?˟ޛ?kӧ?M?wև?????]????~g?{g???ɗw?????#W?v???}?;e?H?{?Ǭ?Gz~??0?_?????????;`s?3??˪?&????+O%???qo??? ?<???Y?e~wpy?Ï????o?b?n]???~N?????k????L;N||?2礗&|??c#??L?ͼ?`覑ve;m~|?6???|?Q?/??????
|
|
??S.??????a?? ѱ?N?0?4j?q:??^??O?I?2L???c?eݵ?}:z}?Y?7????ĥ??Wi??zӱ????:?r?6??N?W??GG?T~???w
|
|
??u??]????Ӿ%:?{:??6????%??5Wh?t??KG??:?w?N???6?o??щ:?2@?I?މ:?Ku?}_'??=??kt?W?Nܘ??-:?f蔓??.Kt??G?m҉?:?????d;Xtڥ̠??^?߬?^!???>Fm~??<G???S?v7w??:?:??6?]G?z?~?K'???)?E'>???L??i߷u??X}??ȳF??:z???/}u?v????G?r"u??c??:?Ь#Ow??????7m:???{y?6?S???Љ'????a:??ԑǩS?"???ӾQ:v?0hǙOu??k:??C?O^??+@'^?ՠͿ?O>??Ot?Q'}?A?7?#v?~zP??'t???cuʟ?c?[u??c:~rZ?>?u???N;nԑ3?}?k?t?
|
|
Ӊ??餿B???u켥??x}yHl???????????r-??]8_??c?\??j???[֎?K?E???/?79??w%??C?#v???ޜO???+zp??竟???y??jQ?,?ث?^a??.?????U?9?]?w
|
|
?Ԕp>N????(????
|
|
;ԏP?Dȓޑ??o???2?i??????y???F獁J9?u?|?????W)???4?6 {_?8S?3???!\?|???,???q?l?K?}vr,???o>ű|?F!g?#\Ny??TWюB/???+???9?|?h????
|
|
?1?V?W???B?+??B{?./*?̺F??˗۱???^???~{7a??J9?D?U?t?.??Q?o??
|
|
???R??9*j?V??;/_>?vJ?y?ؔ?G?}E?M?,PQ~VQ?J ??T???n?/*?o?R?Y?@???NюI?? ??[??}z?zG*??6!g???}Xn?cJyrD?x_????tJY?k"?U??8P?<\ ?߫?'Sسv???wq ??c??_??J????~Y?q_??~sR)g????N?CĽ?y?r??O?I?ל???Qo?6!???&?WW???2Q?8?5N?
|
|
??B_Y?'????짧D?H?Ҟ??}:+?s????Ÿ#??"~V
|
|
P??9a?? ?? ? ???9?.S??^??'?9&?¯??_?q?
|
|
?7^?GK?<??8 f??U??GD?7??}??O???u?"??8
|
|
n??????@?kU?p^>??Nı?G??????x???[E?ω?D??D?O?q&H?ۤK???K?g?8????G??[?_??㈈r?$?q??e???8Y?Y??k?8,??qa??ϕ?)??V????8_-?K?}C?????tO??燄???A?o?OߥԫIاZ?4??Y'???^?^??p?<???a!gh???P?o??EĽ?.????ƌ?Q?_*?o??x?H??зf?j?#?W }]?V?Kǔv?t??????#??9P??r?^(?0T\,?F?-T?W???cV*??9????9y?~.ϯ?/?M.??<n^??_'?o#8??)??Z1?
|
|
?3????T[?^??d??)?4~???K???Ǖv?/??I??X'?{?j??q??<?????_!?]??W[??=%?T?m??U{?z?C?˵;???,??9_$?????C?k??녝??^?s?J?'?????>??yQ?KE????<?4q`????x?H&??Y5??N?!R5>6?r?U??????$??bE"?W=???X#ڱB?W? e????D?1???Qs???/q?J??8%???R???]j??X?7N?y#?G?G?g??ۅV?yr\?U?2??b?[QͱI?7?y?A̻??xD?W?F)??|y='????d??,???k?ϱ?^7???
|
|
?_?: ??j?0 D??
|
|
;
|
|
?9ѯ??V????Q?_o??c?v?F???g??j?1(?d???J;1?????5]?,'S?W?h/9T??ı?'????/??<??/?^??hQN??+y??Y?Ǫ???/?{???3Ji??E??C9_'??,?R?s???PIi?[E?
|
|
Q?5J??????B??>?8f???J??q?<?7*Dž!g?H??SEܮU?????O?\Y~????O8??u?">?????I̟???B??ۄ?6??5???>???!?^ռ????%:?S???o
|
|
b.??
|
|
r?qy|??_????z]+ǯS"?o?X^O} ?O}5?r?Y,????~N??o???ĸS!)۽??3?
|
|
?Y%?EF1/??_.?p??r,r<??B?M?=?y?bzjxF?K?X???rz???2Χ?v?Dā*?/$?-CءZ???A?a???????A????????DZ<o?"?]?1e<Mا??J;???;"?????????|C4X????
|
|
?p???j5X???k?2XS'X?m%???R??$uB,??w??c?G?Y?P@FA?<?϶&?t??[?!???_c-?????Ȱ????b9E??UE*q???}
|
|
B~???t????u?Uf̂?E???????К?c???/???()?/̕Q?.??.*̲???6?[.Q??؞??<????????|???[?l??F?C?@*?\?1?2??aP4???Ėcȵ??3?ь,0OA;?Ϝ???S$????.0???V??.??K????v?)???`.K\4?ЖM
|
|
Ƚ"ϖu?????Rk?Bj&Y?=*7??AY.X?m.?N"???í???y?_*?k^&????*?%j(??<?i?cP?t??????狼'r???B)???(???t*?ea???P??VPQ???>WW@?z?p݊???+??͊??9?????????\??.c-øR??튘\???2??|,][h?2D7ȭ???=???;Ƶ\[???o??D?}=*<?5uF.t?
|
|
??[?a?mVVD?2{N4T_b?͊?\a??
|
|
?.?feس??of?"?GB???gq???xd???Q+??ӧ?r D?|a(????a,d?d?*????(d1??P\Ɵ??#8?$?S?Ւ?B>(
|
|
??Ν?YT?????g1????WN>3?p4???V^̲?cS5?5???@?ՏS?o3_i?^&w??~???$?!s????
|
|
?rYܲe??]?^T????+ ?y?W??M?Q??wk??ȣ4mO????p=^?K!?0K?????????j-u??(((ʊ?j??14[??c? ]?u?z9LF????????????l6?,dà?b?y I?Y??mɠI\#???@?*)??z???h?|`???
|
|
????ɔ??(?.???̚????»f?,??sy??X????֔?17%?Ӻ?w??dF?<jϸǦyX~,@??e?????'?????G????J?u}?,:?ŧ?b??S???ܒ"? ???ԕN?????[?wMZ1M??{?P&?wsU:YN??i?????????H???J?Yh?Ҭ?|>????P»>?H??ye??",
|
|
~?*??????b!??=OC??q!?8>???Ce??ڋf?T???fW?9????J)bQ?h?əX???ۚ?Y?+?e??5??5???{$4?z9?Ȫ7??N|W䣻?+߭?`5?zL>uޗ?_??[JF?7_?i?~w???Rosuf?????ը9?T?{L/o??G?o???-???]zExMAߵ?S????'Y???=?z8?^k?S?X
|
|
;;?G??V?l?Y^?W?;??qͧ4??S?g?u?6?[? W?pS?S?}E?R?l?4?_??;?J?v(??E??Z???F?G??????^?g?ඤP?ZIiU??E2l?or?4|GZ^?m?¢lyg??2[?k?E$
|
|
?Iy?,???摬?|r??b䃻?**.+?cN??^???;z????%?_r?
|
|
?3????DU????l??P??Ux?,riV??l??%f??d[?|?G[ʋ
|
|
??"???1?e
|
|
?΅?퍢bw??b?鱑pnAj? ????B&k [???t??PW>???????3??m?z??fp[???c L?^~???????I?)??<???Vm?d?ʭE?Mn?`?w?ֳV~L?`?a????>?O????Ȱk?M?0?*??A-I?댼???R)y?N?R?)?f /?R?ƌ??E=^?k8??s??F?.*?F?r????ic}?sJ?j??2?~??)?*?X*?? ?¬C?w??"ݨ-͟U?9*J??/?Oid?)??y??n"?G????Q?b
|
|
??RQVF????P\R????Vk.????????{??N?+*?>??W??J??U??V?NHvG3o??ҨW?Ž?1?[a?{????Z'???Ss???$oǕD?b'Y?Ez>?UV?j?qC???EJz?鹍?N?8?x??_Ai???~I?????`???S04?? _2?x???ج{T?A???hf?9jW?LF??W????s??\?!<??(??R?^&??K<?k???3??kb<?ȩxq?^????(??5??Rݠ-????>?%-???Gƫ?B?7h?7?V???D^?V???;?pmR?Xp??D?ق??? ??c?٤ v??3??vc??hxD??|g??!?#?c??c?????l&??j̈́i \>g?? ?K??X??C5x??~??R???B??#?????????n????ϻ-?? Z=?z?????ϧ-~?W??H?W??jqc\??7
|
|
???o?nR?+ҧ??f??\???%_#???J?J??????;y*?؏??b?Q<'XśE??*~?Hߨ????*?I??[T????T|??+T|?x??r?|@????#?T|?(?ZŏNxI-????F'?:?$?7??
|
|
Q?Yu??Cv??ҋtF*ʉP????V*? V?FQN?Vm??*>R<08I'}????e???$Q?*uzqA?ZN??|#?>???ࣷ?????Mŧ~??????S???~7I?7Eq;4???"ň?]?
|
|
?|??_#҇??H?ި??G??4?>Zſ.?/W???A˫T|?x?G??O??Y_#???S????2M??~??7^??u*?V<㬊OO?|?U9?OS?U?/W?M?>?uj?1au?O?zw??|J?A??????
|
|
;???Q?7??_Ϊ?z?G?R?+ndIS???~?U*??#a?.???r???a?U? ??1??????T??TΧ???"}??_+?Y]?H_??'??_R?"}?????Zo???*~?(?Q?G??M*?n??Y?'??gU??"}?%_.҇???ި?_?#T|?H??E??H?OR?;Ÿ?????U|?H_?G???*>I?I??(?_???H_????U|?Hߨ??%?C?oV???ܫ?/?~?4_?C??CJ^????r?????????ؗP??>_???O????????|??Mү"|"? ???/?>?????=?O?%|?wP?I9??????#?4?q?^"??V??K?]???$}??>???I9ф?I??? ? ߞ?I????i???[I'?&??~??????&儯'|?w~9?/!|??~??'|5??/?{????A?_G?N??%?-? O?GVO?΄o$???!?/%?%?w!|3?"?Y?_Fx?G?o DxOB ??a????F???F?r?G?
|
|
?G???1?/&v3????M?߃??O"???J????[_N?0?W?*?/'?a?W?'?W?j?W~>???"?k?Mү#|o????}???ɤ?z??!|#???iC?_ ?D???Lx:ޝ%|5?
|
|
|
|
??:???9C ߓ?a?????_M???#?F~
|
|
????H?????r̄??x????i??Fҧ????#<}?N1??????$?T?e?/'?:?W??????մ ???9k?????%RN-?? ???????????????G />??̈́@???Hx??n~2?7??7?䡄D?0??Hx#?o??O????$|)'????? ?????J"?'?O#?s?O?r>?????/????D?
|
|
?;I?儿??U??N?U???Մ??;|??_?????? ߏ?? ?F??????_O?B? E?7~?%??????g o#?
|
|
?????A??@?P??D????<#?>??=??????Nʉ!|??G??I?A?4$|:? ?G???/&?T? ?~9??%?W~?W~?i????G??5?C?u?????;C?z |#?M?o"|?_"?X???ځ??K??Hz?~7???K?P?Q?'|Io$??4???;1??E?? ?B????I9f?J?$??L?4????t??K???G?????????O ?r _E??_E?K?????$?K?????4??,I_Kx?ϳ?????t????]????O???H9̈́O"?Yjg??q?' D?T:?'|8???A?1>????E???o??O?K???B???o |??>?????鄧?ry?O!|1?O???v&?r???>$?~?'?r? L????????'Q?'?R~-??????$?? +??>??o"?]?????̈́/??ڍ?7p?????᧓䡄??a?_D??A?G?n?G?y?G~3?c???f?[ ?D?>?? ????/?????b?g???????_N???? ?Eү????O?/I???M??????9??%|.?w>?????'|#?g????^"|???4I??koht??"?h? ???#<}????E?? |G? ?IM??i?'<=?b&|1)'????? ??????%??~<??!| I_N?R?W~ ??~5I_Ex3??????Մ??/?
|
|
? ?E????H9??????I?z??!|#?? ?D???????̈́?E???ϣ?O??<B~>?C o ?~????K??@ʏ$?}??&????!???7~!????_A?t??H?<?/"|1?????_A?ń_N?? _E?A?? ????o$?D?%??!?S?_G????%<}???'|=??K?F????M?o!?D??o&?p:?!?A??p?ͿB? ?_G????E҇~9ፄ?????$}$?$|4?+ C??h?'<=??D??H9i?_A?t????y???ń???I?_E?/'?#??"?J¯"?]?? ???? ?!)????~?#|-??u;????"??H?F?_E???? ?)?????'?ᐛ??A????O????-9d???Jb?yY???T?ȭA?$(?k?=K?r??ߐ?1?`?!:?Z?ߵ' |