go1.17-doc-1.17.2-1.6.2 >  A aep9|ٽ=oT=PТS芚,Gaw;@}WYtgႮvVj jKxY~8a<p;E?Ed   +LP\`y      $ (8L`|2(U8\9x:FB GB4HBDIBTXBXYBd\B]B^BbBcCdD eDfDlDuD$vD4zDDDDECgo1.17-doc1.17.21.6.2Go documentationGo examples and documentation.aes390zp35SUSE Linux Enterprise 15SUSE LLC BSD-3-Clausehttps://www.suse.com/Documentation/Otherhttp://golang.orglinuxs390x4Laexaexaexaex344c3190894932fab8c6e2296616b25e53cd0cd8cd759eed67dd0dacddb0474ab20fb1acc6ad2f7844ed688678a2e9e4eb71aa334cff171e84e3dfc448b4e8a6b452343408313c2e9bd6914416cac6f17c7ac7fc0e31462e382bbe56962b80ba203c89d2979ef5a0cb77a9090bebee03a7d6f7369cb026214b35ec476d90e835rootrootrootrootrootrootrootrootgo1.17-1.17.2-1.6.2.src.rpmgo-docgo1.17-docgo1.17-doc(s390-64)    go1.17rpmlib(CompressedFileNames)rpmlib(FileDigests)rpmlib(PayloadFilesHavePrefix)rpmlib(PayloadIsXz)1.17.23.0.4-14.6.0-14.0-15.2-14.14.1a`2a;Haa @a@`@`jkowalczyk@suse.comjkowalczyk@suse.comjkowalczyk@suse.comjkowalczyk@suse.comjkowalczyk@suse.comjkowalczyk@suse.comjkowalczyk@suse.com- go1.17.2 (released 2021-10-07) includes a security fix to the linker and misc/wasm directory, as well as bug fixes to the compiler, the runtime, the go command, and to the time and text/template packages. Refs boo#1190649 go1.17 release tracking CVE-2021-38297 * boo#1191468 go#48797 CVE-2021-38297 * go#48800 security: fix CVE-2021-38297 misc/wasm, cmd/link: do not let command line args overwrite global data * go#48561 cmd/compile: unsafe.Add bug when adding uint8 value to a pointer * go#48444 text/template: should t.init() be executed before t.muTmpl.Lock() in AddParseTree() method? * go#48177 time: output does not respect comma as millisecond separator * go#47859 time: timer reset sometimes ignored, causing delayed ticks * go#47756 cmd/go: mod tidy -go=1.17 should move indirect dependencies to the second require part- go1.17.1 (released 2021-09-09) includes a security fix to the archive/zip package, as well as bug fixes to the compiler, linker, the go command, and to the crypto/rand, embed, go/types, html/template, and net/http packages. Refs boo#1190649 go1.17 release tracking CVE-2021-39293 * boo#1190589 go#47801 CVE-2021-39293 * go#47986 archive/zip: overflow in preallocation check can cause OOM panic * go#48156 cmd/go: get panics with "can't find reason for requirement on" * go#48102 cmd/compile: panic during export method expression * go#48082 go/types: panic in error reporting for invalid use of "init" * go#47857 cmd/go: module dependencies not updated with go get -u in 1.17 * go#47854 go/types: incorrect type reported for comma-err C functions (manifests itself in IDEs) * go#47814 crypto/rand: getentropy is not available on iOS * go#47782 cmd/link: wrong dynamic linker path when cross-compiling to OpenBSD * go#47754 embed: 1.17 rejects types with underlying type []byte * go#47692 x/net/http2: server sends RST_STREAM w/ PROTOCOL_ERROR to clients it incorrectly believes have violated max advertised num streams- go1.17 (released 2021-08-16) is a major release of Go. go1.17.x minor releases will be provided through August 2022. https://github.com/golang/go/wiki/Go-Release-Cycle Most changes are in the implementation of the toolchain, runtime, and libraries. As always, the release maintains the Go 1 promise of compatibility. We expect almost all Go programs to continue to compile and run as before. Refs boo#1190649 go1.17 release tracking * See release notes https://golang.org/doc/go1.17. Excerpts relevant to OBS environment and for SUSE/openSUSE follow: * The compiler now implements a new way of passing function arguments and results using registers instead of the stack. Benchmarks for a representative set of Go packages and programs show performance improvements of about 5%, and a typical reduction in binary size of about 2%. This is currently enabled for Linux, macOS, and Windows on the 64-bit x86 architecture (the linux/amd64, darwin/amd64, and windows/amd64 ports). This change does not affect the functionality of any safe Go code and is designed to have no impact on most assembly code. * When the linker uses external linking mode, which is the default when linking a program that uses cgo, and the linker is invoked with a -I option, the option will now be passed to the external linker as a -Wl,--dynamic-linker option. * The runtime/cgo package now provides a new facility that allows to turn any Go values to a safe representation that can be used to pass values between C and Go safely. See runtime/cgo.Handle for more information. * ARM64 Go programs now maintain stack frame pointers on the 64-bit ARM architecture on all operating systems. Previously, stack frame pointers were only enabled on Linux, macOS, and iOS. * Pruned module graphs in go 1.17 modules: If a module specifies go 1.17 or higher, the module graph includes only the immediate dependencies of other go 1.17 modules, not their full transitive dependencies. To convert the go.mod file for an existing module to Go 1.17 without changing the selected versions of its dependencies, run: go mod tidy -go=1.17 By default, go mod tidy verifies that the selected versions of dependencies relevant to the main module are the same versions that would be used by the prior Go release (Go 1.16 for a module that specifies go 1.17), and preserves the go.sum entries needed by that release even for dependencies that are not normally needed by other commands. The -compat flag allows that version to be overridden to support older (or only newer) versions, up to the version specified by the go directive in the go.mod file. To tidy a go 1.17 module for Go 1.17 only, without saving checksums for (or checking for consistency with) Go 1.16: go mod tidy - compat=1.17 Note that even if the main module is tidied with -compat=1.17, users who require the module from a go 1.16 or earlier module will still be able to use it, provided that the packages use only compatible language and library features. The go mod graph subcommand also supports the -go flag, which causes it to report the graph as seen by the indicated Go version, showing dependencies that may otherwise be pruned out. * Module deprecation comments: Module authors may deprecate a module by adding a // Deprecated: comment to go.mod, then tagging a new version. go get now prints a warning if a module needed to build packages named on the command line is deprecated. go list -m -u prints deprecations for all dependencies (use -f or -json to show the full message). The go command considers different major versions to be distinct modules, so this mechanism may be used, for example, to provide users with migration instructions for a new major version. * go get -insecure flag is deprecated and has been removed. To permit the use of insecure schemes when fetching dependencies, please use the GOINSECURE environment variable. The -insecure flag also bypassed module sum validation, use GOPRIVATE or GONOSUMDB if you need that functionality. See go help environment for details. * go get prints a deprecation warning when installing commands outside the main module (without the -d flag). go install cmd@version should be used instead to install a command at a specific version, using a suffix like @latest or @v1.2.3. In Go 1.18, the -d flag will always be enabled, and go get will only be used to change dependencies in go.mod. * go.mod files missing go directives: If the main module's go.mod file does not contain a go directive and the go command cannot update the go.mod file, the go command now assumes go 1.11 instead of the current release. (go mod init has added go directives automatically since Go 1.12.) If a module dependency lacks an explicit go.mod file, or its go.mod file does not contain a go directive, the go command now assumes go 1.16 for that dependency instead of the current release. (Dependencies developed in GOPATH mode may lack a go.mod file, and the vendor/modules.txt has to date never recorded the go versions indicated by dependencies' go.mod files.) * vendor contents: If the main module specifies go 1.17 or higher, go mod vendor now annotates vendor/modules.txt with the go version indicated by each vendored module in its own go.mod file. The annotated version is used when building the module's packages from vendored source code. If the main module specifies go 1.17 or higher, go mod vendor now omits go.mod and go.sum files for vendored dependencies, which can otherwise interfere with the ability of the go command to identify the correct module root when invoked within the vendor tree. * Password prompts: The go command by default now suppresses SSH password prompts and Git Credential Manager prompts when fetching Git repositories using SSH, as it already did previously for other Git password prompts. Users authenticating to private Git repos with password-protected SSH may configure an ssh-agent to enable the go command to use password-protected SSH keys. * go mod download: When go mod download is invoked without arguments, it will no longer save sums for downloaded module content to go.sum. It may still make changes to go.mod and go.sum needed to load the build list. This is the same as the behavior in Go 1.15. To save sums for all modules, use: go mod download all * The go command now understands //go:build lines and prefers them over // +build lines. The new syntax uses boolean expressions, just like Go, and should be less error-prone. As of this release, the new syntax is fully supported, and all Go files should be updated to have both forms with the same meaning. To aid in migration, gofmt now automatically synchronizes the two forms. For more details on the syntax and migration plan, see https://golang.org/design/draft-gobuild. * go run now accepts arguments with version suffixes (for example, go run example.com/cmd@v1.0.0). This causes go run to build and run packages in module-aware mode, ignoring the go.mod file in the current directory or any parent directory, if there is one. This is useful for running executables without installing them or without changing dependencies of the current module. * The format of stack traces from the runtime (printed when an uncaught panic occurs, or when runtime.Stack is called) is improved. * TLS strict ALPN: When Config.NextProtos is set, servers now enforce that there is an overlap between the configured protocols and the ALPN protocols advertised by the client, if any. If there is no mutually supported protocol, the connection is closed with the no_application_protocol alert, as required by RFC 7301. This helps mitigate the ALPACA cross-protocol attack. As an exception, when the value "h2" is included in the server's Config.NextProtos, HTTP/1.1 clients will be allowed to connect as if they didn't support ALPN. See issue go#46310 for more information. * crypto/ed25519: The crypto/ed25519 package has been rewritten, and all operations are now approximately twice as fast on amd64 and arm64. The observable behavior has not otherwise changed. * crypto/elliptic: CurveParams methods now automatically invoke faster and safer dedicated implementations for known curves (P-224, P-256, and P-521) when available. Note that this is a best-effort approach and applications should avoid using the generic, not constant-time CurveParams methods and instead use dedicated Curve implementations such as P256. The P521 curve implementation has been rewritten using code generated by the fiat-crypto project, which is based on a formally-verified model of the arithmetic operations. It is now constant-time and three times faster on amd64 and arm64. The observable behavior has not otherwise changed. * crypto/tls: The new Conn.HandshakeContext method allows the user to control cancellation of an in-progress TLS handshake. The provided context is accessible from various callbacks through the new ClientHelloInfo.Context and CertificateRequestInfo.Context methods. Canceling the context after the handshake has finished has no effect. Cipher suite ordering is now handled entirely by the crypto/tls package. Currently, cipher suites are sorted based on their security, performance, and hardware support taking into account both the local and peer's hardware. The order of the Config.CipherSuites field is now ignored, as well as the Config.PreferServerCipherSuites field. Note that Config.CipherSuites still allows applications to choose what TLS 1.0–1.2 cipher suites to enable. The 3DES cipher suites have been moved to InsecureCipherSuites due to fundamental block size-related weakness. They are still enabled by default but only as a last resort, thanks to the cipher suite ordering change above. Beginning in the next release, Go 1.18, the Config.MinVersion for crypto/tls clients will default to TLS 1.2, disabling TLS 1.0 and TLS 1.1 by default. Applications will be able to override the change by explicitly setting Config.MinVersion. This will not affect crypto/tls servers. * crypto/x509: CreateCertificate now returns an error if the provided private key doesn't match the parent's public key, if any. The resulting certificate would have failed to verify. * crypto/x509: The temporary GODEBUG=x509ignoreCN=0 flag has been removed. * crypto/x509: ParseCertificate has been rewritten, and now consumes ~70% fewer resources. The observable behavior has not otherwise changed, except for error messages. * crypto/x509: Beginning in the next release, Go 1.18, crypto/x509 will reject certificates signed with the SHA-1 hash function. This doesn't apply to self-signed root certificates. Practical attacks against SHA-1 have been demonstrated in 2017 and publicly trusted Certificate Authorities have not issued SHA-1 certificates since 2015. * go/build: The new Context.ToolTags field holds the build tags appropriate to the current Go toolchain configuration. * net/http package now uses the new (*tls.Conn).HandshakeContext with the Request context when performing TLS handshakes in the client or server. * syscall: On Unix-like systems, the process group of a child process is now set with signals blocked. This avoids sending a SIGTTOU to the child when the parent is in a background process group. * time: The new Time.IsDST method can be used to check whether the time is in Daylight Savings Time in its configured location. * time: The new Time.UnixMilli and Time.UnixMicro methods return the number of milliseconds and microseconds elapsed since January 1, 1970 UTC respectively. * time: The new UnixMilli and UnixMicro functions return the local Time corresponding to the given Unix time.- Add bash scripts used by go tool commands to provide a more complete cross-compiling go toolchain install. * Fixes "go tool dist list" error "all.bash does not exist" * Added to packaging: /usr/lib64/go/1.17/lib/time/update.bash (already packaged) /usr/lib64/go/1.17/src/all.bash /usr/lib64/go/1.17/src/bootstrap.bash /usr/lib64/go/1.17/src/buildall.bash /usr/lib64/go/1.17/src/clean.bash /usr/lib64/go/1.17/src/cmp.bash /usr/lib64/go/1.17/src/make.bash /usr/lib64/go/1.17/src/race.bash /usr/lib64/go/1.17/src/run.bash /usr/share/go/1.17/src/all.bash /usr/share/go/1.17/src/bootstrap.bash /usr/share/go/1.17/src/buildall.bash /usr/share/go/1.17/src/clean.bash /usr/share/go/1.17/src/cmd/compile/internal/ssa/gen/cover.bash /usr/share/go/1.17/src/cmd/vendor/golang.org/x/sys/windows/mkerrors.bash /usr/share/go/1.17/src/cmd/vendor/golang.org/x/sys/windows/mkknownfolderids.bash /usr/share/go/1.17/src/cmp.bash /usr/share/go/1.17/src/internal/trace/mkcanned.bash /usr/share/go/1.17/src/make.bash /usr/share/go/1.17/src/race.bash /usr/share/go/1.17/src/run.bash- go1.17rc2 (released 2021-08-02) is a release candidate version of go1.17 cut from the master branch at the revision tagged go1.17rc2.- go1.17rc1 (released 2021-07-13) is a release candidate version of go1.17 cut from the master branch at the revision tagged go1.17rc1.- go1.17beta1 (released 2021-06-10) is a beta version of go1.17 cut from the master branch at the revision tagged go1.17beta1.s390zp35 16340623271.17.21.17.2-1.6.21.17.2-1.6.2asm.htmlgo1.17.htmlgo_mem.htmlgo_spec.html/usr/share/doc/packages/go/1.17/-fmessage-length=0 -grecord-gcc-switches -O2 -Wall -D_FORTIFY_SOURCE=2 -fstack-protector-strong -funwind-tables -fasynchronous-unwind-tables -fstack-clash-protection -gobs://build.suse.de/SUSE:Maintenance:21498/SUSE_SLE-15_Update/bb8014f5a81cf551196aa900ec1c2370-go1.17.SUSE_SLE-15_Updatecpioxz5s390x-suse-linuxHTML document, UTF-8 Unicode textHTML document, UTF-8 Unicode text, with very long linesHTML document, ASCII text3R8v#utf-87ac0d1bb28020cbf8450469521fe6f02b2702927a27759e140bb34d3144c49dd?P7zXZ !t/] crv(vX0Puk#W N脜FDGcLεZGUNLLJeVo_EW|5b ǖCxJS -ӰIόs8- ݣ+ӽW ӎ(qK3)^8r{ߋ߿7'4;^(@|Uc,wR|aɉGw[WT]) [q@i'z/.=6 yn8&wX*bUgbr3`y⍖acBHՓB0E4#ȸ:n'q `QYN5=B'aӦ0YJ;EÎ cȽǯPXJgSͬHONJIW4a+۠ k׭l_^3! E%<'ih_;qӇ3C9b5PmmA {Nsx3,e 1G'ɥZrt|Fht_Ö3 syhcdy-WsDvզzxgޥ!Eg@?g}Fi|5$\ʷ!QI̒yf3ko_89URp~f2kAfTOުD$8. q0R|trU=Iu ]ǔ fSlQBE  }Z^ֳIRuFFGZ78qX\ګyuC$^(9{戬2&T7vF?*ͅOgan*+׷ƙKRAE =r"͸{Pc Ch~;h5%Y֒/`B츽UyL(ԟ)͆ӘM ɡG&AT$Z bOcc\~p|7j d5ޤ ^ͦ`jW7Lp@8pBiocO?R1墲iB> [w@YUU95b.D*x"C}0i4y2BQe};!~ݙ.GB̈́AdE&ca$Y=COc)f{ė\b"2J͞9[e7OV6贒.K^¾/ޫtf rM"|8A!{7{S矨`YKL"NO`ٙN)daO :-`q{7BZ|g?Pa_R;MdF5!v_)%|TFM2 mMI6mLFqe>]chIzȨD1rO9Q$W|#am?T=!L۔f%n@o>>,SCTD-ϣV1ק1}`I#x,'Uw`EpImϵxThq;<ԂhK*>{yO*2b]O$]*GFɭ0 akrs6e8`\9-d%.Zm{f:^-ٰ9"Biqgv~%J ۞[jHC. ElrkB>c/(#~QV; %ɘg*{%9H.#L,-#{؛A0B_[KCRʈ^:J@AaӽoH󳖠ݛFp'"ŕ&Q\^ f- (^ 0odt ,l0sVfL0[o`1 S1nP7dc%ݚ:TKx-*E0 'xyw{0]0Q[:Q YN~ݪʔh-7%Sw7f)T%OeQt~ 8Jj;@ \Xa4n Ԛ<}:UJ&lkBqYE#YLJ {PK47j9៝pnw Z*`O036 JJ DAlJ_(I|w"WKrsbh\sAl,pgMH8lɧe =;r+;=z&IX%cЀԦI{Y]:T BfpS}_ x%8$bӄ,oGbD2N3O>BS;Ez<U #3Y"gN;%B|\ |@i'yxJMIhJ6Amo(sqg.jB#q%_R[rL_Hf(sL?35p9%E "œ\kO::7)2VȪG}YE7 N𼅅$ ^GuPٹwDs|u0Is04yҹn D>vWOHJ2n>D M0SA ĺxie`BPx>{I|H44E䔼L Uę,P=ŭ & yѻ`㽞=k0X;B8"cwav3҉:jAf%֬FfeqRe̳5 2rːU^YDc$Ԅ&YeDմё o7b86~$jtyFfÎ[.l GPzGj:lqL8f`,b% vFjMQi+i|1;=-Ch`i$HJJt1%:[o]: v [ʢW^o*̉A1 `~`cx+-& y91l W k'`‰ mQr+^$7!0{iƁ8%tic̔c켏3hJgjkُ(!"H$ je h(ۆ6IwYrڙMyJ;x1F01?y/Ο)e@hVWp7a@a(gmMZh9('|< JUǰΙ@f0.^ eQ) ˙9Kù؂}x׿;(9$yhxѹVY8p*YNր?M̯rS׍q9eQ4V}SfR-V&BR\<6x:rtUvJ|NO}Qh%if.Hg7tKVYm2I4BcP,Z'߀밅(:Qfhu$zu͒SdXP"J) >\QK| ša|.kd4X9DuRWQz\NutM+2/v=/)s.Vh*^sm$-ʞׯ)#2^QSEz(dB=UBNYy,F-*?ZS81FMMilC+!Ō,d.b sg0WEn`%]`BZaU46٫{^?"x#wVtP@"3}z>Vޭh-,',֯  @dY"Zw\=PG.v:RXE}Y"IKaKPh-vio븰`C'Ϟq#X螌]<Ԓg#,T͂R|5PoMIV1BmlScR3Y=G9 1#1;!T]ƾ qo!T*wE?:0Dwϰ#4VZ`f (ڀ|&]XlO։a",i1alj9dJ"nj*!vd՘E=w_Hl2+v!9X|/_ݙ Tj)\`L-4/kz՝j]{f6PY;@_o STָ{#`&% K4:{M _kn *q5҄\P,9{ #HepE PPƉ,#UresG |<2 o Cn]}BqP&cіfJZDx>'ϟBXKa)͑z`=L"C S3!HN1wl]mđ(>ni[O!&1ݹn9_+ l5Pt02| 0+v44:S3L|QE7W`c nqD 1;W+rXZ7=nt&!ї;`:WV J A.暊wy#5^f̙F bγaգnĴ7ϪmA\ {7ȟH]{zqr(*§T1lv~QS8sk0hE<RbZBΰ mz%D891{_ r*At l2K~aaҨ an]]H_ɩ)}\̪kE2$EijH&?qF^zoIH<ǯyT0F5cevBҰ/S)ZoްiƩ @0Sl Ny휶KΎ:hG^Z)h _2%Cޱ| tJK't= h2N+//},Hy \)I({KD$&8`(f#]/wZ#xEֵ^7p/B9@ W1iц,E\Gy1˕? ՛Ki4AO4z3KɜJy֡O;` U)6\0$#Sgro`q~ \g~=bdtl Gp?JѴYNu#W3:HᏺA@eZֹP^ ܿtK82-B{b-;#^ bg06a%c34FCVƤhsު^sA}# o"9cvg J*_j:{)BMW1ۏZ]eOeiGKا"NC*Tg -憽gbs7b߀zS㢳" B6n-D39RYw}P^BL]Kbʸ$K4xIk,wn}?[uS25W~BP TԮCv>GF#׆#!UD_kMF-"ɮ&$̮֢ξQ/)8%d;‹!RbblL* Ry.c/])E-\1^# si $Y;#u_E$7۷ (0xb1nS߶}~OLVI~48bg{w!]"HBZcO7 *wMkW#п9\lj"/hfSKe}ZA/'GtUy}1w 8&g}n¾o󅇜IwM wT->o $4G!,ico[x}B#Y@yECՕ{qG(@Ї)/dD\ W(w:լ~.s 65SzqpK)?ty.$2hYhnWA, 1N>l:Sa]^ru{ܨ_БP Mu1d|XP-| er*x. 4-v9. 3 Esxl8/)e(Cm6kkk 3/{>*VxέVXrPTqkR)$%qs4j&"W*0obD=i>13AZ˭Vk>~(<ti=4\hx66LAcU}#c-W %4Il1Px% c39)2 O8DDÊqs@e.+=WӬA\{Ζ+y5ך1.),ĭI$K38E3n:srW÷k9/f{(NؙDɟ#QYm'&9oNoC/d~13AƦsJݭ+5 g_R9$?iEq$Ғ6[(=7-A$5:$N-^ukNj~ߺKyU3m0Oޙ_FJRf~H9YI;_f $yz|ܚ z'mltnh`)I2}I=[џ 8-d ω@k“˽xƞIΙ!"h; \ y_[b$JS&'o/:I/·)e 0Ng6n&Z=Tȝ)=)ps^ *lV 2ٓ!"2jAg&@7YvX0F{羒Y #Bh1js^$57 l HvKy(pyƔx0[4Fz J_ [y]XWnoEO4HƹͿ+ =KkڈKb0o笪wp -\98D~DyIC8>;wnj:1*`!tv3ȣݬE<2k :iG?zL7ŀ` M(viY%Mf%M|1\)u-%ۭB: W57w?%1`I#[ptaM&I=Fd)Ok' k,{(ꙚѱAխ.<^EdM}0sCM_`&SIz;-]L$̭L O+i:k!-?6-V:Cs|j~m^nxszKܙe oD=;$-/`E\2&Zu Qc\ǢcLxjp+E8FD!1{O'zAETSjNT՘G,DGryNw2f mpCiBDŠ0 Yu3=*y"muac{T͓=BwsNgf!XY9,57z@!B4A32hcyVDD؇6ى1i8~-o5Egp3c=$m;IFMd#2"gY4LMRPN h(;S7?>L8F(i'آ'I]䝥93`x{h RJXB/Bçu.@/!`ns!=lGw亙a3m`R)f9iG.dp2;״ djFJTdmui!S(E5k:efY%y_æw%M>%}Hzx$3s3ߞ,UFƼGU:NABAEJbɖc]4i>7pov W";9 W:a$dCb>2DA<ޢ<~/KbJ3jmţcADa=8bɕ e@΂t Rc|`h5[{!=#m4mAÞ5}ebwtIxyT^^fT>߇C.Ȅ>7}LڟYM̌ܵ!Jc0BA \U 儧m#s y%]rFGP77uPޥ%;+ݡT?9_˹ЄB@)wVm'm+]ꅫ|g5,dOW4 ڞi/dԋ'53U%œcG$S븯@kYew ؒ ;KYk4L2#Nv#Ay29Ǒ+yei ]r+~80D;3Ϗkvi#ZReuRR2ij"fQ噊AC>>0qe^%7nO,oPKdbzv2L3 Vbo9꩔McM6xs=pp:ɹOv/,JQG0'4KFI.1jP:( e [WNU ⛎Dhӭm~p;}J'0T/^(s|\ljpEg\0&֛?7?i5V,^OfE|S44K~RU@pŔ:Aqj<09j;()R@&kNOf!ίq{*7G>!<) qukxvs܊;?c#j =qgZ dYKd.w``SAt9d5QgTrpGMV3'  ۀ!<9&nT.XV^[;fSх ՙ+9?ǕeqB30a B-2:46[:a;DJT(ި6L ^zO 1:_ba8V++{Tge=4,e!E]<\=tiK,9o͞&Po'L* }mnE­;tXLpRGנ瘅RV^(PIԫC'zglK5a $@ dleoUϮ+T9ZܤDj KZf#DiۮNaȴRMjhp.lbvcMUbm]99-wg"fn!fwz K4B8t1%u*@KC'eqtV 3^Y(,q֏7M&Q=R u} 2` VcyzͻHarW?f?y^2i&QrIeF# Җ,̷# u4Du^ NoQӦrZU [4ԆbEܙa72'QtNM̈ QTSaYf]A(Šh/M9)"k6ୠ=sĬz9˱!+vLV;e֟$=/J˚"RP_93U$.E |FnLTr E3#x˜r֮70w ŧ\M 2tTTmBoj\Pe뒸9A"^EDYvϸá^Sϭt|^aCvչu =_d `'؃傒ctIC_(0#yfyA̢1ck-`M2lNtJ&Ռ6JHpMt ,ZUfOJ ? joCX1N0/(oeLqVKoeƗ*hcdOVV uZkvකodj:˽c)J"op6aCa1D ѯ/;d z`͊Hq| TM vJ"$c($(%mOMCy?-d#} w#LgB$SqMDb-Ԁiio>p"ҭ<n 0^!*IeɑIvӞRdD˻S6-Ǐھ /.CpuŘME(\pS}3ƔnPu 5~}p8O A!L5%[xx]K3'i!\|X(h!E 'ñٌpq .e@]g[n_/4b[iMx"nq6ag}~~)} [*{p̋3YN# 2HGe{{ԉ ?*f*dܒ-\uK!=cKhu%;3"X]6dZ&_%l,]iS:9ge>.DWV=sN3m<%{ˍHU$PUأC_?N:V3e!ٴMd/KX-r@bdP PhǢnkb"TbkV&w:6AUc˙u jf eJbמ+.E3`gU̴:3H˥a TLv{O?#uCSi՞L-rStCR m5Y-Bcce..`'c}.;n=ݑoƍMT=.2YR aB#IFKkQ⍽S{/ղ>gM~^C.7CKH< $RU )Q%1W x x!7#"ֿSt֬@痄}@)5TṌ-mF;=ytEOTDV5Дs+5fp|{j#g?''@db?[BJb_-T R/ 9qXj- <{ [Wo2mkv,z.kr6x'%(I֨^5h"A..ˈ=xHDpT"mWu#}htt Vnb+lS --u;:Nf:JAs.Sבkb w+h^ Vz2\=@h ,.{# Tz#}8v ]P켘5c&!Inۣ2a'&oaf@ް?P~} SAl6kSk6$%pwF1MF,iP-MC$.ȵ7>߲y%׭@xo>i:Y /z0;,JIa56mVs `h8 Qz,;Wo{.ǖ)d&su (?{m/SvcM{yj*\ʠdAC D#~'r/To1UU X0X&jHfy+ЪR> qMܴUi>cz]J,O%ٻ0RV}7HI2z_Yk81a߱E9LPe9]A,r-kK݌ #ZG?;EWJ4v#咫vX3^W`sRƮ1 Vm˜}{"Rq(~6žkd+_PLx@Ǎz-Qw&e#\'ݗA(*spq uC8`tX-B{$/:qRÅ/;1ҵCձm|=@|ژ"c0f vp|TӋ#S!(ːK1˂A a s F:虌[ 4c K^VBWtYU|~s'?0 sx zljiFޖȕX^e}=s hCLIeJ0E$.&I%V Q\eO5WcxT cĢtaUfb*Ds翉>-a%K/3ޕ;:yވDAs;1 t]+-<&l;Re@!tH M0o9Ie618K|7d^0M: 0z*V9n[@Bq@m¡ gi?a}yfi,1Vu=eHYGi*bDPrD&MECIB!YUPؿ9#ȋ D !2[hF^`[hu;3:ZN(M5]fR~cɢʊje|NsU7ׂI!FmaZ/?-R IN8hd;Ȩj Q{diS/]쎝g ͂km*?jz5T p*h;+6ŃO\VrhwfE]\ns:d{uq?xҒ$%$"o=-ŽQVL<\ᑗ-I>sl- D@XmL鲃j$> ǎ*)ކک`/#⧂vpOAh[)";'0hb 8湽{a/uL P~Я~o䰳gᜟL>HO(s fpٙpp֕*ͳϺ tA[n]sr΍ςαo)휶IA;&ޜ[]EI>^Ao#] [ jY+5kZFRK|jqfdh5Lb)Av&:N~Vµͦ.0 Ovڬp;q_L'{MԴcL&w.%棦UC؃1y rikS,W# Msh1HG$eWu}5cͶk4R GYYrT"%75j ԤW_f,(XT=[%vyCsͼ7w?)#eǒvZ 0l-(9CUf_)xaPh#aK@,wφL8Z|4BNUd*vXNlڊI-mmlf@UǑQSiLT#m>%l%Gy6TS'vsnk؋A' p;;+&oS %b3Wdor'f{߹Jy8: )}IJ6kw_RsB!I2Aq7jp@Ĕ/a '.V3G})ܲ \9~W칅(i -Z62:% L9Zf e2NiPu"tep*4HQ(BYW&څʻF,6lT6N‘td۟oԣGAkribYt ƿ$uf$ݹ^JW^Gj?53wwsN)Rb׉z&"#Σ<)4f}Z`+D {bFfp"#?JZCӨ`$tU^ryXHΙ\|$ 7Okř1}=9{ 2EؗX)Nq}B^R+q>?I<K!R]D%#Je9#6 bt94_sԄU&#VR ,vǗ67Z] #V,Тz'.f}KZ)d5L JfL"ٳ .S Z7f ^ qܦ Yw U~5p5(Ս\ Ōܫ9R; *#nd@C0 9}s2~Ã"Nq]rzGA/xT t)cF֫Р( v?#?{1͏dvzr6c"NF%4r>˨KAt~l䁭jҧRoml4@Fׇ4U)Sxa?"8 `6mI~ufwc+xQSr\"e?lDSS|(Kد70mtrbr*ZÙ.xQ5 xfzfY2Ѭ1|"\;ta}dZH0rC#ؓB\Cɩ#QM8G P^c4w[p?>oAވTh 6] G=N~2 1解|CTC|ck~K+Bn{ 勽{`iwJUը}'' b0i(Iµ0+eތvbu}q\К>B){3>oEuQĞO"jG<+π_5|@C3<@cs!GQL@/xJYŤ @bkjΖeH0⳪;6"ڏ0NAK_=2нSqQ -osz$`ꪧ眏D 4hKW}ZT f̳@x|ٝ G5W'9&J8Zkg56ʐhnI(`h/(b_#gE5s빍>M9^ rœǎ+mnâTH^`V KB=#1T aDoH8cRpnNtF!rN oo@!ϧF-_L-TQ .6p; ˇ<ֻ?NkyYލ8)?, 88 m;DtiYNr^h)ץ%/MAQEBsv{Ǫ"vɱOcأ6RyNE5 HڤT3##(oP|XhAS@'&?$=~p(:QLًN9 \r>>n0T GL7],"aݠNN&:(mg3%M&n۸YTuu .>g?~+Ӓ }jT8#S PT0 D?~b v^GF+gOR~LݏAE<#)}*idN.$oGRӔma)D_w /&˘ikY΍5"if\dqև[X悤t[:H ()߈kd_՚:$.AG ZkEJ~i LHNsm`O!i/q1x`@WV+DS:Xp-5ݢ_YM w^Fn5{3av4 atCL_٪)-ǚQx!tŠ(b\ćר1^% 6fQ)}'[b,d(%eMM")}[aVWa"]D3 τDeA)+N1]c Q\J\|(ŐѢ|X0C1+MgWt7VqLwI*~bg vULG;.Y;4!/q.O|_4&yt9EϞ߼>ҹE13P.zbM]=PaSaPe~ 1Ei5 &I%sqZAT5!8-ɘћȿ㥱_Luc9`#V.oGDJ q<7g yg%) z1nL .a`\cb[%TW(#|b5d٫{;v_1cKe'5Hx`$n'*30WMLQ0#ҥrD1j,d>p)fgqKQcճ4B*Ӧ;Ul`Oe!++͞y^< ]\@>{UmB64xFK}rVqN(;% ]d궃L*Vd+9x계/&%,inLH[衭jvM4Ӽj7ZFS5PM!^#׷zZR^ HJ$yBq;yR 9vQe^6=Ft蟺jgD2Ý8ĀTSų P ȴҤjf@ qCEd%FW 2nps|X.m`A*?4*ͤK"9M"9*:7g>CӉsu8*(ΩJ%)a.YBn}[=n3JJq$GtP'GsL#u}V_ɢhmgpOM)/,9;o,3Z`/VPvoy\RyTA/R}dm}CHE^"5bSZ9}8Niz3 zx-l5! ځK'Bj~![b?+I ฀߄B%+@ iIh`m*]$eG_gfUnB6~'Olp3S=Xfdw_)_{L2tM2#Թs0TDh24/r'і\yafƟ | +@+Q@X&ӽd_Bqz2S14 0K CW-q`On>ԬrLjg#d2/ؑgS&37'2fłN莵%w7k3V^Vi3l׌CĿV%+ٜ+Ќ$0m(Akq8@!(>>(@46>+ڴ2峋)dIFcp>*yrΗJ~ooR2TH-[kף˅0]QD5KX o`>mNrJ@} !b &g}~"oISD$f'@dq 'DBJ K!H0aob"Q|#f画]N!ڬN*ɞhAQ' _|wuWWÚ>[!C9:ƭϤGa*(C⭇maNhc&?nL/Zu/dnZyxKJ~YX! "Q &\j9Wuw/K&esuM9k]*Te)&]ʆ1a2B{_|W>zyFn<3Z WrpUWe~Y4BM㱦 b,sm Ƨ!.bށ`F,SJ vARݙIS GT-8R[N{|갰r/?@<[^e0| >3t% BaYTPyJjpk|8ynte1 Dw iRdT N MѢ̴%{okܯN6LWtQZiK~|  =g]LIˑ4T =Y)jN,R/_ܾpA1I mI > V4f|ro1u쵤 ƎߠQf%M#sŝD K ]&bcuV .!&'OT|CgnZ. %O QSV,irR)B=ĺxo84wUfPDʮ^&HHNg6JA,asE9%rc{4-?z&E%H"37& PM~9he S M{2bN}Ec[?#btBzf,\\v{:u&mY ivozY0V>O|TWQB 0wV^bg9'U$Iv4_ڟOm᦯Wz`eh~eHf+bUUA蛂<~{tJ"9x3ި S֣:K*`nJZ;R8=h# Wߨ'V ?(޸"g{2,7kGc>'>~剀!Յ.B^j'=jMǾ:'K"S eZ+/aPsU K':zV:>1S_6i#(}d𯊽[MOvKi9o޾g`!>)lbгSߡ7;*5eS(I,n#b%P@rƄ`rc&2ե.46 ]JP*qsaƒyw`#iX$ALq5afh~Q|6eK]\u^sy $᪨Q4D96Z;ۣ7r堘 `Re y8Zכ,b|aQrv$Oj%&k9>ʢ%g(:1uw@r%Nq&h!cnsڎMXG*i (@L`n!V7ucҷA PJ~l 4&C, L' v\CXnO-xic'|2?\7;29C{+HIfľɬ6#u}/_xK +-)A汑FA:K>s;L$@Z[o"g@XF!fgmPy:v&Myx*)=`0˹ZͥWNr"Pi8zߩQ!Y]17QQo0xVDÛ0hPĒ..FӊTPУ? AAs|"?Wj2݌܅<]y«! _249 ʳ4YkTZpӴBМjR1E6+MM1#5 /JTŨ̧(fS#(h絲[קJ0iT1(ꏍY*xj`6X?Uh@uyJyhׇ/rB$ =ףչCd7P:}ۛ9EiAQb֣؎Wԍ;qTs+ٯϻa;h}DYn^FFn tzru͡FtFTKc+ivt}DTLLڴ{b0`(.ȾrVl;Y-vԱ4L2;D= I[5i7mI5ᗌhRH0m9_`ʱ V!"W!aPj}^%Ǔ>S9YeܷWV|Ox(~#o Q\` l e{`k [1v"қIWϛyGy]3.x4ϕ:oymD/)b %Dbؑ#.w)6i]۬9Dw]隒󞍏UB߁s|1,2 F JZdpS݋7;?zr1P әׄh1Pb̊m M$7@3F2TYq;]|:=bd+C}.^u8hu|#3Ku`u:nؕ#.@ 9E|1ybR!z4)b㆐3\kz"%ށs9= Kπׯ|Eƺ}8"J"h @ ($i| #! F+F7>ؤ /NVD"c3R )whcz(7 fC8Z\W3.1GA-R~dky>?>.T ^(^]&^Jc>MaerR^\ԇc_% !(īB[xj[6AKS)rZ.<\2 ^*w3?VM87PsZ0DjYR?jOƫmMg/5&%vJԝtՂ/e«rmMy8E5&nA.55?ycibWWK} 1St(uE(;g9q 0 EF7fض>0XqCL,) 'OxDsG 3߃X;_Υ@YVY*;#{)|{8{f*MuMw3B8y3[K}7 zP\QR٨#",a$7"(}L|xJJ;a'I} Xj"3;OWa= Mu!Be<1no׮}A! R(B);vUʌ\;to +ZN9rY.lgqvQJ'bA| r¹Nٗ5 pF*٣>"Ż4Z!54;4J /;[>k%pU?9@rkaN#xy(Ě?K3jZ*HOb1MNp8W5$ kQtqŹ^rn%YNcP"OW_8=Hb>Ūn¤MxZ`Ln&0u+Z*%SˑP?$*}Ɔ~҈4=ƱqQ]e ӈ#d]~3=O+de ТFcs.7:/R"?!C[Ș@f}e>3_DF'D!>dLY ‹r6wCj}`@j#T8(ϘzU mF:`=h y<)$##pUCmjRڜ=nwMwwvI F+h#F1~>P]  %w/!aS9=RԄd7L˸%&{ ~l* T2abo ր̵w C6?r|g?*v?qE-,bǎz搂`3 vNU 1D%~pݾM 惓&CuX"])ʄh)[lێ5>  ;*+6JVwUCSܕi; )>(mդ4RĒsFT1; 7@8IZ@[@4h^"!n)ˇz R!$@g,8NӡF6M>UpMLZ'NVi\AeC?dx0*cGŖO1(!ҫBUjI T`d󃅜aw;D"~, 7Z.#z,Sŷhpj&eH].蔑$X:uS~+$}%4 q[ ڃ`eb{ 9^q=|?zHY+;|Z'uEsP0~DH矓zFx_%?_ރy_c G9b'}08Ъ@}L}ٶ?X >`I _PUnc8k3X^׺AbZ*Eіg*Yʩ5Pֶ*S\iZP3>6_Z doxo\6Xop.(KF)~?lItmh, ] y:l`gZ|Ʃe HlZ|l8_ gR=Lhz8f E\amt$+YF` 'v@̻EX-uFEh_x}(*Lq]v;)3 .ֻ}fӫ6F#s-+#nu]"3=lW||j%*F/R[6Rd8Z˝K;t`|$,L~I`IA3Tyč>{-R;+m ޤOwUAph 0 T %cCZl,تF8D) wjn?=T- &Iu,w@W37t$4 m%B1wZ F2!1p=oq}a7)]vx\) h]'44eYsa0?ԣR)&`\!4/I兊0SlWE -ٖ[ک)nP0D򺑬\yNr*Bw\.?eeE/2\.'C9DR#TtLzpIzp#dfΜjd`bG$olGLi ?^/Båvl\^ζm7Ƅ8﹔~F>8 9klJD!(nj_H=ժ0!2 4,ĦhbyuNO; bYM ^* "y ^vt}bg#)4K8 >+]~b(б hL@6T X54&SRb71&}UvԥؾIbPUp'4=ldr4 W3 eZk);ɕ琈%:NpҘp}m 9q&dr;Ypz?LC@іؔ$uHSݯVȵz=ZeBSG&"vet1KwM6`N$򖨾z1NBV+OZڜp+щ fr? gXvƤ_"kD <#ւ4#:3j7 |$뉛zjOu<-VgfWH`v8>0C,gLW&Ce5l/ / D=CFneǘz6@p@ӠGAw /tM%~E."C^Mtr Xˊ9@Z3:Lj,7^¦M4y 2̤R :´7 J=@IbaQmi[-ideQAMƻ#ڣgVHQ󬓮w&jY0ͣsz_o |"-0]oE Pɑ<,6L:^bZG5G}U'1e3 'k>Ñ 6֐X]C9.90|S \V3j暂$iJTQ*4AnS1HK5$]cfڊ$ 7Ɖ1UH |pbIFA#Z U9:0†+s}!{$/dID͏ЫIR15l8;ݐa*O,8A6٬!+yLY|'00{L:}x1@9"/˗B $m5o Kd6@̾6nvuX xXU`3%fR< 4̃:\ň퉶,Wh=;Op֕}&Qs|u`eXѵY6Ƽ;LGI{Ai/g^)*}{%Y{s@KSʜPhRKWajH{bgEjT#(Fuu;ysk<`,&1,)\%B9K|,)P~c!OljEЏc'\8'>'Cn9%]w`3ݒ+$N}4"}#a5hEXݘ^w⏮ؖps\@cq tCL$%օiz[о6%Tt(?A\ 79)X xi,{> Z;jYy|Zd*Xb0p⋹35R- \*a,W9:L3Mg2$7QiHwR6PbTB퇲6B׫ܓGTADC D΄^JZ\fuF~/>H'uNO~/ؓ'n֐Mv`52!v= \!)^]`~)*'PT=> edjXn?^ N4*"n*[DC?"_/~XKun57땿iPV|$ IX=xɸ?^ƍB{T qfO'uSݒ]lb0'v`|He+E\y.LJ*v_lIO{U`A> [(%"S0W`[y_w~QY|1,?z༆\k:#t͟->tZ avwQ;ʖ$WN7$Qlǥ| *JuL|X-V ;v@Q=.G7Xx.̺XʳiSP2>V[SWt>iPكF.9y@B^^ a wD䧷Oԩ.Daș/:a_GjS ii%EIlkJI&^ 僥cxRFt5|dA8;p4kKKL¡U:vV9IS@MK'25tJy.SU朽ޘYtqJ!X\*7,%g Ө,k2I^$2c(a>wԪ],]v"orZ ̚>Ӥ-j6@plURn4'w5ѿ_e 럇/KCtI9UxN^re5l XK1{7T-%I_B=A_һmOʯG//X&& j$Va6sBov ٝsٰQVaԤ T : 9.ؿ H׶nE Gue1`Mj9$(I&sy& [jJ*jEA@m^ߞ ԐC'r i^j;Od1V//u9;bs}N?" <*ۍ.d~^yr[tR鰫H*JרCIZHTUw'XӠ r>h? l30-׬'h1JR#T|n*`ģ(w^Qz蔐9UpXgLl'NĹ4K'$.k!n-4thI=drc`tImֹ䮳ns]i`^[KE:OCK_~QDM<pJt [t.o ΜH0BWƼ'3*qRV;K!݋lTOnAK$x;CH麒a@\ >~naR4{%/;3z*WR]C?Hþ܄M脟;_Cn%!@rZbyM Zn'TB?_(,lQ5G5|68Ks%gȘ..šC>^ۤV݅C?z2Yb{@<QIYnJrGL ܭ.y݄p\]"sLwf?˹}z]~"{ Q%£\jT-m ->H૛0H;,ėđc;!#[:Q=%5O&mkJУsBsM(AcJ,+E/Lg)N55Ȣá6BѲ gRjkr*'QۭњM=z||U+}H TGN敀ʞnUh9p]q X%:q_\)c`~^JS@(OȜ#漉9 pº[`aXn9(Y"H8 îr녉7>atl IE {dES;o̤uÍT@QBoҎ 2V/i2j%Z${+%)8F{.10ˏЍ+& ) Dg؋F6y[X;Q0#Zs`NJCP.z A+Gɣ.@dqxl ]L!`}[lٙH j Fwg3JVvO`X7)rd-;YWHlhV+ P;:o#?Lhdyh1pn cMg])mhE峌U) }F֙a;z ۆTWgMy}^%=yt兿= *ȥ3cCLH%Ϲ|AV~6(q#Uv53$U["+BW.7cdz^f;G┊3A 5*`iPTёBT%B"cZVu/GהGU}/~@0/JCiLk h^([mW[f=OUA#q 2d葎'5_mj0Ġ1 Q)}gaeMjRgH^’/H(Ec@54X3{_1UgH`: YHT&hJ{'BOmt_>>@6H>HB G~~%Kr󔖜IQbEdP$ nc}nY?gJՈ%C{~u^%+h xa%K$;Z2Czmt:4l%&sHh;/7W2JDA D|zM0Ct1 @+慨iuI&X~`iOva%t TRjӵz d=4ϱBFv萘L (\{MSJ 7#4+Zz ݮAȠ4+@ߛڭ@\z4[o_Ȫs~y[kqZ]rsؖ sXj^ۊ^+쨵>գp$8fcǖ3 P=hm9. odit!Jf!-M-ڿ0yE|bjy\!jyau(!1/K+`ƭ(0[I8GAD&B_/E5U4 [`)aLҼ7zmvlXM]j'{3-r!73oSgfGsWaqP>e]:O kUij bq2cm阬cc/eSЕoZcd<@~ebS +8r@ @ 4bT-} (s-yN|?m1OMvN;WpA. s-D_򌋧fߐ Zg=Ee"ka ִ6h6^`qv[ Uʠ(*y{Fyo'[LX>>N" 8m' FBr>e&=rŋa-|4W4aKED y] *E-zWśvZ6Zxey14t;1yJ q,B,ىzEe3Fͼ1A 1?TQٯKxT?z*E;etau i6j+ASws֭+Zdmx7`c 5r%2&^@or^nq 43gtesʷ|N(3v!h}ZTLHج3!G-V7&ÖN^}sUZWa$Ěy5$Km24z'I/KxAv_6E?#j$8I2}#;~d ι%:e8UpZIzD[dTRx*pQX:lײ>SO tW{1_Ev5.D-ԭϐ C{Z7p?a(>wQ׊)Oʱ \cyO(8{x49+/@2JK۩p>#r)˹锈b+;}h!ʣ2 6RFG,}MdWWKT g i jyEN?oX !.Vo7H}*/ i[Y:*%+~f~k),`x&:8Ey2DgJ(FO5ZMdg|QF97!DaΡw*4i܌m k}6zR#J^Sa>ϘUr BeG~.al)..{RL{U. 8E4oV;VDJ\g4ky,AyhYqy&,Cu&'teSs%M$fO*Gt#.m&iZYFsZ8 /_l@jκkwtw 9) ᛠU*2`↢Nlr6[?k&] RP,fGO_2S 2a 6geV'7H [˃!?L<{XEұOzO'i$Er![$w+)F[Ƀ$E`7tW30ĆpCuٽyj$wZ {C(.3E=u^אuRh^L4LA!ˠi׉\(-y{ % =&01z俓p5N')?],wjm3t5CEQTtlnO%TKٿpd #'l TY˸~`-{kxV~8A4|/!W〺g:-3l' *"ڎ/}qFg0l_޾\~p3`\'Rg4xfZØM>C2Kh\P?wN`iփP[FejȂQb(W< `3<?d~],~o"l{}jg4E5k f{V}!vuؚa$pְzjP4Pzӹ!ע%d)mQo\eX^z_^b1&8aL#ooZnQs*ɞ=:H`wJ C_Ђ& a mf?a]\#YÐ)iOgS [IFXn#g wKS܀Fm7v'x&޽dƷ,߹&V+}$b l`}- ,?nkAcMHȰyVV?,rwv|794Z z Pd=_>SE?jo+^xCQ7Kܗu@8@ԮI*3 -;d8I<\Dض7Igx\* mwSF n'ZdSG%952X Gfi;ݹQ29,MGBpNHWQ3S Kd$T2LS}O#eP^w |XLfS KtT;*'~=|")Z-ep0 2"bq{Xen*P5qNL˱,m`t5d5|CgYuUg F9 *9c+X{=M#ENp &9t &n^ǎtϰg\œi g=3FjvwyZڨpm.!tM kjC#h!xB?]'#b-ЊR)%_uyj!{v:ɚѹzlH tKԊk:oԂ+5o⎴-34Pfh$F׈EoR?( x-˲}aju1JϹJ{7:fNɥm2WCy}az4KMs:^Ab*i+?1]u|ݝa97U?zؘƋMe aGe܌bukZ0A8W6N1GP_/dRwLQT9\7-gjVE(Dm2F׶V6ŦNEyA+VƱ#icD_Bq>9%Ԑb HR=`W,HPU%d!xW@οSjY}Mv9G5ړjuA-| wz@F,x|~$ r:?>*[?⑍JCW9rN hAVn$nBhՉ,R[V/%e[Pv)[$!F ?@6㜻p^^o]KxbL/W%?ߕE{ǧM0&# E7 4ht%I Ŗ[yĺ CfIEeZٹ&RkH ?eW h zykQ"3=hotsDSB(*s9K5sT֦'6w*ݧZhA0ԝ d4P4`mѭc޽I/=֎ A"ޫR$_N+ЍvzLH"=ڗ ,QtOѦjR9_hkzS^N2*D>$DX U L O'KcD VnT662 $["xk; DAA;-6tX`|.o50ja_@Mdkv\&K#8_eH4ߌlLC"J+X1dU㌖13r)m 4g.w w+ LȼEݐkfZ̥$:n&6ryDp]JBy@9z.[ˇ푶M,>WM֋݋!'-&e ?V\JmBeI当DX;^p#~[  P ޼SwfNJO UwbE dwA6_htyTEZCjcC|N<.mQ7Q1-XrY.J 'Py???g)=~?dk>{k`|sA_Z!mx 개~ķ5 M(iY:wZj_隺.*]wd!AJSFMk)B Q`:ާT?or g'I!W#}|,vpK&%R^;F7Zrc|_7t"a\{ ~F1^~CCUZt4([[\#Guy8ƽw'PbL8}w "C2-ݜJV }\0Cm-^ۑ7W1Qx% ˋ~cd[LnI;8Q)+mq=i, &MzcOԲTŋ4.9 Hߏ QBX$]:Jy' #Oh?HIWͯͤ+^*^a/MT(ٙm500ybd{ >cp%c7Q?tӗUӖ?%m|"]zV 1"*V>!zcmL@2T2-k,PÀ )ZDV'. n}'.t)p2Y-\ _8a9R4> =3XJi:C4)cA!Lz2j+tfWlȳ|F#l)R̕H,,p)Fz" ,2?jh oY!k'dWdnn8p8Urٽs i(<>FНɴ,\""0T^u31@QK/ bf*ؼt?'[92g!4R2 /–5g7%lD\CO/Fw.Gp >~W&LK?6#".;k>A+EX|9*nC k$(֊5LO]*qZ :$yDD5(df+{r@Mayxɤ$DeDb#5|x )tNIh+ex fϭy=EDɁ %hè*Hk񏊤ts2bߔ %aJ&ju*J*c,X2uv=}Q5ʢ@tOwOM}6ȐYÄ>m%[ =t#?Q>1H.G8<lu ظM}GOTCq"0w"7BczOZ[ >{~>X,?%x哧>?nn넊R(엵&u/"_ +|V|9z$3 ǚ n qM!]J^&7Z|'Y034&!@\HA[P™jwr"ԫ2b1uY58g10>yd;[XL eEfp=l^tחW&t(3{(;|Veo)/fi]ήAū]GMBQ:}Sz A~RfaDEE)2NҶ0j5ݦE * ᩗsT;LF {@Ht|b* )+V;yp4 (_8BMqœ,砺<ۂigޯp#j ? X999#E/8iSuh b=D2 ő =?M8FMͷ|5ּZi$ PB*c }iW8C0&eǯ J$%.JHӞ:]Xa-?4KHwt^eiA7-.|m̐mPĦ7 Boɢ˷)-<%t`U;|. pp X׌i?X8V}@WC1Dy{moq@T;lġ9*9B:"y~$J`@Ÿ0[gtR)x(d@erSlm3N .e|BsRc[kHM8Kݝ}6 翪eC~YZ1xKq7f1*Eu޻:GI ¶tgKFkA4X`n=u.gyd ~{lw&e_@ޠ,.D~ 跿P۔9,Ҕ2_HJD~_Y*Y9N몸T AeRҝ^ |"Jʤ5ݿ]½?W= Of 煍!j/b8emlӲ|p)-BH:LQ˄Oܒ_}ag:Ro;`Y9ÛmIݷڼ7kpmV£lk8?1Bfӹi*΄$׍z5幸nH!><}JlY=w%MFt;?sSuts X>f \!R)ۀx^7y.ekH#{N msn}nDlK7 OurjQ* fn_D8/f?PA(#N{[)(AExa6$?40h0m: 숮YvOOTz>>)dr p#= r)CCp]"|C2!Z y-8ڕHX>A\ï+y0mxuk" {jrԅMVmnLcX?,|E-0^w8r߽^^eTO2-E V;!h* tkbkL)S 'W1$ ^gy/ɟwU3y!_2 _UBi4'~':R#qő!N83f a.t(~^?;vӁ(]J9c6rJ;͵5Ϙ4ڠd༄ťd.m8*0ki$6}p,؆c~hPTUMGr|& M'>-fM64'D7F-jRUK.ga0Ya Mf> kϘ;;57,p)"vT÷ nE,ALJf#xbdby|K# aܪ+ј{NXo%w_Y ZmR$,Vҏ+4g[n pݔx4Ԃ"Ug6/` F#z`=p P?7_2tE& 3 25CڠxW>3Rΰ2x}Ta|.MH#Yr" m`{+AU]4HS#=hA[|kz 6HR]d4˚EAG<V[IѠѩ‚92Nx o K WJW6i0yM6U +.+ Ѻ?N6wVقZ|8&T:Fk&쁸# ~GR=ю9]psއ5kFa 5rCt 0+, "ZM4i.o`3CfǪ?=+4_%J]{w̤cw!]X1EŅC|?RCrc ,eݕ\V5DnISjp,sɧ!G>#1btHр(CvR'HZ/f!ۛpx#V&2ƝW$"Ԛc \R쬺1M ]{aa\ 7_?uwI]j?DRy?rolեG{zhNN-{wٗ+)F\?oyRhb>İ${e2Z \|GyhkĞMczԟ#S/˳1wJ9#ޗgc{BJ6Si‹:̣5xf fp9۟ވ2vqL=U5a3cQuQC_j=nRN(^iڿCy\fv'aԨ<ߣ0Z8}g{_?Z.ץ=PޡN'h ,;/{\]?|DXĿPeV*8_pLyn6|UX8l)w+9 WE<}7eI;.!d996qr;#,%*SRM~zת'еR=Yi穧&inϒ*M"6/D=y*%u(g2Bt)kI(sO~Ո_|njUV_  r\H+suHj6ڗVFM%֕ %"+`,n]rwF$o&F1̬ʘg2t;y~+]O&CuA5 ӡ#0r3"2iTJv~ҧX )#bX>O Y:{^ؼa *̪Mh;X٘,wRImAكy֊M[ mc21$YX1:͍rо?Ҳ~CQPc6Э@6.V+-.cQ -nҫa __aA0}KR/͈ /p;li!uWWg -B9}Ŧ+` (X<{M@TjqjdB(^%CK\zQu zTKh}9dsGf!2#jUT('fX`? V>(/v6!|`8qO` h @\r(ʰQȡ5G9nf l[N]0~qnjGtP˚ >y(CznP#$xtwSF*pGM}2}r^=3 ;[7f|;yV1lSޢj4ث"Y=Yq[jd9ŽfhcyW"oķ`׈?:Y*4^H= VAl@Bœ mGQvAJ8 &!ubh%UE %VY! |ICL4'aҧsWB~H N~vHI.c r(8DrZ1*ΉlT%uwVŒhLǜ2BZ̒1nӳAKkiܕi[ c} %DQǶn {|neIe5jZ'D: ou5?&A~D a:ִ/)-T +)fr2qZ wkͽ{_L1v^OųӞ:0z,?lQ:l)CυfNF-H1ᝦ<)kBAUMB?қcےm.hHO7xF(sdBbW܂IFAJO"ۼn97";gBmBb>׊"?lv{:Fdm[tu\X_8]B闟J ^"1Q}Z^f:UNh '{${ Ex5tƓh.qw"!>v3V7)Ў5[ 0W6Rg}#!FYNʒgco'l~[m"7!pk6MEw ЍTOaWW (Qڿ-bˬرc`+P- SƥuWmD]YP`o|U*z&@/'U>&Y$-\ ?1@i źHiJяqI :hHVPDX|?qrǘT{-' .@H82dl5b HA#RJ A? /5RAXW㘲]i<ȧ1Py!MfǤlUДD2  e@"|nF';~qT&[GD(7".\'!=!N!3lD}Po" vhg](@G,?5uZ Sò(3<  5Rw' Yĩ"0 ]h 1Fp%(!aGwkcOZz y6"b d]m e8rq*@BʀR?Bn/ZwlT҅Q>gtEn6xEa37gI`2ЉQ^BqlMO)Ӡ#f-q&cDFɦ8B53#Hs麝-o=,)gI҉}lw1q)lY? UCp熴FӁd;նߏGVcY ]VhTv6e+t^$Ӳ_=%4d"܀' S,/$d^3'r?Gn)h-WeA {00=p'kSj5G6R`P,阅k@vca20!\t4Q)_W+%dh7.ւʑ9}+)u2m:=pG}gs);*U:x1A DPGئX\, dޙW-O>`+2Q !X(1+߅hD_HT~AentJ~y_`Ar'zę1ИQictEjn TrTZf+M#WL/cǺ&vKM9]vzL]W,tmUNB(RSā2>![8#iJ` ycp(3&N/Z}.|%TÜubBNt4rh-_2q_6WN |!.\ocvm׹f/gQ@ |ȭڗ5o>=Ejç^Kxh!zETW8'ί$ZӍ`Fv7Ƈ1lI]Tι\X'5>p~ u r6T.l|?cTE"q_0-#?Oq-IR)Z>&?9O9Yl{&{Ud.zk$b\$M`کcL#'3k"Q6{G_>Z]Q:"wƋ~. rdum d52˽?%5:Ck ~u Sj0txwӧ1z"4-wxsCtDهS") ZM`-ӽ}A$3 Xk=͂X nk_aJ~kף|\J`2`FAq}lbDEbm20k1a^Mv@= >d.j'x,%֔I_u(Tucx0ػEU=&v(ie%tT2A4ݯdAEFrRy bCļ؋T Uz:5h",2A@knYEJx#6$g cc7@8v Pe]d.F<'oՍghG" |bIAT.2qPw )xB4u0hey&I&ÌsCmϫ?I;c য়fbci/,)rbqh֑ݲL]KyJ2cF\ҧuE.i64Kpi)C#bF842xA6.a|XC d؏f:*$9Bdd`# $8݄ĕ'`Vٛ?)BNIf}b)]6MNI7mw2_$Y>t}߹5^xeCG-g)G0GzM4$#'>r:u'VFE%imuKl_\f ]kΆ_1j;yK)\lM~r{=e@YMӉ}Y(f A(}J 6;T! ֡-TOKEe׎%}㩣j \j՝n6BcbjfFqPi -VPuу^B7OWI{ɻ>Jl=δȃ. jk{BB>tEsܶ¬mT߬fc`tf] h̕w̗Mߥf2vjuffV9O=]o 392d'$<͸|U\ٖBuά˕(aYRy3/\BpGN*t5Xk^e5:G5M2bɇ"A,5u%Q_P?bIePtn>w8L>r<@B_(am. g)C:/kKu\ЋAZi4Uml6%HF)Pm:TucNlp}%vR8<\Y#2P*#7Ioͦwr[_b Q/{J |6Hf xOdNT=nFrѪ WdGҽvqJ|j wJ7;/^ڭPC$\|S'{ԥ9$_r;Z6+̭ D95ݟÉEN#L "4[nqiwB9)Q-|bNAQrLpVU7!]`jI{gS4M\S'Khȧ 7I}IbwT.w0uP+b@P/xǏݝC ';YF90zʵib ϕWB?\7OyZx^ban ,aۋ*g}'&W=J$L׼4 0y5IEyb 7!&.j=8+kradrP.Ur"W0B呐M.Vj]

Rs]XlҌܑtK!1> JoI5jI+cf.Z1m*wWjlՃ }K,B];4{,#b 1*F6`Ri JSH\g _DsP¬{h@NѦ7tV*S`pM=o2V4UJK@o. ͙ qkY]-2ںŀRP] ;`bGcF(M974"s(pDoc ږ11l:ROJzىHXយ i4] P;ԛI۷9.oʜ\*6&%2U㕊 .o`sM]lpAMli&3x Y1:u̠w^60+m>ܷܪ(kРM UB򹻈BƳ]!w"/AөO~dD򯀄 _rIGs!.4-I 8zvéS5ꚈA3C;kLٍdPd&RkJ:<2Җ;m"P2N S5Bg@HVT+d_֘2Y916^-:^GWVԸ1>FB |#L$#;8F4Ǫ.ڶ~!!8Cw; }G蕅mdN#*SM~hDGJᦾsh0YWgY%ݐ뎗.TbNX;vrmvvTl1i]D,Ï_3=:V-.p⹩/tqq" R2B)^\\tljW^gδ\%=#@)ݼ&R )SoԦy .?_T&ڱd;}ew1iGRLKG!v$2o:kpr-0b^"nLsc5a8AT 5{iX9^6"VdFT-(mg*s#KPALg>on)mI" ~6@yDziA9٠P:`jVQ_&**g5wS]6ά#en7@ph!)cCh[\tHډygx 5kwJE"7?}!\?X`AS9FL!uٰmRX ?a ,ۈU4%=t'zݸjW?neb J̯yX*"$hab":d;[lpvAxX }"ѭg"KJK_Bm⵴g>hՔ4 TVET8cAbMcV< `P^@KoncKؕ jX;@ dBϡ`"k,>T ]>c^x$Wi"DVM,w6CȤo>oL 1~lG= "EeOb :e"hdZ}%ՒmXUs'ʗl,޶1{:R&CM:݉NG֙esIwWS/*S儁Z&]:S(P3uCn,{=}y X+w=P/O 5D[ᯃd\MpىQ N(\9c?VۛJQ^ԟNuU\|HsaRJ\YXR̈́G؟eig mZdY`4\&40PKGc]J\*׈Ҭc1©ήL[# ㎯?zt _Vz]_S:dˊz)^y)\"v,\@4ECphxNV1GoA TZB%K2ޕkG

Ê=UʗN[:Ŏ KMQ4a}>Nqʣ8\&zpBTE4+G|nz baJStr i-Oi [H\=bŏ7E7p̠ KTGcoٽ 9QXGtfNPkeja~#-ոi^@.$Na ?p4*U:/D8v7A'S58ԟ(l+bϙR;R7t&$n1C.}A(Dy"؋+@3wz( B{r3u-:|0Pfp>FM'YKCEþL<&! '!ҜҬ1.~n`[rd!LYWV2YXNPrC#beK6uٻ j}P][[`#($إl1 >Qv]Y3Bo S/<0)kyXق& gzа0>q^롁9EE8q(dGo^'{'Ž ,&#KֲCYR>S܃ս>i-vz^I_;mjdǪBSSȢ~t{QVۿY9ˏ^Dϥe'DtW0îH];Px J9T̤^°weeg0yO{W֐a7MJ[pS،LpP Qֈq9Db7 b:䯦Gܜ7b`V _Q' eW;,!azak>5.^TiIs%gTAuf?*ŏRjwI)g֙esɇ9mz̉HdPFϝJ=Xq@TWkQ,dѝ񟡷uG9V4\('k10) '1- QJlAtN\IGmf,IxHߚwES]g&Ϗq6;SУ'6\fppjZ9W>Rio-! ʣ21˘,;ȱ_f= Tzm*yJ6ZO%`D\ GD(z62*;-&!7p:`?O e0Ū8l8ݺƿ$^,NסQqENv ED]HUmau Oq6qeBxW&-$g!'n>qk}݇I$ܥZNXRDgg[JBDLLܼ A/#"pPsfq@d}҅0} Rn^jdoD:w Tpd1\[*-pxEt:z1ֿġud)>3˸j>ϵ>=>%} r'a/ P$r0^L包{z<a 4`IogFݺ?thsW 0 r,@ςX )qFp$^@~'cۿֱ Ɔ L;ہ8O4rBS:J\LD26`WQF wo -Nc/$ zN:"/`d2!x G2h++{ jX ո1CNYWig'Oj4kDq sy3Mݮ J({rt7~j?A6Ym^)D%crH dڱШkp_w(b/L>IW]V L0eܛjKY H7 </<ϱ+XE+| #㗁<{mGnY4Fʉs)bz+2$S՛Ǣ+X' 6Q^gd6⼋WXNaҾ:ĝkUBFtU{L'<@k_yĽah?am QuQaCrt9Ǿa!b ݼLJIͅkg= g<^94O?O<ݥCs!P٢Y#6}QQ򅻴̕-V7rgΫ Jb Ӂe1jm~-ándXA5q$>*xq>\Ni:;<ԬWF%OnqbnjCVtdN9b\MS bj1]5aLO4P?} ~;Х݀)fl$Fp*˿YNXE,Œ!o% кyPO=LqXz$*CN1& (ŋ{1bǨ.nKS{tR U+4٭'BD*bK'jn &VoACԠ+؇X XP^ضaĶ;Z4ZwIv9V5XM2ۼāۨF9=>%?\0h쐆NR{zՓiI6f`e|M$h`gś:\ fkLxCxٴhƇF?7"'D?5W [dP>%-ϼ)J!Q6ĝ`J2MGbg˝z (҅_[Aq< >j!+3O̊h @VK"S58SRhymRr(f}V,$J*ԩAqnEB`F.XѧlBO$7r/Aw$Xz5,}fѡlC%|~QK \T|܇Vh\`@ SISnMXMG?gtS jт'V R/+JM:y״C;iU]BJ~)|;%מMzoy%&;nsڮD%q#:c突,iV6f TLl *P1zG\ր" ٚq];oo'b v ^CǷ[|-g ݤt~x+7T+bMc%L*L y*]YX Vٺ񹡃>VԲ՞2nn5G3lGM5(`@ yWY|q}&[߭U{? Qj/S]oi ׫UkbU%TmQg-JW28RK5ds/B!i8v=+RyݿJv;r#@Vm[(v8޶pƐi]k?QG맅;4E12`O*~UHF壱;4*f V-OJT,Ti46'NDxO[+4S5ݙ) /JwkR @"pIzXAm!\ gʑL^1j+rC2`(f(Xýg`֊~wCr:SC^U@jKa/+Fqo&`4moV~͕`V%ӂzj#u%!j f.QG W'!ymm:eQj~g}ĨEE\؉< J Dg* QXYtr.R \t] `7*V_^?RWx4 v0Z:GfP 5Uùc V㞗co}Cb;R}IŽhN9֑-%G/Vg+Á19t/yg7ۦC9ΣD~ x0DSЫri(VX!W jmEe୅enI:H)cY+] t5 w@U .q{RrL%T;74һ6HTD'q bK'v  鞜in։5j}4|MV,< JB!1H-J4{XnܞTz/Li0I5?o+6ht$f6<8 څlp,Kl2 0uB)5 Qa$j+1Ki 6xʽBDd.dk=vP8{ u)3m ]@>eEmRniCoTq`t#%o Vl鏯9ʚ*w'eȅ#{2adܨPzJ'֋K\lvYʹ:]QxQzἆ$i󚇏$"&C@/?b}xYt7ٺd}͔DqlIQVQ>d>גPE$. w"싳lT0o t&\` hm/CrD7=/pW'6-wŴ]3PS҈)Z(!g@1 4FgxS|9-tRZI@~B64|YbױɰYZNn-l"g>N|W&_iy\L3PovB'7&a&y8'Gy\cD/w?DtCGT jtl:>A+|U_o[x;'/B&,r_JsXYJpM90)dlxh"0rekJr@OBe6h+ 4, TlݷSL&Ǟ@紿*o{wRшeS*"m @MT|07BkX3GEq"Memd #IQ je-}4IumY3ȃD@ZrzzGb>LGCd9N [S~Gm M#?Z+AhSI nN!;,+p)yU (ZӠ)$ AB{$ECq҉cwKҜdCʩ!uX.Mw(ק0m}A3EiYK/qb3 X4ssEa}fvq=o !K38}c4r{ KWd }hȄ &#8w NpD^Ԋ+VЉ fK{h3&ňbE8 #>)^c.l \c.B罅yjGE`\#B2l&|.6t0SJ+=.ˏ`_@aHVqnr7|}Wa t;/;*LWT#DJܣ_ԧhd/ *0?UA?K%= XxIj^//'5WкCp.!f6L5{yQs9w TI|)9G0gjAPj EU GP_| 2l' 0{>*a8mHo6֙g'‰5rMkđ,H `Lb븅tJqP8b웼^jaQ>obIA%'#V{2]峁tW~"K]fK+##tQ ět6%%f?\޻>:sEMϻ0H:ޙ-t"g6hWL8RSfx@QgjG~M 7pF%Pgr3GϷxD; Oӳ-#B}S" !''$,]Ce ,2_,;7i1#UE:B |}@]ޕ(;Xb UK=,iNG~&CmfecCcL K v2,Yi |"JFON6iv/BzAme}71 }k_7;tI@\|ƶ3n3aKD(/p"U.(Wy~ѳіʻGrIoU=ͱ*ݸVr ]˶~OH1BUN%)go{~-p=ѯ4YdxS7 In[Ȧ)k0[x7Qr՛!xT%iZf)0{0{ q4a08xΓ# jjo?#0"Y,)x:;=[a),yQk尹_b7PسjJ9Ac[R얗yDo)$_Y ;CӸt}1AvFL@M<Ke@u "atvf H#vb 39D''|/AP䁘jːQP G[-dD m(hMd1 S]dN wMC[=蟕3QFI A: +SCٷ؀Y?Ã1wBwPޭ[:@kPs.X\̒d>s| UhpD䜑RbJ'".5[xU^ eɬr֧q49pZF-NP01~~:V"Zʪ\nǕ/tB6 fJ*G}f]_'Huh$j d^Q9W fXΑfE/]¤$k!:ryiU\`W(p=m6]L$x(ni +e{=}, ӄmU\4Mm!ŏ`40Ͻظ?'FcP\\ HIʢ\UXl\mO|vwJAxtb'$B3ާ{ FuN\xS>*3PP8Bڬ鲼Zb_T_-clB(ŧwy9UZ(2SAK>DΚk.~MVÔ 9I_ 8PTR2ܙ;%zW/G C E r&<-V! .ܢ&&x̥-9fOe %]5rJUI^L0*ck9CreZhto-~߶BBU/5[6Eo <{-l&gX=P=T{)=Ã:I&%~s_M&TU+SbH AewfVCڻ}W+w\b %l#5qչWK(?aſ0M(P5,'0oVFA ;Vc ,&$'SPSh=[%ts{ȄmZS$XXuubkl B?.ڜ0]3AV |y$>d*E$NlJV73; $5ˌ)g:^0~(J3~͇愌@|Ee0zr=Թ|,+H`ZS7. Q@z/2uuTD?[c#xz[׊Lw{;&cߕ/Gh)@g,:翵Фt*O5?!Mu[ {ۢ=%vbp?(aA Ůh@ć>2è|?u5PvayڶM'T!CZ\Lg\1jfL R=84/"!+iqXJ 7%w x Yqj;PHZ49?fQ䟶P>ߗ`Nپ(w+x<[ml@B^XcFJ>xǎ-_;9eST0zoA+ޟ Gµ!Cz{Rti}x=Nq$ ZOO'tgb!٭jcx'Iԥ8_4^>Z3ұ,x}HOTN^4ݢV3Dz[㣁D+L-6߲uId^emN ;ARd*jѻ\PfX&-܈Y&&iCxcca{6 @Ob3NTAX:.Ȉnܖo`7]&gǫGH:pn1 1{iCQа11A sK Gy<-Qo,Hk Ce;My][ۈ`ԭ_XԷ|o+1s䁢*tVp2~l>,΁3\BHp.T]nVu pl_#P9\)Yጿ)9M z2?~U_zsQaamΏZ >y(•zjO :+BMqάגQh5B;khiAO̗oc!$Y[FdLhBsΏ*+ 4}Z*ῨRZnQF\@*ʷxB q\a*|єֿߑl/ꏄE0)Fٹ\8iZ<w]%dp{B2mw-+%z\H0A`<~s&>qHEB YZ