|
#!/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 gobject-plugin_0.1.6_amd64 subdirectory
|
|
--exclude-subdir exclude the gobject-plugin_0.1.6_amd64 subdirectory
|
|
EOF
|
|
exit 1
|
|
}
|
|
|
|
cpack_echo_exit()
|
|
{
|
|
echo $1
|
|
exit 1
|
|
}
|
|
|
|
# Display version
|
|
cpack_version()
|
|
{
|
|
echo "gobject-plugin Installer Version: 0.1.6, 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 gobject-plugin will be installed in:"
|
|
echo " \"${toplevel}/gobject-plugin_0.1.6_amd64\""
|
|
echo "Do you want to include the subdirectory gobject-plugin_0.1.6_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}/gobject-plugin_0.1.6_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 gobject-plugin_0.1.6_amd64"
|
|
|
|
echo "Unpacking finished successfully"
|
|
|
|
exit 0
|
|
#-----------------------------------------------------------
|
|
# Start of TAR.GZ file
|
|
#-----------------------------------------------------------;
|
|
|
|
? ??V ?}
|
|
|TŹ??'!?f#~0h????!?MH$?a??˒l?-!w7?oSA.1Ʀ??????{???????֢??Q*???R?z?m?Rmu?V?Q??yf?9;3{fw??ی?yv?3??Ǚ?3gf????-?Ҷ?????#s?:???sۃ???@?????U?n??s?\??D?+?]??n~Y??t?U?**ݕeen?U?*+s???M?u?#?)ʆ`??3A?d?.?%?F\?l3?7?????/?o1?o17?:|ͦ?d???5nj??ͫ b67v:??9fK??F̍??@?svinn?E??????z=˗?{?????Joӊ?K?kW??.Y?~x?W/i?һhuCc?wIm?w?Z?`?*o???z5???z??܋H?N?_;R6b???:?KگP???5! w?wQ=h???m\ M?e?3Y?]umS???2??ix??{?<?m??7???oϚ?UC5?????%Li????3^???JR??ȂF???FK??
|
|
??!eH?q*y?B????]RO?ȕ??W?S?s???n?`???B?CGB???k?.?e?$??hs?,I???2???Q?0v͗????X?X?re?_8??N?x?,?3???v?Q?ɺk?5Ŝ??4Y?B?g??G
|
|
??'?5I????+]Ω(h
|
|
6?w??
|
|
!*?`?9w??U$??Έ?D?._???ؐ?E??V?3?J?I???t??ȳ?.?+?v?B?,??if?ri
|
|
?d/?M?@?,s?wɕ?k???IG?L?2??q??m??9؉5,f?a$P=??[ek^??$??{???????A_??4
|
|
kp??????????$????????_???ǻ?o\^SW?B??虯?SP?p????`?@g???H?u5C?.??m~???,?-?[?X?L$??ß?B??8å"S?.-??b$?{t????¢1?fH?ldJR?ht??I???Fi??J'Yʱȶ???|?%HM??bR
|
|
Ӯհ|)??d?A9??+B??rV#\?M??w,??????hӅ????????"??F?%?Jq?i?>Y??մ/L???WR&?%
|
|
??3?m"ն?
|
|
?M?6'ٶ?;??θ??Ōم??m ??? D??_
|
|
??4???&F'j?Ʃ?J???cK???N????꒭?+++??Yż???G???????mw?Gk???<F???????Y??n!????S]??t??a??(??ċ??? ???pv`)J??~??BK?z?`%?jJz? 癸D???'???B*????6?Qۗ??y???c?"????B3$??̓JF????4??l?>Si?$ݟ [
|
|
?F?????)??|????? >?# l?JȥO?*6??Lؽ?R?????????PU?3
|
|
?/??????M?K????h?"??
|
|
?g%Y?u'8U ??G),???]?9 ??3???=??\^??????c????%???G??@Z???o???%,9`F???3???6HV????~???J?" ??0n?;??1k-I?ս?#?l?Y?ĭ??F?26? ?b?A???b?X?, JS??c?cw?????Ō?r??7?C? i??1???tv`?5?QiDR?V??? l???R?????%???js?f??????(?Qhi?*y???ܒ{???U?%??????}$??]d?W???U????Kr???PvO?????LU>?{!?)_? s???~S?RB?ӚX?,`-??KE???㞐???3??%??.u?7o???G????????Ҩ?[?q?[?&.N?&dC?~??˺??W?疑?I'?X)??3FG`}i׆6??hSG????y?H6??]??/??5?????.??l^X???7?????~ܒKz? ?|K)As? ss?$???'?[?7?]?@?s}??г6??fk0dM?|a2??tu??T?R2B?P?.ɽ?
|
|
SM?wIE. /0ví$,qŇ?^ޚ쓄?J????3?????Fr??????O???z? ??x???Kl????9}??%,<?Q(????O??G%??????ɞ??m???>eZ<áϿ?\??????W?????G?P߸8=-??gW?;:??????X?j??G?=ϘJ?f%П鐥a??_H?M??}Cw?gJ?p?s2?t????????$??$s0uӟ#-?j?D??"W???^E?e'???(W`~?????qɟ@OA??(N=?^?P?g??u?Owg???Y??????߾v????~o??????Ç??t???7z??L???͉?? ?9??؝?_uOkph?/H????F?bM?nM?4M????i?Wi?4?YA??a??A_?bl6em???'?????I?c?Q?E\?ӟ???q?Á?ϳl???O0?'??%????'[??#??'?z?6;?0?F?^??D?5?0?
|
|
??y????????e??N?*??ea?!???>P???D?K7yW`<z??m?l?3{???
|
|
^v???Ok9P=??l?H?`g?????\/???K?g?ki?蘿???@8?Uu?}??qy?vq???w?o??+??y?J?%?G%?i??????P??2?疑?;]N ? ??m"??*?????9}??l1?.&?%?
|
|
?j?e%e%?6Cp?d????|Zl??1/???W>/¯??
|
|
>????7a.<_?]?W)???N7?2e???`?0/M?|?B???)?G\?Q? ?G\???!??X?qFl? g
|
|
x?????w ??ެp??W?8?x??7 ?????A?N?' x???????Z??/?)??m0????Os?????gH???ߐ?.?&??O?I&n?????:t???4?? ??~hʡ??? ??Q?????M:4@????r????~(?P??~h??u?;??i????V?C?U???[K?.?N????/??DX????:???3?g?qǦ??f?v?Hkޅu??v+8KI?f??g???<??????<??'??W?"?D?Q?D???W??,?#?ft_?ٶ??k5Q???[?8?E?*D=䟵?? ?%????|?϶O???'1Y?I?????Ç????˺???m?;?`Vb??ZI?O?G????7kT?ƀ??4??.?/k*o?{?MsXI
|
|
n@
|
|
LҒ?K=?G?"?尔r??(<??$??#M?????w?{?S??P???w??/?GĻf?????{p?λ???=;??-g?wO?2??b??I?${?죐q?vZ???E4낛!R?O???V?YX?4V?i?0t\A[?\R2?-Ǎ?s3.[?c|????.?Day@??v?N"?B8?O???#D&?8ԕ<?B?"]??>?y?M+???δs'?? aE?MI^???\?(\?7?Ɯ???.?=?hOO??x??e?0o ~????<??a
|
|
n?9?M??߁?E???P?ӵߵ?????;r,}?%??:??????I?ͱt?N?r??ܘscn̍?17??ܘscn̍?O?;?ܮP?M?3r;5?K????????=C}???ki??>????????=?4?,?{??܈??????????(?????x,j???{j?^6y??{?M? ?????.?????W??ګ?}^?瑣??=?sxx??ʖ?Y???????0+?^???~ޮG?߃??_???8?7W?b???([QnB???(?E? ?(?E?J~????vX?tF?As~ɥ%??.7\+?
|
|
?UEI?,FIx?ƈo=?????W[gwI?/?n??l?$ј??X?&v?P?xIX?????#b??cʒ?3??V???????m
|
|
?6???-???????????L?AR?N??2?6?I9??˒?_%????H2?? ???O?ƅ?gX?G?3?~(?YV???lk??8k??x??2??.[<vN-?????h?`?O??sȸ?8j??Y?;?yJ??}??Y?9??O?_d???|2^`?W2>?72????8?M??氊?07?Z(??v?4?;Q??F????x?kE??7߁zv+?{0~????K??-??
|
|
??YF??q??Q?߉?
|
|
%?w?ϑ? ?7?vcm??G????W)????q?1???0%????<
|
|
^?n_ŗn??]??t??!=??????cyL??eM?????K)Ȱ?3'????;?????{5k2??????p?֔???B?Ȱ??cP?j~?Ys?e?/???O?^?i)q?+\U??K??3Kd]?^?ч???K,?e?]c??O)?bh?]?i?z7;|?@??]f?y? ????????j?W??2߭)???Ɓ[:?;@?y?^oK8?m?u??E??k??Y?PK?U?j)????.i\???ѻ|??????j??(ɽ???M /f?{>?W?؝?.?%?f%\u?]?Rn?%?>e{Q??OJ|?J??ds?LMM?k??R?|???Z??z?h8??:F?1?|?\????]???i?%?uoP?W[?2?????9W?ס\?*?UuYWÆ????*??nx?F.2?7??u-??+?_?????????K?????L????(RH??&?߈????}.??4w?2??????T?;?AI??_\nV??S?7(????K?5???FL_??M??%J?4E~?b??{???W???.?V:???j?=?????j{????`??yz?=??<????߰?<=?nٗb?(???x??W?_???`Ϟ????g~?0???vyZɟ/????+?9?????ZG??J???????L9????????:r3?Wm[??/b?j<?~?????_?[t?`??4?E??=???L?p`?{f????????7J?ͶƘ?\J?_g?????**????G?0
|
|
?߹?W
|
|
????8??_沷?ݎ n??'???!???s~y?|?????ʊ?1?Ϗ????]?"?F|]],?H????%K??????cJ?I\???z?2?3הd.Z?T??3/f~U?a?r???u?3q???h??3X???b??Ŏ43m|?Ģ ;9??
|
|
???^???3??<8ǹ??)??nk?j???]??m?s???z??o8?s?y?ѳe??5???4??:?P?=???_??߯?[4????蟫??k??m??W4???/k?{5??h??3??oj?_?)'?W????ߢɷA??k??/5?_???5z?i??j?ej????<i?ܫ)?fM?c?|'j????u???S5?????????Kgj???V????Ҵ??d???"???Y?<l?[.??,v4????u0????????L+?^?KoF=Gq_?Z?K?<??}???8????m??[?????????s;?Ƌ???]7n?ww?????G?C??@???????u:ے?? v2Aٛ??v?n??!?{N????
|
|
v?;c??????????>H??????P5?L??}-hܡ????S??tw?)?¼2?6?e?????)s?x"ر?4s??NK?q9k?ؑ i?8?
|
|
?.?3??jL??7?ܐ???
|
|
??#j???Y???vY?\?L?ܮ?X1X?I?7??*m~??1?? ??<?4~z[??u?c??????h ????H4??0(ҢR6???$??of?Ra?`?vl '???n_h?7?2~h?4?????!??????4??Ǻ??f????k?V1h?s$????4??"#???
|
|
C??+?Ak???????:?Z??? +??q,?>/?i:?4?????;?v??O????Tވ?8?ag??D??c??Y?x??????m?\??U
|
|
ރ??n??(?2_.?oW)?U^??.~??p?Ny???#??\?????????>?x$\?O*p?H?%?b??\?.?p?GB?% ?x$\?p?v???W??\??,??Gu??? ?N???w x???pq]?G?E??^%??\\R
|
|
x???)?b?<$??m??>U???x??s????'???|7?1????)ঀ
|
|
??n
|
|
?t/p?;?%??R?J???Z?g
|
|
?G?/?&?ү?Y?N?ų?v(?.?#???D?{?T?w
|
|
??jpq??%?e??.???y]??I?.?
|
|
??5
|
|
?]ޙ??]?/?2M?wya????i2??3?d~?????.?O??]?&?<0M?w?o???r?4??ex???SԐ??À??!??À??!'??LEC??~??????NZ??<??i??=?Ϣ???ρ2???? ?ٴ?Կ???Կ?Sh???ϡ???2???S?l?O??????F?O???.??????h???????S:?/???????????-????
|
|
????S???A?O???E??????h???i?Ϥ?????1?????Kh??????S?}??E?O???6???
|
|
??????????֟?o?\Z??%????Ki?O??~??I[? ?T??njP?9)?Mg?˧?????sR??U???A/O1??=_??S???l??;ņ??s??JO?ȅ??q?????????`? ?????? ?o'c?=?%??D??X??,z?$P?<?H!U?儒?Rr???r m?IUg]?|?}??????י 5? ???oI???O_)yd*????H?W[?9H???{?j(?#il-l??e?,????????EL???????$?'<} g?_O v?.=????;;o?]????m/xz߈6Q?!O??E???3L?"'mJO_cQN?g?DZ??Md?.\??j_(??~??n???.?<A[?K4??<???a?$?_?Z8??x
|
|
??Sk?}??4?g??????j?&?<7???ϻ??r۱?`[?>??~8????<A?????y{z?O ?h`lϡ
|
|
?4??yh!ᤏ??4???}????$ݓ?h?g?#????PZ?nk 壅?????)o??BOi?=??>?{OX/Ǡ[0?+4?yJ??D????A???댞?ף?I??Ώ????أ??3??q??q???<?M?????/ƃ???????O??I?ډY???iC7???m?5?V????}?
|
|
???m???}?<%'y???3??S???}??[h?O????\ZoD? ???@????͐?
|
|
?????`l^??/??zڬ???n???????L?????$?W??CJ??????~r8????q??$p?{4b?/Y??,??Jx_?C?c?_ߛ??_d?|??{??G='???_~UX?+???OE?z?}uM??_Ѫ?(їo2ҝ?(?ُ?y?$^3???4~h?W????????"???>'????!-????[D?Ͼ&2??[?μ??Y?列h?Nt}r?i?Is?>@T??
|
|
D??!?`?gk??Y
|
|
]?d?!??D?????O??<?[????HQ??`]]??m????cTa? H?+?%???T=?~????1??=}d"??8+?Ȼ??"DkcK??Mf???ߥO?L??[?{???5
|
|
???J???@f??ɻ?LG?{ߋnxC??y?>S?{?W?3??Ƀ̵U?\?w?k?t{??֬????kͻ??CsE3?š?;|???xzd??????{_h$??j?m+)?{?qH= R??0??A??>??}??J??V9?Z0??x
|
|
QB?O?|?.?.O??!-C???
|
|
?w Ye?m?ND[?
|
|
?H.4oa????C?;p??O??gF&m???C??WNA?c?????????F????ˢ_&?[???t!)^;??Hm?M$8Zm$ς?7??5z9zIr?{?sC7????w????"ڊѯ?????e??2Go}ʐYD?v????l??H???aP?ƛ}??t????8}^oD?iS.?ekJh?Gߡ?ۄ??7?
|
|
??^?im#???/?7???}???}???????w?Và??65ŋ??ނ?E?4?/?????o?:< |