2012-11-14 10:54:03 +01:00
|
|
|
|
#!/usr/bin/env python
|
|
|
|
|
# encoding: ISO8859-1
|
|
|
|
|
# Thomas Nagy, 2005-2012
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Redistribution and use in source and binary forms, with or without
|
|
|
|
|
modification, are permitted provided that the following conditions
|
|
|
|
|
are met:
|
|
|
|
|
|
|
|
|
|
1. Redistributions of source code must retain the above copyright
|
|
|
|
|
notice, this list of conditions and the following disclaimer.
|
|
|
|
|
|
|
|
|
|
2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
|
notice, this list of conditions and the following disclaimer in the
|
|
|
|
|
documentation and/or other materials provided with the distribution.
|
|
|
|
|
|
|
|
|
|
3. The name of the author may not be used to endorse or promote products
|
|
|
|
|
derived from this software without specific prior written permission.
|
|
|
|
|
|
|
|
|
|
THIS SOFTWARE IS PROVIDED BY THE AUTHOR "AS IS" AND ANY EXPRESS OR
|
|
|
|
|
IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
|
|
|
|
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
|
|
|
DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT,
|
|
|
|
|
INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
|
|
|
|
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
|
|
|
|
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
|
HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
|
|
|
|
|
STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
|
|
|
|
|
IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
|
|
|
POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
|
"""
|
|
|
|
|
|
|
|
|
|
import os, sys
|
|
|
|
|
|
2013-02-19 07:47:41 +01:00
|
|
|
|
VERSION="1.7.9"
|
|
|
|
|
REVISION="1af6df12b151640e8f920f479ee408eb"
|
2012-11-14 10:54:03 +01:00
|
|
|
|
INSTALL=''
|
|
|
|
|
C1='#&'
|
|
|
|
|
C2='#%'
|
|
|
|
|
cwd = os.getcwd()
|
|
|
|
|
join = os.path.join
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
WAF='waf'
|
|
|
|
|
def b(x):
|
|
|
|
|
return x
|
|
|
|
|
if sys.hexversion>0x300000f:
|
|
|
|
|
WAF='waf3'
|
|
|
|
|
def b(x):
|
|
|
|
|
return x.encode()
|
|
|
|
|
|
|
|
|
|
def err(m):
|
|
|
|
|
print(('\033[91mError: %s\033[0m' % m))
|
|
|
|
|
sys.exit(1)
|
|
|
|
|
|
|
|
|
|
def unpack_wafdir(dir):
|
|
|
|
|
f = open(sys.argv[0],'rb')
|
|
|
|
|
c = 'corrupt archive (%d)'
|
|
|
|
|
while 1:
|
|
|
|
|
line = f.readline()
|
|
|
|
|
if not line: err('run waf-light from a folder containing waflib')
|
|
|
|
|
if line == b('#==>\n'):
|
|
|
|
|
txt = f.readline()
|
|
|
|
|
if not txt: err(c % 1)
|
|
|
|
|
if f.readline() != b('#<==\n'): err(c % 2)
|
|
|
|
|
break
|
|
|
|
|
if not txt: err(c % 3)
|
|
|
|
|
txt = txt[1:-1].replace(b(C1), b('\n')).replace(b(C2), b('\r'))
|
|
|
|
|
|
|
|
|
|
import shutil, tarfile
|
|
|
|
|
try: shutil.rmtree(dir)
|
|
|
|
|
except OSError: pass
|
|
|
|
|
try:
|
|
|
|
|
for x in ['Tools', 'extras']:
|
|
|
|
|
os.makedirs(join(dir, 'waflib', x))
|
|
|
|
|
except OSError:
|
|
|
|
|
err("Cannot unpack waf lib into %s\nMove waf in a writable directory" % dir)
|
|
|
|
|
|
|
|
|
|
os.chdir(dir)
|
|
|
|
|
tmp = 't.bz2'
|
|
|
|
|
t = open(tmp,'wb')
|
|
|
|
|
try: t.write(txt)
|
|
|
|
|
finally: t.close()
|
|
|
|
|
|
|
|
|
|
try:
|
|
|
|
|
t = tarfile.open(tmp)
|
|
|
|
|
except:
|
|
|
|
|
try:
|
|
|
|
|
os.system('bunzip2 t.bz2')
|
|
|
|
|
t = tarfile.open('t')
|
|
|
|
|
tmp = 't'
|
|
|
|
|
except:
|
|
|
|
|
os.chdir(cwd)
|
|
|
|
|
try: shutil.rmtree(dir)
|
|
|
|
|
except OSError: pass
|
|
|
|
|
err("Waf cannot be unpacked, check that bzip2 support is present")
|
|
|
|
|
|
|
|
|
|
try:
|
|
|
|
|
for x in t: t.extract(x)
|
|
|
|
|
finally:
|
|
|
|
|
t.close()
|
|
|
|
|
|
|
|
|
|
for x in ['Tools', 'extras']:
|
|
|
|
|
os.chmod(join('waflib',x), 493)
|
|
|
|
|
|
|
|
|
|
if sys.hexversion<0x300000f:
|
|
|
|
|
sys.path = [join(dir, 'waflib')] + sys.path
|
|
|
|
|
import fixpy2
|
|
|
|
|
fixpy2.fixdir(dir)
|
|
|
|
|
|
|
|
|
|
os.unlink(tmp)
|
|
|
|
|
os.chdir(cwd)
|
|
|
|
|
|
|
|
|
|
try: dir = unicode(dir, 'mbcs')
|
|
|
|
|
except: pass
|
|
|
|
|
try:
|
|
|
|
|
from ctypes import windll
|
|
|
|
|
windll.kernel32.SetFileAttributesW(dir, 2)
|
|
|
|
|
except:
|
|
|
|
|
pass
|
|
|
|
|
|
|
|
|
|
def test(dir):
|
|
|
|
|
try:
|
|
|
|
|
os.stat(join(dir, 'waflib'))
|
|
|
|
|
return os.path.abspath(dir)
|
|
|
|
|
except OSError:
|
|
|
|
|
pass
|
|
|
|
|
|
|
|
|
|
def find_lib():
|
|
|
|
|
name = sys.argv[0]
|
|
|
|
|
base = os.path.dirname(os.path.abspath(name))
|
|
|
|
|
|
|
|
|
|
#devs use $WAFDIR
|
|
|
|
|
w=test(os.environ.get('WAFDIR', ''))
|
|
|
|
|
if w: return w
|
|
|
|
|
|
|
|
|
|
#waf-light
|
|
|
|
|
if name.endswith('waf-light'):
|
|
|
|
|
w = test(base)
|
|
|
|
|
if w: return w
|
|
|
|
|
err('waf-light requires waflib -> export WAFDIR=/folder')
|
|
|
|
|
|
|
|
|
|
dirname = '%s-%s-%s' % (WAF, VERSION, REVISION)
|
|
|
|
|
for i in [INSTALL,'/usr','/usr/local','/opt']:
|
|
|
|
|
w = test(i + '/lib/' + dirname)
|
|
|
|
|
if w: return w
|
|
|
|
|
|
|
|
|
|
#waf-local
|
|
|
|
|
dir = join(base, (sys.platform != 'win32' and '.' or '') + dirname)
|
|
|
|
|
w = test(dir)
|
|
|
|
|
if w: return w
|
|
|
|
|
|
|
|
|
|
#unpack
|
|
|
|
|
unpack_wafdir(dir)
|
|
|
|
|
return dir
|
|
|
|
|
|
|
|
|
|
wafdir = find_lib()
|
|
|
|
|
sys.path.insert(0, wafdir)
|
|
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
|
|
|
|
|
|
from waflib import Scripting
|
|
|
|
|
Scripting.waf_entry_point(cwd, VERSION, wafdir)
|
|
|
|
|
|
|
|
|
|
#==>
|
2013-02-19 07:47:41 +01:00
|
|
|
|
#BZh91AY&SY<10><><EFBFBD><02>A<41><7F><EFBFBD><EFBFBD>t<74><7F><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>(2D<32>@<40>EH Xa<58><61>e<EFBFBD>g<>8#%<25>T<EFBFBD><54>nJ<><4A>r<EFBFBD><72><EFBFBD><1A><Y#%hR<68><52>{<7B>{<7B>hiR<>mubQ<62>/zh6<68><36><EFBFBD><EFBFBD>]<5D><>P4Z<34>K<EFBFBD><4B>V<EFBFBD><56>=ٽ<><D9BD><EFBFBD>s<EFBFBD><73><EFBFBD>=<03>Ckv<6B>H<EFBFBD><48><EFBFBD>t<EFBFBD><74><EFBFBD><EFBFBD><EFBFBD>><3E><><EFBFBD>q<EFBFBD>q<EFBFBD><07><><EFBFBD><EFBFBD>}<7D>ڮ<EFBFBD><DAAE>[<16><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>[<5B>t(hH<01>Ӏ\A 0ۜ2<DB9C><00><>@<40><><EFBFBD><EFBFBD><0E>c@<1E>uA;<3B><><EFBFBD><EFBFBD>Mo<4D><6F><02>P<>F<EFBFBD><46><EFBFBD><EFBFBD><EFBFBD>N<EFBFBD><04><><EFBFBD>T<EFBFBD>+`aE<61>4P<00><>Z<01>|<7C><><EFBFBD>=<3D><>率<EFBFBD>}<7D><>ov<><15>C<EFBFBD><43>eIA<49><41><EFBFBD>wg<77><67>Jw^}<7D><><EFBFBD><EFBFBD>ve<76><65><0E><><EFBFBD><EFBFBD><EFBFBD>m<EFBFBD><6D><EFBFBD><EFBFBD><EFBFBD><EFBFBD>}<7D>l<EFBFBD><6C><EFBFBD>}϶<><CFB6>ӽ<EFBFBD>ڽ볛<DABD>j<EFBFBD>O<EFBFBD>><3E><><EFBFBD><EFBFBD><EFBFBD>h:<3A><>A%T<>Zi<5A><69><EFBFBD>)<29><><EFBFBD>W<EFBFBD><57>|f<>(<28>'^<5E>z<18>J<1E><><EFBFBD>*ڢ<>R<EFBFBD><12>o}<18><><EFBFBD><EFBFBD><EFBFBD>Dُ<44>}<1A>w<EFBFBD><77><EFBFBD>^><3E>M[<5B><>^锪><3E>u<75><D7AC><EFBFBD><EFBFBD>;ݧ<><DDA7>Ś2<C59A>r<1A>w<EFBFBD><77>=<3D><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><1B><>/-偗&<26>S<EFBFBD><53>)ז<>><3E>uZ(<28>g{q^<5E><>[ۯo=|<.m<><6D><EFBFBD><EFAF87>w{<><DEB5><EFBFBD>Ŝ<EFBFBD>u<EFBFBD><75><EFBFBD>Ѧ<EFBFBD><D1A6><EFBFBD>Y<EFBFBD>.1<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>s<EFBFBD>W<EFBFBD><EFBFBD>\<5C><>Q<EFBFBD><51>w<EFBFBD><77><EFBFBD>s<EFBFBD>v+<2B><><EFBFBD><EFBFBD>Ͷُl<D98F><6C>{<7B><>^|Zu<5A><75>{<7B><>ύk<CF8D><6B>;뷵<><EBB7B5><EFBFBD>{<7B>L<EFBFBD><4C><EFBFBD><EFBFBD><EFBFBD>*<2A><><EFBFBD><EFBFBD><EFBFBD>ʱ<EFBFBD><CAB1><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>6;ӷ<1D><><EFBFBD>ރk<DE83><6B><EFBFBD>x#&'F<><46>(=`y7al<61>+Љks<6B>o<EFBFBD><6F><EFBFBD><EFBFBD>w#<23><1D><><EFBFBD><EFBFBD>ڷg=<3D><><EFBFBD><EFBFBD>w<EFBFBD><77>yP<79><50><EFBFBD>#%{k<><6B>o<EFBFBD>{|<7C><>ްz<01><><EFBFBD><EFBFBD>n<EFBFBD><6E><EFBFBD><EFBFBD>{<7B>Qgz<67>ϯ<EFBFBD><CFAF><1D><>|<7C><>:'wZά<5A>i<EFBFBD>ۓ<EFBFBD>_G=<3D><><EFBFBD><EFBFBD>AD[<5B> <20><><06>w<EFBFBD>Ǻo<C7BA><6F><EFBFBD>X#&><3E>-<2D><><EFBFBD><EFBFBD><EFBFBD>/S<>vp<76><14><01><<3C>]k<><6B><EFBFBD><EFBFBD>}<7D><><EFBFBD><EFBFBD><EFBFBD>f<EFBFBD>wfƵ{ޮ<>/^<5E>\<5C><><EFBFBD><EFBFBD>}m<>l<EFBFBD><6C>Ҫ<EFBFBD> <20><01><>m<EFBFBD>퓔^<5E><02>k<EFBFBD><6B><EFBFBD><EFBFBD>}[op<6F><70>̺ݹ<CCBA><DDB9>o{h<00>+P#%#%/<2F><><EFBFBD><EFBFBD>ٻ><3E><>{<7B>n<EFBFBD><6E>w^<5E>l<EFBFBD><6C><EFBFBD><EFBFBD><EFBFBD>L<EFBFBD><4C><EFBFBD>y<EFBFBD><79>m<EFBFBD><6D>><3E>{ն<>}<7D><><EFBFBD><EFBFBD><EFBFBD><10>cP<11>o6<6F>E<EFBFBD><45><EFBFBD>/ <20>l,8<>:<3A><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>{<7B>P<>#%<1E><>V<EFBFBD>}<7D><03><><EFBFBD><EFBFBD>u<EFBFBD><75><EFBFBD><05>h<06>־<EFBFBD><D6BE>><3E><>{<7B><>=<<3C>w:<3A><>A<EFBFBD><41>^<5E><><EFBFBD>T);<3B>.iD<69><44>C<EFBFBD><43><EFBFBD><D7BB>1<EFBFBD>{<7B><><EFBFBD><EFBFBD><EFBFBD>[<5B>w<EFBFBD><77><EFBFBD><EFBFBD><EFBFBD><17><>SN<4E><D7B5><EFBFBD>\<5C>]<5D><><EFBFBD>=<3D>v<>{<7B>w<EFBFBD>}<7D><>{<7B><<3C><><EFBFBD><EFBFBD>h<EFBFBD><68>(<28><>t7<0C>|<7C><><EFBFBD><EFBFBD>M@L<><04>Ѧ<>0!<21> <20>L<><4C>MJh A L<>4<EFBFBD>2OSjm)<29><><EFBFBD>F<EFBFBD>P4<1E>ꆀ<EFBFBD>4<00>H<EFBFBD><10>&L@M#% <09>~D<><44><EFBFBD>1$<24>C@<40>OL<4F><4C>i<><69>4<EFBFBD>#%<06><10>D <11>d<EFBFBD>&<26><>&i4څ?$<24><>T<54>ޒz<DE92>CM<43><4D><EFBFBD><EFBFBD>$<24>d<EFBFBD>BFM<04>F<EFBFBD>5OК`<60><>#<04><><EFBFBD>i<EFBFBD><69><EFBFBD><EFBFBD>F<EFBFBD>ښ2d<0C><>$ <20><>4##LA0<41><30>5S<35>Q<EFBFBD><13>z<EFBFBD><7A><EFBFBD>4ڏSM#%<07><><EFBFBD>(fQ<>q<EFBFBD>\<5C><00>!<21><>Ί<1A>&<26> <20><>IMUL<55>T<EFBFBD>"<22><><EFBFBD>O<><4F><1F><><EFBFBD><EFBFBD><EFBFBD>R<EFBFBD>*{;<3B>_<EFBFBD><17>ڒy!<21><><EFBFBD>7<EFBFBD><37>T^l^<5E>Ub<55>6y<36>ޞ<EFBFBD><DE9E><<3C>Y<EFBFBD>?<3F>̇<EFBFBD>f52ua<75>6lBo<02><>ɢ<EFBFBD><C9A2>h<18>&F<><46>Ƕ<EFBFBD>>a౽<61>Β<1C><>y<EFBFBD><79>^<02>U<05><EFBFBD><D7AB><EFBFBD><EFBFBD>RO6<4F>Wx<57><78><EFBFBD>(<19>%<25><>p<EFBFBD>(<28><>'ȱ$<10>i()QH%<05> <09>*b(f <20>@ȈzBp<>Q<EFBFBD>#&<26> D<08><0F>H<EFBFBD>iUp<>hJP<4A>P<04><><08>TEUATU3D4MA%LQ%4<>T52QM1TCMD<4D>K4<10><>T<EFBFBD><54>!U4TQJ#%EE<14>U$L<>D<>5DBEMR<4D>KP<4B>U$<24>-$E4REITQUQ$HQ5DU2<55><14><>D<EFBFBD>P<EFBFBD>M0<4D>E<14>R<EFBFBD>4EMA- T#&<26>#&0E<12>$LDE@P<>TB<54>$M$<24>(PDI<08><><14>DR<44>L<EFBFBD>54S<14>1I"P<>U4IQRPD4<44><10>!K2<>D<EFBFBD>#%#%15<14><>-QMUET<45>3EAS1D<31><44>ԑDUP<55>EUQ1$L<>%SD$<24>CE<10>AP55EM C544EAAA1U11L<31>LTM44M#%D<>0HRTE IQAT1AMHMPPL<50>(E@I%K4D<34>5PKEI0DU,UDDCDERD5LDHP<48>LUDLE<14>UE3L<33>%#0L<30>Q#%4QU<14><>-UE4T<34><54>4D<34>P<EFBFBD><04>,<2C>T<14>AD<41>CRQ%#%DL<44><0C>RUSDRDC$<24>SAS02<>DL<44>$B<>S1-4<><04>K$<24>E)L,AED<45>%H<>5ITLL<4C>43L<33>EA1TD<54>%%<04>UHQCE10DPPDI<12>RQAUD0<><30><EFBFBD>DBE$MRD<52>$<24>T14<31>E KE1$M15$R<><52>4TA4<>E<10>$<24>TA-MDIS#%K34<33>DRBKLA2D0ADL<44>#%KT<>ET<>D<EFBFBD>PLD<4C>KT<><54>%U%14T<>P<EFBFBD><50>U1QDDD<><14>QLS#%QHE#,-T<>TLUAESJRDU#ԑ4<14>EME<12>ECUD4CDJP<4A>E4<45>DBI5SAQT<>4<>ED<>$LT<4C>M<10>K"$T(D<>T%P<>E%EM4BP<42><14>D$<24>D<EFBFBD>S4<04><0C>ĐULH~<7E>)"<22><>"<22>*!<21>* ((<00>P<><50><EFBFBD><EFBFBD>$<24>B%<25><>Y<EFBFBD>$X<>ij<69>(!<21>(<28>"<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>"<22>B<EFBFBD>IH<49>B<EFBFBD>b<EFBFBD><62><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><08><>!&<26> hjb*<04>f(<28> b<>!dh%<25>b<EFBFBD>(<28>)$ "D<>&Y<>B<EFBFBD><42>"<22><08><><EFBFBD>)$`(<28>(f#&i<><12>$#&<02>""<12>J<EFBFBD><4A>%<02><>*<2A>$#&<26><><EFBFBD><EFBFBD><02><>*<2A><>)Z<1A><08>R<EFBFBD><52><18> <20><>%<25><>#&<26>"<22><><EFBFBD><1A>#&<08>P<EFBFBD><50>)b"<01><><EFBFBD>XIEID$<24><><EFBFBD><EFBFBD><EFBFBD>R<><1A><>(<28><><EFBFBD>I<EFBFBD><49><EFBFBD><05>)<29><>`<60>%e*&$<24>(<28>$<24><>j#&X<><58>Fb<>(!a<><61><EFBFBD>B Y#&#&@<40>)&)<29>"ZH<5A><48><EFBFBD>h)*&<26>)<29><>*h<><68>#&<26><>&)<29><08>"!<21><>%"<08><02><><EFBFBD><EFBFBD><EFBFBD>*#&"<22><>"(<28><><EFBFBD><EFBFBD>!<21><>*<2A><><EFBFBD><EFBFBD> ) <20>)"&<26>#&<26>&"<22> <20>)b<1A><><EFBFBD>"d<>"<22><><EFBFBD><EFBFBD><EFBFBD>#&$<24><><EFBFBD><EFBFBD><EFBFBD>)<29><>#&#&Fe<46>j<EFBFBD>"jI<6A> *<08><><EFBFBD>(j<><6A> h<><68>Y<EFBFBD>)<29><>`<60><> <20>%)<29>fR<66><52><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>%&<26>)j%( <20><1A><><EFBFBD>(<28><>*<2A>"<08><>#&<26><>i<EFBFBD><69> f<><66><EFBFBD><EFBFBD><EFBFBD>i <09><>!<21><>bX<62>)<29><><00><><EFBFBD><EFBFBD><EFBFBD> <20>#&<26>X<EFBFBD><58><EFBFBD><10>H<EFBFBD>"<22><><EFBFBD>ij<69><6A>"()<29><>!<21>a(<28><>P<>fb(bb#&a& #&&!<21><>`<60><><EFBFBD>)"<02>h<EFBFBD>&<26><>b"<22><>(h<02><02><><EFBFBD><EFBFBD>H<><48><EFBFBD>J<EFBFBD><4A> <20>b<EFBFBD><62><EFBFBD><EFBFBD>*<2A><>*<2A>JJ<4A>e<EFBFBD><65>"$"<22><><EFBFBD><EFBFBD> <09><> <20><><EFBFBD> i)j <20><>Y<EFBFBD><59><EFBFBD><EFBFBD>*<04><>h<EFBFBD><68>(H<><48>"<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>#&i*@<40><>h<EFBFBD>fJ<66><4A><EFBFBD><EFBFBD><EFBFBD> <09><08><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>a<EFBFBD>B<> J"j<><6A>#&<26>"(<28><>&<26>*& <20>""<22>(<00><>X<EFBFBD>"H<><48> (<28><>X<EFBFBD>)"JhQ<68><51><EFBFBD>"X!#&*H<><48><EFBFBD><EFBFBD>%<25><>"<22><><EFBFBD><EFBFBD>hhI<68> <20>`<60><><EFBFBD>% <20>h<EFBFBD> <08><>R#&A<>ijjJ<6A><4A><EFBFBD><EFBFBD><EFBFBD>#&)B<><42><EFBFBD> <20><>*<2A>#&<26>i<EFBFBD><69><EFBFBD><EFBFBD><10><>h<EFBFBD> <20><><EFBFBD>)F<><46><EFBFBD>I<EFBFBD>%I<><49><04>b <20><><EFBFBD>#&<26>"<22>)<29>*<2A><>()b <09><><EFBFBD><EFBFBD>`i<><69>(hR<68>$<12><><EFBFBD><EFBFBD>i<EFBFBD><69><EFBFBD><EFBFBD><EFBFBD><EFBFBD><02><><EFBFBD><15>(h<06><>#&<26>f<EFBFBD><66>!<21><>B<EFBFBD><42><EFBFBD><EFBFBD><EFBFBD>X<08><12><>#&J*<18><>F*<12><>H<EFBFBD>iJhZ<14><>(&f#&<18><><EFBFBD>))bhhJHi<48><69>bJ(<28>&#&ZJ<18><>B(<28><>J!#&"($(D<>(<28><04><02><>T<EFBFBD><02>j<>$ e)<29><><08><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>*(<28>i<EFBFBD>a<14>@QAT<41><54><EFBFBD>TBAD<41><10>³]ᛌO<E19B8C>k<17>:<3A>sE<73><45>n+RpW<70><57>n1<><31>VEj<06>!<21><><EFBFBD><EFBFBD>cFd<1F><><EFBFBD>E<1B><><EFBFBD><7F><EFBFBD>m<EFBFBD>:#%<25><>6<EFBFBD><36><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>C|<7C><><EFBFBD>@}:<3A><><EFBFBD>#%Ό+L9{v<>!<21>}X*<2A><1D><>c<EFBFBD><63>Zӈ}<7D>Q<EFBFBD><1F>Fܿ<46>4<EFBFBD><34>Z<EFBFBD><5A>#&<26><><EFBFBD><0E><>r!<14>尦<18><><EFBFBD><EFBFBD>ʟ Lu~v<18><>V<EFBFBD>q<EFBFBD><0F>V<EFBFBD>#&4z<34><15><>/+<18><>Z<EFBFBD>9<14>1<EFBFBD><31>&<14>cq<63>LQ<4C><06>1A<>2x<32>ݯ(ܾ<13>\-<2D><>IRTDF<44>$<24>M<EFBFBD><4D>]bg<>F<EFBFBD><46><EFBFBD><EFBFBD><@qd<71>,C@R<>Vf-<0F>j4$Jg8渴V<E6B8B4>2<EFBFBD><32><EFBFBD>ܺc# <20>2ɋ<32>' <20>2nls<6C>7<>?<3F><><EFBFBD><EFBFBD><EFBFBD>]<5D>c v<><76>$0<><30><EFBFBD>}Vf#%QT<51>P%~L0}m5<CE81>q<EFBFBD>yDB<04>4:<0E><><EFBFBD><0F><><EFBFBD><EFBFBD><1E>ᶅZv<02>܋<EFBFBD><DC8B><EFBFBD><EFBFBD><EFBFBD>F<EFBFBD><0F>3)A<><41><EFBFBD><EFBFBD><1E><>^㜵<><EFBFBD><7F>g+<2B><><EFBFBD><EFBFBD>9<><39><EFBFBD><EFBFBD>؆<EFBFBD><D886>Ԍ7<D48C><37><EFBFBD>19Ӱ¨<D3B0>,ϟ <20><>VD!4-<2D>0<EFBFBD>!<21>+<2B>k<EFBFBD><6B>h<EFBFBD><68><EFBFBD>qwê<77>" <20><><EFBFBD>j<EFBFBD><6A><EFBFBD><EFBFBD><07><>f<EFBFBD>oc#<23><><EFBFBD><EFBFBD>XcY<63><59>+Q<><18>:<3A>7j8<6A><38>)#%<25>U<>cFH3<48>j<EFBFBD><6A><11>g<EFBFBD><67><EFBFBD>GA<1B><><EFBFBD>Zɹț<>RA<52>HDۓ֑6<D691>$z<><7A>g<EFBFBD><67><EFBFBD>'<27><1A>D<EFBFBD>P|c9<63><39><EFBFBD> <20><EFBFBD><EEB3BA><EFBFBD> t\˓W<CB93><57><17><>7q<37><71><EFBFBD><EFBFBD>c<07>xe<><65><EFBFBD><EFBFBD><EFBFBD>*<2A><>A<06><04>1x<13><><EFBFBD>m<>LGC<47><43>YI2
|
2012-11-14 10:54:03 +01:00
|
|
|
|
#<==
|