go1.20-openssl-doc-1.20.11.1-150000.1.14.1 >  A eQJp9|H3Qmiƃ_ IX $lZ:-d 82.XE+~(KEdOsL2h6Z +jXB)|}!Fب ~h[fhhgwz'GZ1I:;_7Knǁߧɓ!|.E)7ՓIU=h&js8&Ob #|_/>.[GyCw" =LX(L ^&|?Ŧ>q6K b440ab435397034a7dece294b68a098c61fc7c10316a18b3927c863134402ebea586880b2f96b157d6b49817e5b48086f8aba0a15@8eQJp9|? m =;sk޲5dp;?d - >`dpt  " , @  P`(8 9h : FG H I4X<YH\Ą]Ę^bcũd*e/f2l4uHv\z~ƐƔƚCgo1.20-openssl-doc1.20.11.1150000.1.14.1Go documentationGo examples and documentation.eQh02-armsrv3 =SUSE Linux Enterprise 15SUSE LLC BSD-3-Clausehttps://www.suse.com/Documentation/Otherhttps://go.dev/linuxaarch64Mh>i+xeQUeQUeQUeQUeQUd996fb9181360d605adb42c662c36fb5884988f29940621dfa8b7895215740e3123c14365f20daf6c31123df409b281bc131e5d1f88fbe543b1a68b5382cf6e7e9fec1047b1a8e504dc8796e5e86bfccb1423d52ee9aa8f699d16e2346b40fb9f31eb0879010f88e534ffd161f74f81be18135a5cd8d5a688369290581cb24d263ce5b7390691d66f71e60d7425026bbd3cd6c2845ccbcaa0d3c5b9af46b204crootrootrootrootrootrootrootrootrootrootgo1.20-openssl-1.20.11.1-150000.1.14.1.src.rpmgo-docgo1.20-openssl-docgo1.20-openssl-doc(aarch-64)    rpmlib(CompressedFileNames)rpmlib(FileDigests)rpmlib(PayloadFilesHavePrefix)rpmlib(PayloadIsXz)3.0.4-14.6.0-14.0-15.2-14.14.1eKx@eJ&e&@e% to change directory to before performing the command, which may be useful for scripts that need to execute commands in multiple different modules. * go command: The go build and go test commands no longer accept the -i flag, which has been deprecated since Go 1.16. * go command: The go generate command now accepts -skip to skip //go:generate directives matching . * go command: The go test command now accepts -skip to skip tests, subtests, or examples matching . * go command: When the main module is located within GOPATH/src, go install no longer installs libraries for non-main packages to GOPATH/pkg, and go list no longer reports a Target field for such packages. (In module mode, compiled packages are stored in the build cache only, but a bug had caused the GOPATH install targets to unexpectedly remain in effect.) * go command: The go build, go install, and other build-related commands now support a -pgo flag that enables profile-guided optimization, which is described in more detail in the Compiler section below. The -pgo flag specifies the file path of the profile. Specifying -pgo=auto causes the go command to search for a file named default.pgo in the main package's directory and use it if present. This mode currently requires a single main package to be specified on the command line, but we plan to lift this restriction in a future release. Specifying - pgo=off turns off profile-guided optimization. * go command: The go build, go install, and other build-related commands now support a -cover flag that builds the specified target with code coverage instrumentation. This is described in more detail in the Cover section below. * go version: The go version -m command now supports reading more types of Go binaries, most notably, Windows DLLs built with go build -buildmode=c-shared and Linux binaries without execute permission. * Cgo: The go command now disables cgo by default on systems without a C toolchain. More specifically, when the CGO_ENABLED environment variable is unset, the CC environment variable is unset, and the default C compiler (typically clang or gcc) is not found in the path, CGO_ENABLED defaults to 0. As always, you can override the default by setting CGO_ENABLED explicitly. The most important effect of the default change is that when Go is installed on a system without a C compiler, it will now use pure Go builds for packages in the standard library that use cgo, instead of using pre-distributed package archives (which have been removed, as noted above) or attempting to use cgo and failing. This makes Go work better in some minimal container environments as well as on macOS, where pre-distributed package archives have not been used for cgo-based packages since Go 1.16. The packages in the standard library that use cgo are net, os/user, and plugin. On macOS, the net and os/user packages have been rewritten not to use cgo: the same code is now used for cgo and non-cgo builds as well as cross-compiled builds. On Windows, the net and os/user packages have never used cgo. On other systems, builds with cgo disabled will use a pure Go version of these packages. On macOS, the race detector has been rewritten not to use cgo: race-detector-enabled programs can be built and run without Xcode. On Linux and other Unix systems, and on Windows, a host C toolchain is required to use the race detector. * go cover: Go 1.20 supports collecting code coverage profiles for programs (applications and integration tests), as opposed to just unit tests. To collect coverage data for a program, build it with go build's -cover flag, then run the resulting binary with the environment variable GOCOVERDIR set to an output directory for coverage profiles. See the 'coverage for integration tests' landing page for more on how to get started. For details on the design and implementation, see the proposal. * go vet: Improved detection of loop variable capture by nested functions. The vet tool now reports references to loop variables following a call to T.Parallel() within subtest function bodies. Such references may observe the value of the variable from a different iteration (typically causing test cases to be skipped) or an invalid state due to unsynchronized concurrent access. * go vet: The tool also detects reference mistakes in more places. Previously it would only consider the last statement of the loop body, but now it recursively inspects the last statements within if, switch, and select statements. * go vet: New diagnostic for incorrect time formats. The vet tool now reports use of the time format 2006-02-01 (yyyy-dd-mm) with Time.Format and time.Parse. This format does not appear in common date standards, but is frequently used by mistake when attempting to use the ISO 8601 date format (yyyy-mm-dd). * Runtime: Some of the garbage collector's internal data structures were reorganized to be both more space and CPU efficient. This change reduces memory overheads and improves overall CPU performance by up to 2%. * Runtime: The garbage collector behaves less erratically with respect to goroutine assists in some circumstances. * Runtime: Go 1.20 adds a new runtime/coverage package containing APIs for writing coverage profile data at runtime from long-running and/or server programs that do not terminate via os.Exit(). * Compiler: Go 1.20 adds preview support for profile-guided optimization (PGO). PGO enables the toolchain to perform application- and workload-specific optimizations based on run-time profile information. Currently, the compiler supports pprof CPU profiles, which can be collected through usual means, such as the runtime/pprof or net/http/pprof packages. To enable PGO, pass the path of a pprof profile file via the -pgo flag to go build, as mentioned above. Go 1.20 uses PGO to more aggressively inline functions at hot call sites. Benchmarks for a representative set of Go programs show enabling profile-guided inlining optimization improves performance about 3–4%. See the PGO user guide for detailed documentation. We plan to add more profile-guided optimizations in future releases. Note that profile-guided optimization is a preview, so please use it with appropriate caution. * Compiler: The Go 1.20 compiler upgraded its front-end to use a new way of handling the compiler's internal data, which fixes several generic-types issues and enables type declarations within generic functions and methods. * Compiler: The compiler now rejects anonymous interface cycles with a compiler error by default. These arise from tricky uses of embedded interfaces and have always had subtle correctness issues, yet we have no evidence that they're actually used in practice. Assuming no reports from users adversely affected by this change, we plan to update the language specification for Go 1.22 to formally disallow them so tools authors can stop supporting them too. * Compiler: Go 1.18 and 1.19 saw regressions in build speed, largely due to the addition of support for generics and follow-on work. Go 1.20 improves build speeds by up to 10%, bringing it back in line with Go 1.17. Relative to Go 1.19, generated code performance is also generally slightly improved. * Linker: On Linux, the linker now selects the dynamic interpreter for glibc or musl at link time. * Linker: On Windows, the Go linker now supports modern LLVM-based C toolchains. * Linker: Go 1.20 uses go: and type: prefixes for compiler-generated symbols rather than go. and type.. This avoids confusion for user packages whose name starts with go.. The debug/gosym package understands this new naming convention for binaries built with Go 1.20 and newer. * Bootstrap: When building a Go release from source and GOROOT_BOOTSTRAP is not set, previous versions of Go looked for a Go 1.4 or later bootstrap toolchain in the directory $HOME/go1.4 (%HOMEDRIVE%%HOMEPATH%\go1.4 on Windows). Go 1.18 and Go 1.19 looked first for $HOME/go1.17 or $HOME/sdk/go1.17 before falling back to $HOME/go1.4, in anticipation of requiring Go 1.17 for use when bootstrapping Go 1.20. Go 1.20 does require a Go 1.17 release for bootstrapping, but we realized that we should adopt the latest point release of the bootstrap toolchain, so it requires Go 1.17.13. Go 1.20 looks for $HOME/go1.17.13 or $HOME/sdk/go1.17.13 before falling back to $HOME/go1.4 (to support systems that hard-coded the path $HOME/go1.4 but have installed a newer Go toolchain there). In the future, we plan to move the bootstrap toolchain forward approximately once a year, and in particular we expect that Go 1.22 will require the final point release of Go 1.20 for bootstrap. * Library: Go 1.20 adds a new crypto/ecdh package to provide explicit support for Elliptic Curve Diffie-Hellman key exchanges over NIST curves and Curve25519. Programs should use crypto/ecdh instead of the lower-level functionality in crypto/elliptic for ECDH, and third-party modules for more advanced use cases. * Error handling: Go 1.20 expands support for error wrapping to permit an error to wrap multiple other errors. * Error handling: An error e can wrap more than one error by providing an Unwrap method that returns a []error. * Error handling: The errors.Is and errors.As functions have been updated to inspect multiply wrapped errors. * Error handling: The fmt.Errorf function now supports multiple occurrences of the %w format verb, which will cause it to return an error that wraps all of those error operands. * Error handling: The new function errors.Join returns an error wrapping a list of errors. * HTTP ResponseController: The new "net/http".ResponseController type provides access to extended per-request functionality not handled by the "net/http".ResponseWriter interface. The ResponseController type provides a clearer, more discoverable way to add per-handler controls. Two such controls also added in Go 1.20 are SetReadDeadline and SetWriteDeadline, which allow setting per-request read and write deadlines. * New ReverseProxy Rewrite hook: The httputil.ReverseProxy forwarding proxy includes a new Rewrite hook function, superseding the previous Director hook. * archive/tar: When the GODEBUG=tarinsecurepath=0 environment variable is set, Reader.Next method will now return the error ErrInsecurePath for an entry with a file name that is an absolute path, refers to a location outside the current directory, contains invalid characters, or (on Windows) is a reserved name such as NUL. A future version of Go may disable insecure paths by default. * archive/zip: When the GODEBUG=zipinsecurepath=0 environment variable is set, NewReader will now return the error ErrInsecurePath when opening an archive which contains any file name that is an absolute path, refers to a location outside the current directory, contains invalid characters, or (on Windows) is a reserved names such as NUL. A future version of Go may disable insecure paths by default. * archive/zip: Reading from a directory file that contains file data will now return an error. The zip specification does not permit directory files to contain file data, so this change only affects reading from invalid archives. * bytes: The new CutPrefix and CutSuffix functions are like TrimPrefix and TrimSuffix but also report whether the string was trimmed. * bytes: The new Clone function allocates a copy of a byte slice. * context: The new WithCancelCause function provides a way to cancel a context with a given error. That error can be retrieved by calling the new Cause function. * crypto/ecdsa: When using supported curves, all operations are now implemented in constant time. This led to an increase in CPU time between 5% and 30%, mostly affecting P-384 and P-521. * crypto/ecdsa: The new PrivateKey.ECDH method converts an ecdsa.PrivateKey to an ecdh.PrivateKey. * crypto/ed25519: The PrivateKey.Sign method and the VerifyWithOptions function now support signing pre-hashed messages with Ed25519ph, indicated by an Options.HashFunc that returns crypto.SHA512. They also now support Ed25519ctx and Ed25519ph with context, indicated by setting the new Options.Context field. * crypto/rsa: The new field OAEPOptions.MGFHash allows configuring the MGF1 hash separately for OAEP decryption. * crypto/rsa: crypto/rsa now uses a new, safer, constant-time backend. This causes a CPU runtime increase for decryption operations between approximately 15% (RSA-2048 on amd64) and 45% (RSA-4096 on arm64), and more on 32-bit architectures. Encryption operations are approximately 20x slower than before (but still 5-10x faster than decryption). Performance is expected to improve in future releases. Programs must not modify or manually generate the fields of PrecomputedValues. * crypto/subtle: The new function XORBytes XORs two byte slices together. * crypto/tls: Parsed certificates are now shared across all clients actively using that certificate. The memory savings can be significant in programs that make many concurrent connections to a server or collection of servers sharing any part of their certificate chains. * crypto/tls: For a handshake failure due to a certificate verification failure, the TLS client and server now return an error of the new type CertificateVerificationError, which includes the presented certificates. * crypto/x509: ParsePKCS8PrivateKey and MarshalPKCS8PrivateKey now support keys of type *crypto/ecdh.PrivateKey. ParsePKIXPublicKey and MarshalPKIXPublicKey now support keys of type *crypto/ecdh.PublicKey. Parsing NIST curve keys still returns values of type *ecdsa.PublicKey and *ecdsa.PrivateKey. Use their new ECDH methods to convert to the crypto/ecdh types. * crypto/x509: The new SetFallbackRoots function allows a program to define a set of fallback root certificates in case an operating system verifier or standard platform root bundle is unavailable at runtime. It will most commonly be used with a new package, golang.org/x/crypto/x509roots/fallback, which will provide an up to date root bundle. * debug/elf: Attempts to read from a SHT_NOBITS section using Section.Data or the reader returned by Section.Open now return an error. * debug/elf: Additional R_LARCH_* constants are defined for use with LoongArch systems. * debug/elf: Additional R_PPC64_* constants are defined for use with PPC64 ELFv2 relocations. * debug/elf: The constant value for R_PPC64_SECTOFF_LO_DS is corrected, from 61 to 62. * debug/gosym: Due to a change of Go's symbol naming conventions, tools that process Go binaries should use Go 1.20's debug/gosym package to transparently handle both old and new binaries. * debug/pe: Additional IMAGE_FILE_MACHINE_RISCV* constants are defined for use with RISC-V systems. * encoding/binary: The ReadVarint and ReadUvarint functions will now return io.ErrUnexpectedEOF after reading a partial value, rather than io.EOF. * encoding/xml: The new Encoder.Close method can be used to check for unclosed elements when finished encoding. * encoding/xml: The decoder now rejects element and attribute names with more than one colon, such as , as well as namespaces that resolve to an empty string, such as xmlns:a="". * encoding/xml: The decoder now rejects elements that use different namespace prefixes in the opening and closing tag, even if those prefixes both denote the same namespace. * errors: The new Join function returns an error wrapping a list of errors. * fmt: The Errorf function supports multiple occurrences of the %w format verb, returning an error that unwraps to the list of all arguments to %w. * fmt: The new FormatString function recovers the formatting directive corresponding to a State, which can be useful in Formatter. implementations. * go/ast: The new RangeStmt.Range field records the position of the range keyword in a range statement. * go/ast: The new File.FileStart and File.FileEnd fields record the position of the start and end of the entire source file. * go/token: The new FileSet.RemoveFile method removes a file from a FileSet. Long-running programs can use this to release memory associated with files they no longer need. * go/types: The new Satisfies function reports whether a type satisfies a constraint. This change aligns with the new language semantics that distinguish satisfying a constraint from implementing an interface. * io: The new OffsetWriter wraps an underlying WriterAt and provides Seek, Write, and WriteAt methods that adjust their effective file offset position by a fixed amount. * io/fs: The new error SkipAll terminates a WalkDir immediately but successfully. * math/big: The math/big package's wide scope and input-dependent timing make it ill-suited for implementing cryptography. The cryptography packages in the standard library no longer call non-trivial Int methods on attacker-controlled inputs. In the future, the determination of whether a bug in math/big is considered a security vulnerability will depend on its wider impact on the standard library. * math/rand: The math/rand package now automatically seeds the global random number generator (used by top-level functions like Float64 and Int) with a random value, and the top-level Seed function has been deprecated. Programs that need a reproducible sequence of random numbers should prefer to allocate their own random source, using rand.New(rand.NewSource(seed)). * math/rand: Programs that need the earlier consistent global seeding behavior can set GODEBUG=randautoseed=0 in their environment. * math/rand: The top-level Read function has been deprecated. In almost all cases, crypto/rand.Read is more appropriate. * mime: The ParseMediaType function now allows duplicate parameter names, so long as the values of the names are the same. * mime/multipart: Methods of the Reader type now wrap errors returned by the underlying io.Reader. * net: The LookupCNAME function now consistently returns the contents of a CNAME record when one exists. Previously on Unix systems and when using the pure Go resolver, LookupCNAME would return an error if a CNAME record referred to a name that with no A, AAAA, or CNAME record. This change modifies LookupCNAME to match the previous behavior on Windows, allowing LookupCNAME to succeed whenever a CNAME exists. * net: Interface.Flags now includes the new flag FlagRunning, indicating an operationally active interface. An interface which is administratively configured but not active (for example, because the network cable is not connected) will have FlagUp set but not FlagRunning. * net: The new Dialer.ControlContext field contains a callback function similar to the existing Dialer.Control hook, that additionally accepts the dial context as a parameter. Control is ignored when ControlContext is not nil. * net: The Go DNS resolver recognizes the trust-ad resolver option. When options trust-ad is set in resolv.conf, the Go resolver will set the AD bit in DNS queries. The resolver does not make use of the AD bit in responses. * net: DNS resolution will detect changes to /etc/nsswitch.conf and reload the file when it changes. Checks are made at most once every five seconds, matching the previous handling of /etc/hosts and /etc/resolv.conf. * net/http: The ResponseWriter.WriteHeader function now supports sending 1xx status codes. * net/http: The new Server.DisableGeneralOptionsHandler configuration setting allows disabling the default OPTIONS * handler. * net/http: The new Transport.OnProxyConnectResponse hook is called when a Transport receives an HTTP response from a proxy for a CONNECT request. * net/http: The HTTP server now accepts HEAD requests containing a body, rather than rejecting them as invalid. * net/http: HTTP/2 stream errors returned by net/http functions may be converted to a golang.org/x/net/http2.StreamError using errors.As. * net/http: Leading and trailing spaces are trimmed from cookie names, rather than being rejected as invalid. For example, a cookie setting of "name =value" is now accepted as setting the cookie "name". * net/netip: The new IPv6LinkLocalAllRouters and IPv6Loopback functions are the net/netip equivalents of net.IPv6loopback and net.IPv6linklocalallrouters. * os: On Windows, the name NUL is no longer treated as a special case in Mkdir and Stat. * os: On Windows, File.Stat now uses the file handle to retrieve attributes when the file is a directory. Previously it would use the path passed to Open, which may no longer be the file represented by the file handle if the file has been moved or replaced. This change modifies Open to open directories without the FILE_SHARE_DELETE access, which match the behavior of regular files. * os: On Windows, File.Seek now supports seeking to the beginning of a directory. * os/exec: The new Cmd fields Cancel and WaitDelay specify the behavior of the Cmd when its associated Context is canceled or its process exits with I/O pipes still held open by a child process. * path/filepath: The new error SkipAll terminates a Walk immediately but successfully. * path/filepath: The new IsLocal function reports whether a path is lexically local to a directory. For example, if IsLocal(p) is true, then Open(p) will refer to a file that is lexically within the subtree rooted at the current directory. * reflect: The new Value.Comparable and Value.Equal methods can be used to compare two Values for equality. Comparable reports whether Equal is a valid operation for a given Value receiver. * reflect: The new Value.Grow method extends a slice to guarantee space for another n elements. * reflect: The new Value.SetZero method sets a value to be the zero value for its type. * reflect: Go 1.18 introduced Value.SetIterKey and Value.SetIterValue methods. These are optimizations: v.SetIterKey(it) is meant to be equivalent to v.Set(it.Key()). The implementations incorrectly omitted a check for use of unexported fields that was present in the unoptimized forms. Go 1.20 corrects these methods to include the unexported field check. * regexp: Go 1.19.2 and Go 1.18.7 included a security fix to the regular expression parser, making it reject very large expressions that would consume too much memory. Because Go patch releases do not introduce new API, the parser returned syntax.ErrInternalError in this case. Go 1.20 adds a more specific error, syntax.ErrLarge, which the parser now returns instead. * runtime/cgo: Go 1.20 adds new Incomplete marker type. Code generated by cgo will use cgo.Incomplete to mark an incomplete C type. * runtime/metrics: Go 1.20 adds new supported metrics, including the current GOMAXPROCS setting (/sched/gomaxprocs:threads), the number of cgo calls executed (/cgo/go-to-c-calls:calls), total mutex block time (/sync/mutex/wait/total:seconds), and various measures of time spent in garbage collection. * runtime/metrics: Time-based histogram metrics are now less precise, but take up much less memory. * runtime/pprof: Mutex profile samples are now pre-scaled, fixing an issue where old mutex profile samples would be scaled incorrectly if the sampling rate changed during execution. * runtime/pprof: Profiles collected on Windows now include memory mapping information that fixes symbolization issues for position-independent binaries. * runtime/trace: The garbage collector's background sweeper now yields less frequently, resulting in many fewer extraneous events in execution traces. * strings: The new CutPrefix and CutSuffix functions are like TrimPrefix and TrimSuffix but also report whether the string was trimmed. * sync: The new Map methods Swap, CompareAndSwap, and CompareAndDelete allow existing map entries to be updated atomically. * syscall: On FreeBSD, compatibility shims needed for FreeBSD 11 and earlier have been removed. * syscall: On Linux, additional CLONE_* constants are defined for use with the SysProcAttr.Cloneflags field. * syscall: On Linux, the new SysProcAttr.CgroupFD and SysProcAttr.UseCgroupFD fields provide a way to place a child process into a specific cgroup. * testing: The new method B.Elapsed reports the current elapsed time of the benchmark, which may be useful for calculating rates to report with ReportMetric. * time: The new time layout constants DateTime, DateOnly, and TimeOnly provide names for three of the most common layout strings used in a survey of public Go source code. * time: The new Time.Compare method compares two times. * time: Parse now ignores sub-nanosecond precision in its input, instead of reporting those digits as an error. * time: The Time.MarshalJSON method is now more strict about adherence to RFC 3339. * unicode/utf16: The new AppendRune function appends the UTF-16 encoding of a given rune to a uint16 slice, analogous to utf8.AppendRune.- go1.20rc3 (released 2023-01-12) is a release candidate version of go1.20 cut from the master branch at the revision tagged go1.20rc3. Refs boo#1206346 go1.20 release tracking- go1.20rc2 (released 2023-01-04) is a release candidate version of go1.20 cut from the master branch at the revision tagged go1.20rc2. Refs boo#1206346 go1.20 release tracking- go1.20rc1 (released 2022-12-08) is a release candidate version of go1.20 cut from the master branch at the revision tagged go1.20rc1. Refs boo#1206346 go1.20 release trackingh02-armsrv3 16998647031.20.11.11.20.11.1-150000.1.14.11.20.11.1-150000.1.14.1asm.htmlgo1.17_spec.htmlgo1.20.htmlgo_mem.htmlgo_spec.html/usr/share/doc/packages/go/1.20-openssl/-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:31425/SUSE_SLE-15_Update/5c662689d2d33d8912c4fd0cfe6b49fd-go1.20-openssl.SUSE_SLE-15_Updatecpioxz5aarch64-suse-linuxHTML document, UTF-8 Unicode textE=R%pe##utf-8d8d741f81efe13812bb90631c430db325d89c49d072f072871096b3cfb178d54?P7zXZ !t/] crv(vX0İzG+HYinޅfwtIw_J.79(48QetaIJ_d%lX"{.4SyO7g/P 8[B cO?>5ϪlAٴ߀hbTCwj׬!9Ps@$qD5U*J&RDLFXO;m_<<]LwB쒜L}!%yGmAB)Ǭ.Gm K;˼xI`/D"OJLwOFKnxQNkNZJ b߲2r<-JsҳQ%FHhlǷd]ۯk*FYȟrqLӋ_uOj7uIeQ Y+XQ( WGi6Yi=tWPHT$zz&G ϓ>-Ng Q֪؂A7k2L8Δ+5x()8N*]dVs3ݚbPN"0;U(ڸ(jԠ/7D-Ls*Zj֕LYc O:4l y FàՌbޘ-Y5J?ϰND ۲I ^Wyź >f !u_}{|ÔJOL ~}zMChޒŤ{Cj)}c8L )lVx~ p)0I۠9קK ).N%)e-W֛G*Zw/R-um[9FYW`_&;]'u28iW=5BP]-_*؛'2i1c'0_g ^@ߢ8|9y_Q 7AU12E0~=qlY~vN'=+v LJ-Pyv$E@ϧN5t(s.eBhʚ#3G `鐖^,KĜ&rpblwmG'|ˊ`+J{Lv̔IwA zȁ`?vRF`PAۺXerK۲$Ǥ"'mMFq"lZ;57g- te-F*P(9ċ3WG w[>5Ihb֝ټF>(40`V0fo_H$bV3xt.OIS[Up&‹DEܞ%02v=J$-pАoXRfAʫ/$-V\þz>WP"r)]A.[R-0ŜV"0Y8R4z%Zq㼇DiM_B0ci?R!Z,I٪3(T y#09q1#G )R枵 + `vR$Ѵ{zCy?EIk0Hǒ%9Q1,CHDpz Pi(,B)qpNLq cdL=@v0-d8Ī!4&j~Q֢"}4+[H2]-(tהITI}n{_pT(:]㹹`TŲI3ґ:s Ϛ@鎅/!f'5,)DX![O9rg2,IR^umY3vq9j(~Hަ w[#Me =3 gH] Q)Q|h[5B~I>bIKPOGqbXy-u#zKnn]ea #ŵhG8Ècw9خk^`1qܞ#!@5äJSQ )0Nd@MhV3q~-$->. RҀ|f;On@)Q4-+.Wz[o4ѪN/OzL$\xd.G7啩4Fl`MRI BYjvӱ(ڪsJy= ag(NsE(KvshNҙHF']Y,cpv?j 5d;Z\ӳa+ǰ!vڡEHٖR +ipzQ8di.(ڛw"TWZ BUlȨ)R5_T!YY6#J϶M #NXv=eHePh ?'{ig+l*3 imh _g/䨆[0N@7D%jf@nsZ H'&FE}̻$%: %s=X>ѽ=ax9J.s^RnGe}VRH<8ygE )ox;f($pfX1?YխFEZ0ESD(3V?ODZ?E5yMp2̰s~4 nK&٢4{ `J(YK-s(hŽ6w&:RV}.mo 퇯@$qTK&,xwE%[FG- 3BU~?b:F\XǠ:eݫͱ38 [E/VvZ(Ui[Jפ3hN]#59 6NotcA]ߣyzYz ~$z"UzPSeƅ(~́ T:({)em̷Ou{"ڷ4 Uֹp?{p]hD6DX":,# 7wYLA> 갍;}lL1POL:P$p5uvs5e{G6Y4ULDkJM;)w͗o;(>kGڹ_~Oؼl(z'?]v!o Op8eu=GW/2Ң/s Ԋ] !һqP F+OfDrTc,IX Bh A}F 'qL8k_yTpcwؼ" M[pe#V|:.,)2%tz~5(乙:prӜA,^D/2?溰E)i3٠1U9[ rtw_e.$5Jk{Ĺ:Gt!cv׍RQTAۉWOG~_E:3ȫۛ L=䘯AƁ\lME'GO cX)dl.̿[Zi^Kbq ljːNe(_.G7H} Ih1V\,gMpdVUa<((SxMMEW$=oX:8y>͉ݗE~`YƎqI)(S0{B!9[w#\aN$8RQFDΥC\MPP #bOk:g״,tUrЩMg>g&l.o8(!jHX#z6{ؔYZS'F~n7OBֈ 4yn4ݗ5ZsY'Yk7tinp5 h瞻 }nOj&$wBEr32|v%|K\lvŮG>koߤ. i!H[Sl+y@g!|9oMxJ7;-`~G9tؒ|RoO2 }ers0dOߏ-rMcA3T4AJ-EzLJ-%A UݶD!wƷz6]NZ&%f rke>K!)(zg<"=\\c7*V`b dFRzp _$ '>Z2fͯj+u]y}-Â=yLN2qZJ",\Ҽ9V|z ~m4ۡy-jLSP|6 8>DD7ZEt/byyn<$NQxkRt롥ÛUs8?g(qЄ@١媢n'pX1|,{ʈak?5;JX^E$m! ܢI4v 5ZI!~+_.zRP)0G20yy1'XG ţ7)8e\u=ljPSJvÐ'8'2̜hsۨCA-ʆ2N6$;弊P`0Z4xXf7Ǟ NCeKM=^(y]I6XVSի{&0\~y<2)Gl⵷݉OE䫂@qΝK XB׋کI:">?ЃSh\1ߩ<᬴P2`*1YJ_#XmaNjoH/ԬXՆ A6i{r5cV}T7-4洐C_3n&*QS_Y|Vז }Q"?) ZLcT@ghLT IqPz }1ڐsAA l; U.o-6oy=hoIn|DX $2'DQod=Q[X:Q'"v#$77QDorpU%ƟR]c B ] 4_.%2WJo@z.bMS}{hL#_p~]hF*2]GlOO\ty( "OTaF Rذ =o^( B:[/CE$w"Hb]!:46$X% ܔJKR46*QoȢLGK] g)O dy7 _s{M&Q&ZYKN.B'=?C ÇF]݅'(VnV%'N_O=qV|SN7ZG'T$lR+-l,-ѯtEwj9;:G53Ε7eI0yr5;ѣ ~N#+| 7^hey$m*kP {Typ-TGl#ת$̐W[(q˥T_{x>eƱL4V M@J';2G2&A]ء7/I\$LwP ݿF#Ӓ%}e1e/ZJ('o󯠤K /$jۅ(0&ft.)Vd瀫9yXW6^+«$qn2]j]un N4}#d/yP[ye<_x/u8~3%aQn[w$%H _|mg*9$s"r'ee9F/HŴXY9(\5G͕vWtq.i fj?֡ zWs7QK  \tVpy{b(@:)U4d0)`ݑp~HJ_8JH[' !aT$ )7*MG|{D>W%;RC}knjDeIk$N6'E8]ILiz Ai"/yd>O1]xEE7Lۏuxb1 S !pE:I8b䩧%9[D>Lr8ob} -o36VI1ϬypObN kIߜ v^?"wRo;y5T& _ kĎݓW$LςQ?TcU]Xd48y0@ҺJ@5+"HR PG͈ۭC<=&g жwX^wdѧ&}Ѹ{>5HU^\ԠyzØ3eꝮ^ ^)eXǼ["Ҁ(?F>Ցĭ܃4_(MZMй̾6t'~w}%GMsŤ O!آ[mD|~X"XNG`A`p<ܭ?I=WW: 7RsuhC2!i-B V܊P`>nx={G}%AHR\5OÇ`@1=g|3zJwZm#d`@E $e)-'@>q2 畍|+בLTL("P8*<=} SK%d"Tu @LJ" sk{Ѩxt\;=kE`_q:Yx' y'mߤ'T$ii4؞J;*#P#;y`^!my>OMYIWUYw_sێDN̓/iK)gOy ]}b)]AOGL%WWe2胊 W C!,Ik̜4Ltxѿ)rjkO12\DkC %[AE* n=SpZ5qs3g$Wޔz?̌V$u[';j6|aZqXtS"biw?]vB>{b;׸?}nnZ&k5x]Ri[b;6:Qc[(8'ٝ 6GE6kz0u4r޿DwHя쯧`GƱxe}|qAt\˛l,|pKWP*3êJ<|ō+e1|_~! Pk >iGI;R%??Ԝ.Sx]`n(FuJAfK6tpP1 Ye_'%P(uq$SD @/քOf]l+oFs4ˑ'_7aZCqlTI[nR1zک TU%I?V8(}sT"b)4$J[C{YP]d*C49w2Tu@rY*F`a vsnC$ kKq6!5,tW@G*,uG%1b>%~ȏG{!dv+|ɦ7qH~$7eg^-%or[-TAw\U?`Fb jaw?&EuhZmAazrr%UD{U4bE[e>K7G;wV'J?RNd]|2L_DKڙf=IL\s4N!cvo|s*6Szwǻف;/:^$Q˘!%Bxfh(k G:5hIJ8$ 9 *ac $'+O]E%y%7 ZPhyV/$(7yy]-".Qx^I%Y ,I*jZSz! iV50>(hHYn~]A+Wr$C Ҭgw@S6yHZFz9H@FĆwq1^Af,_p8챦mbif`|-pKWyL^H~R2uoVL.SL_IwInOS89XAޠW{5 J`rs1`nxΞ*?& cnHa,'&aZv w.@e),w}II j *7{a)D~ ۋ9C<|$]܉맢:'Ts:8&r3~ XKl ak }\ --;M)~ \T+f^InCzK'THl7-˃(IsJ)p!-r!GAX)1Ri~\ ͽ帵MIs~@DS>; stYwqg^k#yd:KjffLֻ@i>[ѐ2B5Ub nSL.ɺUur%Le@c@Vݭ[#4;xF%[EvbN“>;6%t=? W*3"hINJއLm>n97񆀶VM}_%FREdü;Bʳkeǂ ! GYr+w\&"KdɣٛP)*,Kŵq$伲{ᕒlBݠu  ,K t={]ke|:+ ,D߯ݚYZF𝄌!B\d|l5m (O5 jZ6oʪ)eԘ&nQ򥓼1\?hOB!Å ~Sb?;*Ţ,˕ 9;Vrz{OdlZ񢦄0"l-zrr,2/{L%Z|%uz{YMcv"J_BmZ1g{/~U)4sJ{2YϦ:`fɑT̀oЏ<}媎}{}ޕ&_"]V:08 UcB6k;uVݥʒnNCjz<;p_V,P[ܯ0m>-cMR&0ΘX)GУObCukj 1AvID+jm%6 RI f?n܅Vileu7L[>i-*0b:4m P$?2[HH?2R2C: rx/? rӍ2F_ ᝌEI|{^a߬K,@LU4v,bـ(ۋ! YG (k3U~g BdDhYﬞDL~ f[mq X [}Q?W bgy$gLYR嵎3{C֓,Ҭb$KWm_H 9ڼRE>5 o&Mߏ倷M.Hz>WsgDkZ-(̗vRu [j)W'zHj2C\vԭͽ%sv|ػ(M%D*cabE Rk j p,O}N JY^&:ZbpeJ$B=>XLq Wc)u/tFb45jUN Pe -D^CEp-k>A8J5\uz׮)OVOު sNu*a \Kr/0G zǿN14>6u`_׉7BOPERal˾D" B {HkƦd][gfOe_[EZ|7FI=rHgc ԕQdz 2} f%o,$m2g/V.ZX,.02íHcAb" par yEJ̤oP#xCMEAĀ^S :t2iwDKCs-n7}wd ]=RQHʴ;6I~Zo[t< ~yn4W4ylN6M~OO=lYd%`v*l5+Y1i-ƦV Zpx 4Rwd_n`s4_-9#? N377%f푛m#%s@DG\YtZ]5Q=UN@ZO@68݋^{Y](0JHF e܄}F$%U!]%zUTjϔ IlC( 8}aŠ_.!)S+z_@JE!lגNWy|8C9<:-pS^Tfud8:'eQR!m+ipCX'oJ+b0]V!m9é])@&f^t,;}';FE /9anѝOhKGweZQ~{"Rw)FXqβSHȞ8bd-تRDS4!˓1N8lo,P 9g뮐9 F{\ ފ[Ƨkutt͵W,9dX6kSJ'Q%Rj 뭼NW)嵶 acwAO{H0v Z=3Gy/,8W8ʌ5A Tq~|7ʜ,%v 9:9)c @K:dj0FğLМy6.k1[%:2WGB(Ks?>x 9`=aLjBqϫAMa1+ɡ1SΚx2'M}S:ͤeqfZ^{ AaTe6HucAn甠HSI T6kZfD4.)Q e=L-F}IP e4ӟ*,SR៱8TNbːayK\lVD)RArjܑRܽR#+$ cY#q܈29t iLubs>@(eov.|Ҏz%7_N^F)0A"N$%:wIj"$vÈzxndɥWA '@na~O>2Vzm  %ń1B5S鋗Ha8:+zGOi͒ [ qW|]!`dܡS< Q>2: Vyi]|MH3xF~q;li߷2OQ̋"]b %^>pĘ:/6q?\pVHL뽆@x{eTk.g!h;&2,?"!O raƖM.`3_H N ܋L'Ӿpv?$mWx3c)]*?1 Y!ɯv\n(<̽;CЂyfSEľ. ^FT:#/ὴ>}%_Fc-AS雇C~ \P}p0s빟]ɮFy&8%TM˻`9^tٻy[YK@QY|Y,:1@|4n\ƹNHx?M(mo8P~j Y{:rˆSj&f˖b'iaG`ȯ# 줎3R?uw̓ϝ%u(0n<#|,nz%XDUAqQ `A;!t$v҉N{S"eD(2BU7Or0,1d$(]ק{OfO}aeh>7zkBK]Cĸpxpa61 )x0T]Ӱg +ʢa (EөI֏BͶ$NiDݍ8E#Gލ M$ulh͍;řW6\K-@I!+ W\ŶJC:g|5[OPv#[_ PQAL6Lˉ*Xx?e.,~!9uPLsЩvE}E!ypj>! 9oWRMgKpcAڥ J~H2׼|2 />mOv)oh("Do'c/&PVgξN DVP9B];ϰ#8=?O,\;>M ZÄb5Q_YŘ.@(ۮ/t9'K<͐Xb@Fo[ ydK:[ tOH&fjѯqD w h !6Af$JMW3c+y|8qzѠ&6Hmr^h0i8X~YB&P"B+%`IO3(͑RJ6vqoD(ERfeke5f--m:UEP.#B"'k,hڄNe$P7ڎRe3&_01buB9dI 멧7ӟ=XRV6΢{=rJcU>'`FㅰΞIýxpę2I2Owȱ6"#*3AgZqL6VB6~<,x$xbRݎ_MS<\D#c95!TFqEc'z2i5+ia}َZ)8c @G61 6s;t-盘a7ySY`Jz!W'3iPBU, ͷREMJYGW&#)i=cLCG359!9b_u[@ً\ Tȃ놧Or2lOHƞu!sF;BZ2-*ϫ] Frk| plįQ7.k!5Y;GP>#&*f4B ՄDMQI|cUS"' UigXzH11 tm]HD?IBâ `fAA%{efvDE"#A| ? `k{*4c;5u6`qmFAaF>pd@`|8Fn&t֑QF{ :q03HU,0,4Z.=mjHǟs5tWCm:tuTu[6N*}0RrcG\l%6(71йձy_;A3ˊ2Z@ xQ(йiNʹhfE;A~ "FO/\h&Jz{D:ֵ%A>0ko@??N̨\K(/D:D?bi_"uo`|od|4ʋ#_BB7s.^\+L:` .Dqja'C ^)FEfd[#w]55z,Tr碦2 B3QL=|Q5SpMȉF(=[$dk1gw7Nh9wh6}ﵶKu"5$P}d.=t;wĎ`lV4!r=E&۠Ta0pZɠgn59W22V`d_rᖢi %+P"j9O~:X ii=T1DLzzaS7_V9`AE0n@(@xD$&_:991Bj@yCV(Z;CEpc !\ɖ^_֪VD(Aתt,m G>Ԇ\]Kc/Z)J~/'ڗc{0Y¿BjKAH:a%" ^@u\0 ; `=)ϮN~߀3W6*VeȴBWZxLY;O+l~2xȝcI^I.ОcҀmRcൠ$9$w5/\Y{DZr/4TʚEH.PRBkUnRu 8fYj= :)<)m!&d:Q@B@qVǟu 䙃(FDP צsFuvm(vszgZ}1wD''`&yG"4 |"Rvw=MhIj{l&r:ZܟyƔ=p0YoabC;}8W:%*˺((bɁ;G p`I2X^mj-]]ZFd3A䇛 L/?ՆXhhsI3'12;q|9Wa5ZV`2&ynZ3h8xѪiJ.uح'wYMGȴ}N zbf) 8mj4T,ѨzCH\z>LQNInжN?%}'R*璇l[iXaU)zl%t}t%cso%K4dŽ0ZN;!G\P*Y)jY=닗J<3e DG4|nZ[ga^NB>1t,ZU[~En.Ufg՘_o|c)_nz@ƚ#g7qc7^o;ٔ[ aISlw(™YU4ʡ*mq9.8s#JH/Zc +$Q'_&ž>2 \ZB60BfD&ڮvh7.]2۫dκ@'Dgͯ;Ϟň*њlE'I60Fq{L{B;ͻ D/]4q` ԅR=Q^qOQ(wBލ^PU)6WC|b>G`G6cG<(:؂Kk243F*^6v6 `CO\:%P0ϔ`|n&92P}=dL|;`[fReȧnC}l cgh> =g0CxGq |h1-#d}=!+::|:ćħ Z$ D] 4]`{XI3pa$ؤ־I'О^8}9EH4CR/nĐ)~͸:pFS~ ?u,aPnPLO'E4E $~Rf$@W@5=FpLW )T۱qpW*id0H7E4T3ܨmZ'2|n,< YA{7?UnSxaXD5i&bܑ#l] uOʜ'>8I%7T`> }& =fQFq󑰦)+Ytɜ1(20?jCq@55 a|EGŜ !* 9 gw@|5t@wW tv+b?}f|PU)tC~2p%wNբt0Qg(zm.zP)gN/ ǬTQW]|2Q8,%/y/UglƗfr[OC\L` "ͪ76 kx6΀6* zlG86Ɇkmt|VIT&x}kNOWd:,:2G&Z9~syhʘe?5b&8Pdqfd%WJ^+ 'ȷC$2ul TDq~,QVSg?gHBߦSi#.kߛsXJtu^J9/u5лaBn~ʳ0gvzNOCnDFxfWֲj|6 U3 >4)1ks.bxvmIOj F`rdgד!M0Ed8n2`wB$ƠXSP&萉 ɥ";Cb7 F,/o!._XSn:.~`щNIe ث7h)~2y6: '7PgWe D|1ԶWkLnsj vӻd кNZY|a+H Ky:d݈t cқ9/vmtԻ`qޜ%}}y\Fc›ѐ)}K f!š{ƸZSU:OO]G%żUƚ(\tx'p%.C.;svWx~KH [sy6hc_73h PJ4>!"44JAf_ 7ؗ^Li;,]:)[fDkz7Pá^?/v}7G.c y+YV5aIyҶ7G*QG<еZ[sen^ QpE >O+ jA%Z{cQ6\m'bgNw1Ni͐gcG]u~'3\sK t[ʀNŋ{xzrK޿+_v-\׏dQpo)(Ml0,:NQ{=)gzSu$[#-4ڒGr[8Po%J{8E9|J'jNDmM1iN5rhRD7GL_l'_ch/9N.hƺx 2W7;uPmrӞ_ vNR,CwpxsߞiAHT?P£gĤL5k2ЫlðK!kt8Di zX\̱Hdw- tq0єQ!Ea=] Eاx#gl7}Ol|MAY,fոDuվx}XQ(hr]=rnQfcYo K\3x0MO0ڡx `r 6"ġX"@Lh6$W<%DuHaz ,a(9QwH$i7"a#2/G3wzkD,t`MO="#8(,/`;enSXw 51 E'GحKwpgn#)娹VΚ:ngɜ1xyw04zM/"|qll0dálNcHήkN4GK`B@Bl/K.z]Hixr&r??:&V \F  @EQaxԦ WW6v|^JM,j<+qv1xqI*ů j<sU'E>lb;Oi C]XHPo0,KKO,\*UZ9yғx 0$ۻ}%Au%i!v#8$|t07 qTxmt6sE~z'gIV3CCǃ\$lʲަDИfi:,BL 0$&mmc04]S,}ۧ9Ƶ[[,y_CeaW=G]NcۑNe{KS n]ۼe"ay fw&`,AoԎki,u[W )YS]ܒpנrB&-{gb%(N܋1P _EK [h 2 CR [{3Fs'40e(ag`rvL]#ǰ, "IsrK9kmsk*f^*6] Wpo ԟI{c| :fcl U,M7lr59_F$R\Y ?Jv`(M-ԜCJ5_IsɆBJui#|%gU]WP޼p^Cglܣcu$Voyjv*"鄬%>"_"֥4+)Xx 'iӼTr2=\ j rתERfpE"0,o/">WG9"jzzQ6n`Odhݓy5&]<_ RM;Ik9uD^VP S'7VEVNGaNꍸ̩͒*kVJ]y E,,*8 ցGI\7%)t܄ m91,H$^mxE1kaQXsOKO tFV:zKCl!I ki8Ռ!?uVg*tz  UsK}ء}gj ?VH#dGUJ oI`D#r^*CCk_=\Ltg?h5ޝ1^_dTe*H3eެEX1G>zb̒fC`9u9N»e#<8VZ2ٳd[ـַ_o m-> L}\?5ET>ůj-Tې&yĺզ#Tu؟Otx)LXeS6d+lL%<(.؀&c8fnύ W:巔Xo7Wf )26@BI CSi(,˴ь!ڔO'߯<3g]RYXP]D.lz8΍ z nU2βϛ&H{JPUi+ɛ0k[h UXH؎%FSƔBDJ7:Tkk}²0HS7-%ֿ{e=aO:'R \*B~i?Fq۱fŲqŋXcĔM7)9*^xQ2G ⺣=t6=l#1;t8m`'`J,ctSZ?Yfu=]iGŽ W*V)fhۯ`DCk9 f9 {'cx<nlp[ٕJ[`H U>zI 씅LğOx6ȶ aT0%ċɝFLZ<-%_pƌX_OFVC4-mim`Tȡ?h0imDQ*gJ%Li*P6ST&Dmkv~,y02CGXr?/k7Z,`h\b![%ϳePэ"EVNog_#NzesouyD/XQkԺ=TFr;hFDOM-We"ȵxe }jV?Ԁ aTʍiO?o=|~ T$zy;rV Z̹(nCO:!wDSP`bn"/iӋ_-o/_Ͱ!oL006yc0sV78$Dkޮ # 9Y'1bXcNտ.4,|EOe|blYhۅ^R#Q;ژxG3ڕzYxy~E#XTLxq7FegSw*iH8iDᖑJ둫"lיL䭳h+Bv!_L gj@& S{6Wv/|y9o 5.w-' xl &ո%z<[LcbY$횧GO x P:ؔoG]RJCS6ז!l9KxFP+ z_ Y㤕LvQ0)sS>xxЄQǶ>Ğ EyĽYsv+=xx)1~6ErH$!qWkEn`s8kcf4,@H]jHQ6vc"T1RUf3]ø|l.b ^1aoW*vvL:ґttwRs+]]bs4φ,$G'D!Chpٕ0M 8+^)#*MUVOc04{<+3#>v&{9iVc%=S},h`4Vnq;o@)yB̋?ĻjV _:|èd+I(tX=Ҙu7uDdƀ($ߐAED۶ʼ!SX@QzޢcE~}mlEGw#IAFWFSy7s"zi3t iዊyss!hs㈺tt?n@§&X]A)XS#\!uυjCO@Q(VM7/ŽB\@:J^bjubN&)/.Si;筌O'gbd.~r#@:=lT1gu݃wB:^zs;ތnfI u L "~_1$,Y^ˣ{of17Pf:ָ ]27ʂ"'Lenʡyj0Vg3wBJ'Z ߍZs;ļW'FN4 ZbzH*a q#E o[h?\<X%`PzI(oxh[_1%_ lXA5wx!\hfMJ)+~aa{)#6ŃKr]XHBQ{dmYzU4f"vPY{j8_b(⃀9P!oY9r"%45'HgAMy֋4Lwb&&׆D %7-R uG!|.Ɔ }K@?^Xz XϏꏒ^_|$I(ILr|9xVZrUQA1/XCixf*{ad= Ԛr!5XTf,RQd};Kme~'nڇ%\%eI aJ,ErZ#E⋌1KXTmPj*f]*qʴ1"f'UG:Qv y%Z ڕu:us4=f qe#>sC$ȑuv 6VV뼋Z"fMj^Ik AF͹ 8H#RB1o-􉱨vAޜnv;4@?X;~C8swiw?y& 9 0=hoHs?/%l?D!ޑT_`ļ#>Nm=޼ny†I*gMyrxG$e -HҬt]c 8T.*bM:|gr=BЮd=X{ N/zw7=1˄չpFkA-(N>tJhᚕt^"{E{GVGm|e!9d\1F\$ uBv?/LMo kMRICc#mf(j) 4-5$Au J7\_./Aꉇ9qu:MK1ng@ ʢ' ƨǃ2NCjwy/'?3񢽭 ~8n/Nfr-2@ⰴoS"[Jt`ft\TBpUolr8^ZIp FI'HrS;4rN:aje11̣vO~'I=we5[I(u"iX#G n5Z64RYՖWCX>Lj\DU"(<"]leŒho%'-ZDDJFi?%t_T[8=1<_5G PHɤZD:e&> ?Ӟsc aR ?mJ)+Q+e(dg6w_^Z;@qrГCI-)2 :ndi%;tֿ'9JywG]2usx})?eQFVҋg:o'9'F*[NHl*[C3<q϶jlȃBgʪ"W_dͻT䲐%t-IDT i? ́5DڂS!bк~ NcK܁4_G Z,ضu%Z"M|"/zZv`whPO_z{3.H[@uZNeAyT÷lWŘ}6UGTe^aX;:t!<cW`\RK?蛹u|4}2Kuu&s6'kg[]h& m8NlrBm[T GʽRe`8Fˢ! aXu8 |+lJK0zQ$C K ߫wRg7sfw<&Ū|L'|!C3K~{SNy 252y,$Rw\OePKO$O(bQ 2$r_;qNbv )|8ğ{TL{Uyv23(<4 7N LӒf}/dp,j>F_3s⟾.bAcXi P_iFQ*<3KVuKz2xv&X9{Dz-98>r9##pߤX{S'a (KH|vFf E]PV@'3#u:p- 4ÃG 08߭s1n, mԶROF72 ,FFk 4~1TEc~̌:(> Nc*Kڭ,ۨr/]WQzG0,RWAt:9n/\ڹl/~Bp08riB$da⇨[ ;]!.I8D#d_hDQ\)`T>%fpF9VOSߜ3 `k`-tD{`lE1*o>Zmi  ԰v-\⹐ / jPn;|<ת>8R!w?i7@ѐcWbfY0x5jzS,֞]?x\Dz:`.ܔ=gm]][1(9v=heEЂf?ܽ~OZ•-g|v o$Y.>M8he _MKў3EN!9 |A.VG' i^c$=M:)50q܈@<%ҍ? Lq=ޔ>q:^gIwHl1 'Z l>@qS51j`9ņrK0uis鐾Q M '7A-@<)?4Sl#c Nr4Y+g2p7xʳ]'UrL%$V33'Uj6o'xe[38=G|sǸf>XS5[X)(a5"Jzn̪Q c8)axeLt,D*A"+#oH7WA_t7A>eǰl77ZoFw:7s *2xvhTmzP9'zf*/Y (k>pxunzl:g@.tX2p<7co˛m(92S@|Z1>/l >.+Q@كtLW+E@'[ViaJ8-qJy7>O\vek,2ѭ`W0%iEv귀oDqgp )S"L$Vmn6.  ҟBZ.P2oΒ\VD󚠦3ܹO{AÀ@2bZ0 S r$ wH 7)ţ"Yq5-J}} z]BIj:1[ =PƬBKƧA(H bTdoy·VW3qLg?Q jŕ=E䍅 u(ĥ>?,.IyBע_9E:كqەj:1-!l̈́c$ 9Ky ~s"H3po(<+ @!\9XK-^~(%ibGO_ި^8c4 FmOj|`-T&gG1wYe͵@Gz,3:]c" `Bv ˴,oeph7't/aI2]@O٥vLH6G_*\`h;`siMq9 ºpJ}q;{(tf?BK/f]GNjeBayT85s=7+DJAψͬxwSU7 =14.htGށ۾b+?gŇyW|#"$љf̟ f* {-R;Rc߬䬓DGj2~ nRwFBlo_AdVVa{(kxzΐtCeh;*!ʤ~,Nu>0_TjC''^QF`-2{;}3v)-/Ә*LHz >-~X1F)eXFľ3pu3֟k 8$*똬A˺RA  cp=,T^s /%.d&7B휸B,n5 cvXBvyp${:jW62p3h ^HutK=[&;C8Pٛix+b؆FjK >ͦUCbl]8WRe$ g1z8\|nBg0tK =gUTSTb s׬Ogp>z/51ЈIJ"?Xi eLXa8u51(AQ4B]?3]OHmWE:8\] &ؘt0ɵX qZiV6t=Q`'?0o p&zSFYVŋaZ(0ɨP wcXցH#>)d *XvٿZZn}|=/gjvr\D`=j:6ZhGzQ/a1FWN;0IY|l&g'H.21N>a^d,5i1x2l` FيCa⊝M?넊hzM4wiT52d&U|5?{CbJ>5$X"c^7z01hGu{Eɏ !)6r}dpGE582q$~ Լ6M3jky6>P"p')vhlگeǯ8(ZmaS.4}?V_ -\*jh%"$%הt@cH 1j$ۜ٥NEG[EvI-'CzT[b'USWeo>R~u)ג S]ǭ1Ktfc=$zx͹0 W.BP;v}3QH(BAYzQso9hK;Kl`22:ylv@u hjJQLO`1rD:Ș.\:@G´@d~O̹dR$EBi "5\ݍlqL9 PpKW/hN@y ǃJU{s8aC" QxOf 8=Ix&jd(k $(kԹ.ϭw>w޾o*eOg Pյ!q:X]ᒟx^sځ~8O†u A&j7v1AV& Rs*6:/jjUBUV=U`I pav{6p1||4ӕ1"zzG`3$|wJKs.z(7:YDZ_9IQCr%+MI$V8]#GxULi{Yp܎``ˈ^00z lO k#KiJMU\)L0Q! $9=|iGnm\d&.N)#~`Z8 qbԝTN.}(\JT i;WJr%}E%$qd*p/Fkc٢(~J m}zx(cHTV:2@@[&"0|jd3qʘmq[eHߊ֑2= jt=s a,& t(^]Wy-N jwsO>5lzт5UMI'9D`m6c5Gl)Tg}fA>CO)7^5ZdV(/e+ar(p8!]|"^͐6#gLu:mC~gʸ~4 Pw&}q QJw9&fM;(Yu:pYgm|S~F RYv׭9֑Auh:8qlS/?׶ʤƒ!8!U e2FnW0RV.WA݅xW4c-2Yٍ*(^l፪ho+S5)^ Vj(✢L͢Hzi/B+R"η|}4z!E2fMi"S9o~KV 71˻ta~>Svs.[36˖[-Y/D@;p駆gAJ:XkYH2݁ *Y-i|ԭZӄ<҆a26/KYR#i;A L=nNЗ׷ ͯ-lêVb >O3W8jpD(Ti mx`0"py8nAJT8+9R+˂uG//Ʒ@+aQfGrtmZ#iJgsk([}:KtVc_!CkC? GNfD ׎A(09BtkH@>c0ƠuV3";e˓Γ"&|&gTr0*R;ɟ?$otw3Rs^1Aּ-g> > :Όw'yv DLn2'%@qHT5fm}Yޢ1CrjPs^~5{+ɩr: Ey$fNBΠf~64gy+Py\%ZiBbgy ]9KNVj1#^5e$oL\m:*>[{ OWy+epy,r WA6۩:(ne& AAQʤ *e$'wH\6c{+ӡj4QClZ،çUV6(g8@ phroCtFC9~K^mGb`-e5GFP-.v=FDKބʧb{?>X {=l{ج{o2KXwN;4ӆQ ь!:y;KK8+BϿRh3@zW;ӡLX v+n^ :B_Muxn#&i|JJ ~㈊d<]!{7?"' p!QOb[ 0ʶ& d&y_U!UZ2F~h[=pvZ5l k\o:;;U_4$eVyRs-(CG&FE'>¹FE{w=xl އy앁| q}ݻ'JhNGˆJnvuf9@Rzzdu&|U7]c()^c>OO :*{ O׎@|P|RK5 Oꡢ-a!u[P|5$ d$cc+;:aX `]Tl!P| .ߎ8 Z1kY!˻"tmdӻa]}Zu!{5hSrELBMIcCEQh(ãfX } LDt깟`ߕ"%hV=l)O$x-eW^?ЉIk* O.U5FxҍS_4'læ7MuCF_'A W(gMkEצ>RF1 ^",)'A{#0HN;}"Z0qI;^Zy8qɀK4O03TeJFt3iԬ~ȤFNc:寂^y5&2mi=5Zt9>NZɅ&:GN' Kְl/x&g;w"i0LRb[}۟Keo;_Y6iUS*w]۴ugU87@A|&TPlzxKjm'+rW4kٲfe;D hqoZ2ڌ~Z1m\C8Ng[zY#jXP #[xOЄjTS(pw 6+>:$!>C.q51C>0rdn2_{[Rj|AwEH^`V&;4,#=k3/2^\u禋3 ll'j M7QzLE+ %XnX5$C^M{O_picd`o~rBf_Mo[:/YcQVJvp@%dWSn $ǭ24uzp>tfziy,ooAADp[1ץ,\*T[m8l"г)r,)O=bXlهAثEjb` tERVlWnkK&kK=ָ03 dE濿^d1S9m[RGU[K'+y,mUZ\iR jQmS)z.(o GśƈIG';)Z\L<"zʶk%5\c2*ɭvkdvar1us?u:bLo{u wW6wh|l~,ɪ\4#x%+aAbq>`pb|ݏ&nO0>Sl+$,E;Qf,p^Ls)D%V#sv-ϝldJfB0?Հ`E-7S1CDV(K:(~MfWOL mhC @h~DǛtZ<;4zviS[BuUg-dq(v?lPLȠBkCǸmp#u"*.W_|n 10)$@sNh_݂^gQykjcm34K7IG3/5PR$65Ofk $2-R}Ng6֗WMU B]F*SɔֵSCGsW!rkY$/${  Z[eR=y& 'ȝq\)xeT\\qX$iMӇ]NX+x9Y3,=y+#s>U.칮y.ftQS'm6Dyu_b]S,i8ߧ8(^WLv2%7Uխ_7Ki9~>R'^15d{/p p~///g*v1x^"j?]_LaM$Ea:gwǂ~~l΂'[­ت0?>Nkr*AJd<]槛ĠoT/볝&T>Jarr+)­d }ufgzT6AzhniA2'޸ǣ":aq%d!j!Z&pRk~Ifh9S9 :Yeb9H D@f{u+eFGGfNO(ٸvzPaM-Z >h,y3C 6QxԜqNȑ8ٞ>nBosI{VrCS3O~nļIIWWUϟeUxM{jD WoޡKJTMBHR+ׂގuEH؂?p5 GgRRDqLy&llBۤ?ItcK}I,Ǫͽ7 4sZ|Ézئ07 sx''}w<O T==d013ճa&~/5K (DuTig{<7c.rg~.j_PQeꞹK5G3 vnВ+scm[PJ頚 흢Y*CnJ=m/W؍UqDʩgq'Mѝ/Ƃol xۼPF1}+&1+.@\ 6Pbޯ 8mG:7Zk;\?1ăMxxGڣ|Ja5˿hE pB~Zrx"?=ׁ;0=p%MDfPIA"M,amz_,y )^)΢rZ`L]5_~ۉDӈ`“'6qԧ$: g(ї_]UP8P={n(!DMΞ'{[;m #ыb%r=s߯h(@ ĶӘƫ>+cԧVqJNLwƲezT{x4\AzC8Th3Y&AiK~J1@-v&]e~@PCZq4favm{N$>vV|Flh؉MŰ.JSEoş+]P[#<:Yy?X.r4Mj5s rxyB$V"l+ u'B).tEe#&tI ۬OGwL-K\q I kv9&l+Gl>b%CL8hkˬLGj? qnn<+`xrK I@ƵBf0&CPJj6:t+]>D&/d$Ͽ1)̡]|:/9CbEu9NӁzNcP[3M2IN;NM_&VQ\׀]sU>Nmqy=<Ɩ\sHBE2sH>aZ&cnA[W 0 QWBmZ\1bɅ; gC{;c Ac-ЍV5*^} 0r6;4rs%T㳻҇L* '6U&yOLn!=C'JyFuއ}9NАZa 137n;o iakdC2ɢ5zʇ c>ٿ<#DY <k ƕ׊>vҤ3fy-a}uQl'8,KRc<uZ҃L9{9} E1-`NJ\z.HԷ#)H])nIn^pj*, iDHdJ ;!&3R5;s@~ƧEd.&%Qg8TQ/\0KdO26SIf2D :c8qf^ `znt/"]7[})K{9-N a2]m@cԜ~H2't*]&lۊXH` S;4;um/%{l|/j/.h%5G2n/@fIHrZ;LKqTQHא?fY96KHy4 [&"їpK%_CN -VҳYU# }D۱76CB`)8j;CUPR"W "#^$QGt@Z~gg,Bm016̵q(H!#P1ShZX~cNGeG鿋Hfwf-oe}OHp $$б20뤷`++.Rmbe,m*cx=qohwZ&Qt&v>+ (Cyg5sY1V;X,`qӳW0kS`lޙ%m:DlJqR&ƌlXV5YG3(-1 ?qECfe=?XjJ~{u!zeC;Ow3ߡEũ: X =9E!&Iu~kRaYrR_3YB kd$= <~ u}[\1D7rtA+ 51\Qt41ԜM1+.^$9Z=tHM5՚:7xgDS{Z2|L*mmQ/UĉG yrGZw* e>̓tǿO.쀩I=TQ@kC:GPί8E4i[X5 ]82e)_mZkS,cii J?N@HTV7*/lĈFַ=OcI5~?s*1{ybd0VZ:hm \Bm)I"<,K [_wIA婰)zhRMnQc6%]jJ^{f 6~ _Q's>X~T啅YWQ|ј$ϬIk#q2wI=x.I+Mƹ٩I-"@htm:,3'/,ЗBp.%J'c fOQygBOʄ[ Dw ž-rK @(K#> fkgo$@Hq1̴n-ȅJb$m狿\K&*\r$x :|JQ6 U=cu<7kd=$n00OtUӵ=3H'E@GNq59,c{ t ӺDGS穵_%""G}ŵ[f Dl_5NA+=Ȳ8BuLuo 'b;:J,qRLs,&n_aCUI%r؎]OR WlA}#6!eSmЊ}I ٗNjfl3-~{+ss܂٠s鳸4SIA,gdMkuܟ,'m6I9j"1yL:CLJ&q[38d3pQ'Ϡ+era :+XA0NOwcJ(AqG,.4 t?L4Zt_8D.rxGL\(aB S9%;t]īB}m 6]P),DAq  m@shq32U񃲟ScuqGrٗ8WB ؊aǜ($[!ΰ]zbbD ,r8Pn} NӢ/Y/ 3՜alf} m0[؜k1JY~VnoH&>}~=KahCچێw݉M.Y6O2iLm#9G#҉5#s"˥\Vº+YK5HN8dK oJ>~z$WX~TxCq@0k{)li( DS6ݣϻ|é֤+yi^Uak(#dwZO8>Kh4$m'9nެky͎TK`tʼn [م֨%prDqԚݤj@T97Y_mnȪ*Uϟ~m( AP%'`j(ϳt13fqלP0sEY3"|(4[maG.Ԭ #uvY'5AK]'v'feb'˥=V_* t܆;|Jx)ĕn(W8dX]y e{_ $|@gYxF*9B̨MLy|7{t#͐Sow5|iʺh)x-x6>ǼꝭX7;2 ]*B5"58g/C޵RW&03/f^O~I) N(YD|3'JF>Ӽ͘<=4>)JPA_<}W3d*Mc{flUP]ߎT{-]m QL c-@XR(B$Om BJ?yj/>r^s6 \yhlP{rZc]Ѽ0oW(ǩ\gS>sn 1()'&C[\6mX4(HBpsz|vu`E؊6cyDP D3L{y%B2,hh0 Ck?UFUohR0t._-5xnli;nr2g}_bd9*j¹ U44ч%=:ˠc]I}w()N7 pסʱFlV_ruCFه4`lCCR%'-롿ɭdUˏǀvӜ"wlP#$cT@]/Cv v}KߠK'q@i:3#sx?mg$eV*n;g[ƅM9y)7_HBvz4㈞Q+kO\ٸK2LUR̝Ý_9:P3vzbm^V2h5iڞ@fA5u>Ձ}ּC0pp ).x| ҵ3؅Ola"0Bi xsjį=v|3ϫ$U*ű S2&]58cRsfiikpf^NOrHE8jUcP!Sލ ߶7+GS\ XɆ֟ރ+Fq;lF̙]}-k!) X "oaq-z3$Gc#pݡ"fZhƲ}nױa)dQ6*&YV툭,FGOO":iBvqjYvE(rL_{cĵ0ˤdb4P&Ր C(/HʼnL(}͇&KlڇUW3>M۷+ wVAօ,N'7-XB94ܽӠwE*w@ wE>Ajc">Iʄ10X܆,r!9.Hv&{Dэi#I)m@]hsu8,kA iXX%P1Pj4 O :HQʐY(< tӝ"e'aOpMJsΪVOITVȬe(J&ш8ndYg${0i$8jKU[ox q$%95d:3mO.C v2 '!M qW9PcL4Qb՝yAw/CT|l dkv"^C+ZeT3Ӂ(ZM(_g]N&Q:c%Pn@Aa]EWeDGCf׊$~Q@Q{)?洯R&Mg\aᤷik$\7 H/c)|?e9Df{Di"-5ho%كzS.fewS|#˴;qI&W)晘STz&$[qnnY7%5ϧMU!;:%="Jf߃%!VɚN7ШXQFMQXTAS\OukNw ]d vZ*90-Z7e -W"eK5p i1obp,>ao] avXwBGگTe̓d]:;ke_JkAdsl\@`D+cSWvH3re]7 VBT07Y qs "}5I7iIjGOǟg&k p(1 '8w-1 le^c0PDzc w0L5: PM T}& ޜ8kg h{;HA:T [o Åwb,8`73<[c( t{Ux[to_{,t@Qes*V"?b "qqnӹYH #"[u2'*FwY c,KH㯽|M`W8_-#:6V;ZͬReՁ:<ʑNz|s)f>0񲢣5'j&.BcBBLQ⋴.,;"i'y G[.1?%gej((#0N uZ3& TCC4sfG26%sg lCorNN9f37T`!S+K+S‡rۺ_MU0vӕ}ec\ J7^8U{Ax21C3Ja!YJnśz-ͷtebBTxRV!LnW[]0pٿ1 Ǿ5\\/6g1jKt3utx,N$ ciΓ(;F+=iE4TK 9}| pKHFX=609.C~tPJPxV  /u_=XO}k]ŀrx\@oƤv唄D ӭ!yezC kң FܪSPE|HtaS܊Ӑڗ#sγmXשtDb!nT'$ EbFq񹌊9R}F߁&7w} G~\OJѲBϚoEG1 D}4y;\_Q?שYcUuXnGω!:_"t%Vm3H6(qb!ҿ/b[b<>MsлHv08\7fE\oDZ\`5p7^/)13= gy9?؛' t/Ju("Os4{LK66&@?0d6F/pu4 - =o#M[_r@<מ lcb` zO-~,t(3ɲZʵLl k"d=>. qcX@lRTWp1CM~!J}`:w~.;SȸsK@y>{"1[&_˭\+3jR уU,v.tF[W@$=wigQ4Gwts,ۅ\嗝}4L?w!e1x3XJ,!JBX3u!GNl:n#3~)`"\S ߅`Ls1x'#VwGθ7ƭ9f*Y:ɽm0Y3'_|75C`XYdpL_>/vre4 _<~[tQ 6Gh i<8Go5rO?lzйPA!xɰx8_2$6tN,ÿHDncA X1n?ߨ,`ܞ,i_cMU\pW$|/^bPpmqbeS#?<& WU Q*yƻ؏XsG6,x3fɖŭhLZvc+e@rn?׫-90t@,ؑhS5<ZưZ9,yR5#Hc}5:S<'P.nW#\x XxdyetĪ#e!HV@lWAYg5Xج: ?`"x}7K5Ȍ.z9O,0 f-]!n f!t4ſhxQS3bO.<߸gQr˺i[Rj<t7F"/&JF3?G\PZw:wS[KE-ΰoniI͡gh" Sm/ ֊3»bRВB" G4~2tZ^yV쏝OhĚ f-N5ߕ\׏]iv8+ (@0-IHFnmr7#]}ok׾G-HE@9(:T8Ң)ů*mK]6 :Eđs 8Y5H{:ⴠ,G4X969>D`"OU@UԿSK#\x ;w$A哼l te],:Cr.+&m@lK9tIa\Šմ+G%华E"8:GMud$@hW?JĴ۝K`A`_vdFN-uhY-a=Y[{;Z:nv}ƫUk=O3uLey- FLHej"PE2J^/ĩ\gwă߱1x`=Kl\,M.q.b2p( fd&Ձ>_ (59UH^/ss摻䠎5J6*;ڶN0'3r&[2~+}/; -X!5^r9>y2`ũAm\?E|b@~،{Z;+% !ÛtKYK"9DQݵoF };6t=%SaꅮIn '#p-4f NR^qfFWklǰ* .}lfiTe U[@a3/vZta^ݗ=Q".lJSgE1)ĥi8q3_T%8L5m,F3@XTů;&1GЯai I{ub_>uVd+B]NWގs&oZ+" };btY,+ Ή|~AaGI%aqWgDԟaXl]up{Ù~9FؤQ&D#:O'm@O~픚erx"0LH_@/_ JIiGuQz,dVYq]߾~#O?oC֗3$DwXfyd.(K Y䚮4'ëRŽkG7MW$^kbOc%|{7i W\Cr $>Z7;͍U+ؔg90"yr]z<6A[<4̄v\s0,y?R'e4SMgRu@T Җ>T ְs{M9j`ټgs3,{0t~>vqZѸ:^I2q1oZհ6!7$Q(GɎ{L(8zZiU<X7nFø(Φ);&8 {%HA~D1k:1e_ T/TQ\8h!OSK+'M{Y4h[yg*cm'EЗe{ଡ଼-l5F4$+ 01n#_p+Ss>kgvޠ }*Kb_Y%rwpgKpi *b0>FŠcsTW)R&; lϧK!ucrPpb8[]MV!QPfULC0X;9-Kw:xÃԇ4i ^نu^tEԜ68hRlbOSL4/ZKKhDW*v/4Fr.Y繤UdI^,h&\AWNՈ)Kcosǰ#[˖:aWݑV3ςf=ߤ+ \n-xz \*O#+ýގM?3Mxtw2x5Ǡ-!\(";ЈfjX~%nU77kcQ_‡rrL%V vH*KYQJy@$9v exPy~ qZ* N +꟱RHJH5C *6̨6Ul\!+䩞qL͕Ae\XcbbzNB֙^'6HI43٧Lz}4$F*`q\m)}}j^a=\ˊTI͢ɥ(#|kM[ % "7I]^J {AuB',>Ȟ*TE t89JNlryBx m,߿X2F dOI^h=o6)ⳙOšKZ~PNMrFy*@V<)!;Xg)drR\؟pX7fS$KzYw5J(F3p0Zzƾ}aK]Rݴq`;l$RdoݤT̟CxۺBTQ`&16uPClxYb o14_Fum]ZT;H$\zDGI)"{&t3n7JԅWA(d$*-1yOޥ̱p'-q_XȫV%覝rhC8HtʹQ9jnW Ǘ[L FI>f '7QQSfcR8x Hk@07EBp95*T"4K `S [|vD6fŮcY:)Ւ+U( N??dM{VKqhg}SPViYpwAUe gԆyQ냜NNA@PȜMAm?Sw8IF#Dv.O9ӱtYe]&; 9bB{"sx*A-5ab}:i6!驕3,()lZ>dFMb: ~F07awdh-c1`7^OMY'r?~/G.ynM93*Øw,_6_֒{2A0<lXD$s· kwx&=~Na2(@4 D$p ϭ9 ׄz9U61j>r?xy~7KڈsP?} C98W$JקR^e&hQ1Os g~e !n/3We* 'bm[-9fLqSbպW)" C^KRL @o0mBOP%1%2=v\]\h*cGÛ%;xp*rZ~{I` 8g v~rS_)"C"Enn/^P9Ggh٨Wjumcìu-FH ^M o4@ Ne%$u+T*v08HVz *S>?Z$\})wiK›pi{[~љ9.6md$:Ľ7RP :mq/rs F-[zL5{i9TB@%=_a&Z/h!+ ^Gg a^{s4 :>xNt։4ߪ{@!N>N_ng"g½sj +@>pR:B ʹPĤqoRE- 7aM\.z"{IAm*c5[yC ;}\}>]Zpgc{j맟J}gU+9Y?H#[!Mև?D0m+ &lab5-/, 9=hCx&IN\( BNҏ P#@ue[ApiyB1KV?e`ڷēTS6#{IA{+AtfȪ 4#2JoF<~ I8,a^JAC+d&Z U{K2(VL 5|/~0P:7Nz1JT}2;T9P)J*Qy?Yr9=F/KQUae6(ՕwAH1?׏ztY kK7mY_0W%SvFdxfےE\^qI|dm=!׮) x-@aWlMKuO蛟=fS]#| lG^ӴiGA}-PΧ(hDy"WsL#8qE(9^a(%HJ#fاo"BnBz|fD鎎zH}~5]ȉG ꞼŽ6oa Ӽ},.9Ԅͦ :J!,l4Q?"O>&L+Jh(.+.M r;~=L:qH/ PAÁH Ƈ^,u+l+)J=s/UbGoMHӹ~bZ5yt ɼ9q*O@$% \ؼI ! UFԭzm>u91I ԍHñC.޾Աрj4eT(bb8-WoQ~'b)9m@\ SH?ɼiyQ^ XH ^js`A-mMF?iX特Zl5ȱ*sYCܑR8ה[UCQI4>^L9W*ѕJy^56e[~E=D^5mA{qH61t&(Bu nT.oQ'0-l:ԢTۦ89乡~%#_%0<['[ W:35|[Oc`C[=Wh{Mm7B[.9 90lJ<8h fU?MsޠlIn#4E_RA2~|@k5ín%mܖ# e OgoF4g &$^Wxh: Eeo-xUV)1`mpjRA\DgI!e)S ȔhEqTBHC"r=CIjLGnvϹ2ta& AJǞVS2YY~WE×z)*jP~X֨(Ix_3J, pb@rɮl1@j0}w^ $`/oɦ4i4#܂݌a}Y?7Z$x|y_Q TS+#W`ȺkBBpm5eFYbۜoJ5hd cgϼ?u@>u4/: p$S"U&XS5xձ;qN"A%7Fۃ)UW̄u5:5]1i{]jKL)AhrGs4YnM}՞v sc,2BvB^Zy^*,fF'up ckb}gH7](7ƞkH`T;h17Wd~KNyV5H'%`2@SS) ᦊ֟$O$WN{7xZ,WiJ.ئі|oj q<2uSy+18ީyu@?wZ8G,Zq0ӽI)3檮c(CawAoج$]MᨽYaL72s`&IMUDyұeЋPm*F/ɘk bz'%nd_ڂcK " $/fOHvaR#e*8J L4җfzM[Fs3X7pxȹ>&oSr.imeKzl4l 96}~B*暉YxKTWI䥧 !$G$]("?Eȥ Č,"cN:EAH;P$O:o|YQSΝf3P _,'ȭjpR} n.Ӛ헿\ڀtCGV8?6Q\VewkBtAdf!o|1T뒳h|N8pԯl>slL`$Dy0/#| =9jĀDG ;T41LE>;̎GmUsl6"JMO`&%?%v[A|#;v=a|4l(UUeTVxM X4[Б-#A4%GwQ,JOv%Hnɯs>t)Ϝh˯e[r⺇kggj Bgk nYҘ6O@+WìI8;si1OçnH,p Y )5_Jdql28#f^ZĶ3: {*Z7}ꈛdWF-*7TxבH g ~n-oP_2NRCsl[S u&OkEq%8>69Ja۸302*Q=w`t2sӧ[yMޚվ4U5:ʓ=~뫱aƇ:Yćf\z\v{>ר&9.Wf Nǂ~SPdwkДV0 ce2(EZr`(6cDzNu޹.[nE+97zB<ck8A3I77@4 )ְ> ի6,8 ]yX?,|`'gzrև |G t^S5ُM2dyuE |+XhHIaP[j|FQHaض{]sEg-QG,WΨ١K)UiBO@&HGM: pǔ=m=L7eA笆 ^ 5*f\gʺhyŕl/) _,E~FbX)LEsؘN+kP'Pz'bu!!뢄I^$z]V9%ƟV(ʲ>} ejɛf gg DAߡ/%~ U\^ků$cjd=`a0OaXn'q+dQz#\kQŊًLSݫpIY8Մ[cd:|𹰌Y?/eЛ73 "]on`8Jny+~y>eIK780=%fL0ZV8Ej!J:}˚&]HY`2N;+\`ͼsS@[0YnK|aȵ٠d%IAR@$G, aX>?)35B T%3WvJ\ZJupkO.Pc9.ZOZ[Rtwݣh@- |,jSN\c >&SX&8i4Ɛ8Iz ЙaĈhzDȳ'h\l=e*[GvC͠`M;otOV$ yQx8C{]شILuRJ)>'EYȝ>c]`ـmͺ`N,3[m ?G(3)u- Pp۞BZ84"Rct.>!?f>y[#s&Y.c# -~~`;]^ztܠy4}a(V}\m׬BW ^s1[`pfJ +V%.E@Lֺ&1 p#6/dEU[g%%Eۋdb4IaN<\8v?.YAGb]Jn?s  TTjd,oVIkl_+Y3<9IRnff49{p\\ظWUP[@液x8$DxXѩ j-F4;z2*JB?x O>40YȨ0ƞZk F w9y%2Jv!JߒWS4\jj&e'p<.6nN1hg䬬pAV (mT[ ::"*D)%QQUjr¥ \(C mKH%Ğ])JAO~D43r}Bi^l auCl 8.[P*8.I ^+[m+ JEdH~XuN`Uypb?%Gt.O%` %bq>(?RK)斃YM,diy_'׬~::d )}~2.y_U|=[&@iLwo.Xpș_^p^mAQV'lxkoU2xv'Q_SUʎ'ucPxԩ $e(x*-0KYzdΛt 8[tJU|oS,sw׍ |98L?>nxb`tWI%ҎTayj;ԭj9!+o8['ʁSoG!8T'@e QDm%/&' SohyZ3W{S>KֳaQf-pϡ;-5xIӵyTeBqCݡJi?򗍪AUGLzWR "{v ' =͟fp_jcydF]h)}$|.:kZۖ^.򎥦ҷR9L <'{ 279Po(%Tf 1ZCj27;pr۝r3GߊaGD !*.>`Ñ纇ݨ$Qv<ޯIv")z"',[xsϝ^RcWZ+lkjZU*?kV$2R-&E <8>A;Dv ԃS Sp,pBq51:=%4baуmf~mI_KD?쀩V$e\}kpٕz?O̼6XjP))S$R ~> y[- bAkZ?;ԼdK@6T&XYMlե>mJj$pDmb0=DP ziDo"D/}φUаl!+8g5 .~9TKVv}=\`M U;P bwّㅪoq? ;b˙k(H x=mr+9h;lEl]A# IdD**@'!aȿ.fdb;|Hd I!g= آ=$/L ɩLo  dm=!-2VUA &jk&JmNcDG'B[&5qx_v~ ؈xZvs$Se(\O iN<~BmTzӎ#*|c^jtRKh*dfy0 4`J*4Sdɑ%5(Wn TyĄaOM#BSdյbm}J*"HK]\phrBwۢЯ Jӂ[ }NhR鬽 P Tzï]`{$r窨+{$}}j%1DŽO`Z?be/V:7w?8wJ@$[Ѫ*NɻW[ HiBJ ϓ6ІH"l[bdsɋ{<=~`lb& ſ ͊oo(6* ^qg9LFore{jKĬՂG.,cRou2ԛbsPaj٥ُWhLdHƢ;1nOKfBNB(}EW0p ǬҎC^Chduk` Z#{0sը=ݪ,Fž೧EL{#tݠȯư $WrE6@4)pjBG|z&UvO6WՊ4C,VxWNύi]Mm _%o:ꏿ:nDN@PĖ ͺ'sBLo ^" xpaP}d.%յ`w3V$Y xJ4eY+lWa,.qUϭB%V x܍EHuL2= lsA)O>ލNq23}*}+UUij?ݹx]?xgҽtƴX5$[n`,@,G百N ;Yn{Jm( D?] _aYג4Zp %hkBGKEȁI?x"5]x`""y~KȠ)DĞ0>E@[ 2iZv+[`T8 ͕\f"QbOwX-yu3*k_ܺeb6{8R7sE`.yAsJj-{1OTSkE쮉.Ru&nD*G2eWK0rZ8c:kS: pUsRA-/^kv5T崡; Ms")Skx4>O,DB^JʥvP82|c(mLI C>N 9i!\@67] xy~ߨ;Sq1BF&**0\~7[>-:!C۶ypDⲑ(G'/2BZ)s;cOr(ېɼ6J` 4uIU8|$=|-sAI/y_ϼcP=[TyE>$ BN#Rx= F/c&&GyVp P‚WR"+N-.?c K4Z*e{!?iA"zacxO,بeʻu*l-{7^kzA&  CVU0x'ywC]#B(]U֩3o$@<xWa_qI0E-jv:rsUG͂(S#gsOClApF9 QF{_rŁE 1йDh* c*(f;LGUdjذΩ$9l}&9ͦQp ҍW%9YIm~9AoMtgT} 4ى0o YS#yzVʳt'Ž҄?)_B%%C{ #ey㺑yh&pa1g-c퍒9YN*T<=|vkdSZ}ᜨf 공 Rݘ]|z[ d9JGaK+qy"HJ ,K0?5YW@ z?j Z>.A9=^T({P_.b^DksRKxkUON$T(FW6II vfmCc,=`_52? j~/w[8 8`(CYT+xZıj $z?1ȕ+!DtEhdǻyi2rAn~iPB,ETEipTs6$2I׵bqEB} nt諈 ''V+O #B~o *=Fhlfu I)gvsI#=e*Z"=v59 p~9H&θ'&a%ʓ٩ L @dhLw z ,-ceaXnW.90^k=h2HH E T PSOv˨>kaM>BN4[K" q5r#[f)#]F[DO^(Ym(90gJЍ4%)2U7=Y]t̃~VQ8]􌳠 =Gxj;X"(aC1 Oz+e9}:P2񆇗Q'H0nU,wDT+16ZMfO xV6_!J^A8MEtȒ>ֈ؁4nzc@8y_^[0鵇Y8ewC1.b}u h#7:īse1VWZMY/Z4a=?B.n+`52R8XL ͜8sPB?O~P(Ij^lbRU3ݎN? xJt[me;j@SUnݯ"R4w[^1x&JԺIDُ$ ~І쑕`Ҩ 5gi g Ԙ{6 ;TIJb1Bm$N[|>8ą$/cW9}+QeWezm$p^ C2 .t VocG9x =Er6Xހīg:mδxWi<B[e D/{O>`{Ø\G;>Hv@9MgeEB7d(,LH*p ƶ~D=&%ey˿txݳb)rsМ@{.5f9n,x48O;7ctmeRz > X1LV0BEIB?UT=m%[w1"xvrZLB[ɲ!8],CԮͫosr%̾UtƸ FC$jd 䂵^@ usa*E) vUPy`= ò \|Tۙ+^ws A:ZMm1z63@ɵ1-zv _= p}3az줖֧yb,Z6[F2?_j].$1O Ziƅw@ s/i\ߡk,X$ h0nSFUoIݢC$z_Nc L*$BMhy< ;YI<NڬfҮtWhJ?8*BUkI''ʬ>sC\l&Y2ƔX? lJ`V"P"{P-R>8ƱI@uB$j3Z1>}4-=W n_Bo͗A<̑ޔK|(ĸL6=3Ϝj(oG5:$Qkx0M[(0+%7Do,˪!RTYi?M#5PyADw1]ijjP.kW|nbe`dv4ʲ 4 G)?v؛ 1D'mf᪟4j?۸nV$j*3,Pᑹb;- dƬ獸a֦|T,NiH<Ý]]_iA2hLx~g4y T5RvE:r7]Q1/,wyv[s3&U kdx84A只`SU nY 57x:(7aj>#<5֯:2.=: \'#( V}b|bMBp?\xAX2r`eq «P8&2jvZcԸӽѬ[x!*:$:3#Adž9'I EG4L^~c<@UX+j{箇ueS|8B_yգ^7\^Wek")N6v< ڣQ\Zi|߹{˞'g t]Uj+N.ҡjUeG@Fv} *E2פ{.q:i(u. SD:F35꣑9[xQT&^;oc*6j'DrE@xv.C%$,r-dzeaB9)*}pXQ 1uk.T=}ld7s#EP#Ӈ&n0aɂoI.ʥ^OcGhv%{g2 [ϡ/|%SaCX|ҹ`; G_H1cY/1 )lfh7\8?H|Pg>tრlm> 9 S=I@A{u]: ZDצ^qv1!3*3oF0TKWEECt7 A|h0nԄ\bN{+$vW@}4sֶҔ"?T0Y@xynq)/+Ɋ$!>=ڎrQ7N>^6)"AL똳z;P dakJWay+_GljFцA18O)ж>QXS { /!⽓E@pR, taFtVqd^FC=㡏VCrenAP`Y1PkJe`QmKWe2WEԹ6r|.vXOV^z֑Ñ9~&":/}]l߫VPmtէ\Q bz4 GZ^"YoQy6iX'Ȗ: 畅ߡ_~0+FCPYÜ  ^i l؆a|bKVbC5k$oT"{.N65ɴnc GH[Lgh~ ,#ͥǃ>z%q͘ZXsr :km4C PKٟ"+i&#eWz]j(i)c`\: s5 שRdT([L$`B ul o,5Q=aԊxoѿG]2㢆wSrVb=zm)1)E>kKζ{jَ/T˨YM kyP; mso*@? 6 Ifr)HRd'Ua0_./CMYm b % PE}&| =z|5x˵:wMV8aPT( M1pM̾۬lVTKRDzn7"Yxm˳D/Khz1r|χse$TAY#?@Ffv⏢4):Vy{E\c^!&Qxoc жQCv'QF {@^ƽ11EVi0.` {Y"fRϖLT4vcP|e9O̠do̖=?G{[dpJ ^<;+D+Q^ 6&VZCŏXSpPt;WOԣ!zyߍ фŬ ˎu4v(Nkk3Vmy>2f|YJ&-t:}Yc ;;} O>xN{ dh)qE)PΗPufo/1 Q^&"3̔?#Rc|)t Xf)URpk\%ϗ5QVLFSUEimM%7 6ڴ*EPr}[,0fr=裙 BCfQ(]533)1'6dfѼy̪v!gԉ ,@c%"U z38czv=k``˩'?&%]JaM6l+|ݺkZ囸φ.</]%HQ؂oڍpKlct!!'}\'AjulvZ5(I9L]$F5ȄJ{AȚӍmOdNJs|)}u#EIR2?p&+#$ [eT46Cͧ5g1ر"v(6 IN [B[C7BΩqK>uAB%<{ PV'vDջ!y?\oa.jOӒ='w*5ϔ[@DJ#JCA;Z5,Vu6Xm+*IlF8!vG K?eahu*PUf"ydQKX 141LV^YGb9'o y!@o-(>TY}D\)'@)w(a[Wu-U} Ax~[s%9߬wFјJRN(ʜo&&rGjnKEAAh/Bᚨ4X} {텛fc-oh`Qi)PVsB18g&h^*r@5KD!fRuDki*p!9鍵y {mAS0 =ƕk'C|~ѳ0.7Œ:H6qP 'x 2A ԝ]EA0N3i5-»A36Ee7tc-yMɃ<2xy5h~ ^MGcbKmX)=m)"h{WeȘs!Bfҧi1x% {{D pgϞv{vg>AftNam8f)͖+}̲*V #5Dg^kaIO7>LvQV%ΓmYk4$&cݰ+0g^RC{ksjڲV$Wm3ٷ/`mu|0|ܝǯpEN6%Quʳ>eg|1@U?c`y+]fNn,ehA^u0HIXAD]NLJ2VG͕  之QF@N6"L" i0$G*hx x6x~Jq" ޡjxw ̫$Ed@<2tX.fFQHJ45ٞv~)dپ ?;rwfvl0k/|q?rt/#6()#.ӓ)Ygd>N"WzzDZ>"eq{'|V4AtjA;d́"R9 .4fyIg_`s2 vk~j]ZC T ZC(tkR eKWM)%ς߄*Wz /-,e8OwhT8B,AmDbب%QŎ7 \iy HME)xjv/+tfja0&C!8 Ғ<ijו a%W;9_ݥI q -$P.a~E.$V߅I`~3&sC:C̈́A>P}<<$aϥ ߳pq} ,g'wBRZ{K;'> {ZW8)C!1ҏ׿EwN@htՍA:_L̩T_h+⮛fv&a Z/XPz[gqC2VIe@x9@215{#n-fe? -.#os"{3^,:J@\ IxDdbuR:mƗb}<0OLxZ)Q8w 4`eN%@(ڃ6FV,ƙBG웼M`^ >(7갏Y 6֫ƃױwLaCh!ӫU8 <3F0v )QGi幣. S%;v^ kNnt+ڋ!"ȯb^Yjގ’%֪Qn aWֶQ/.$}[E-"ٿ¾5Ff/ \hɚ$ U< ~ 7N;U%ZowxX'?Cq{CgC.J+Q$Mq\Vjפ4 64=8rJ'fI@ݓdae|4Š|57q5ПKD\-({wMD{>vO||7ܤqLY+•`7|̇iD|J./xrΗWF\"/Z/(L&BX (O.5n[K):nM ?lBNa2oEJ9O\]0>ycV8cOإOs^'zumπN-% )D3%/TGx~4R)0$i(;6Џn}2*oޠfՕ SŒVm;6>w`W6J/udڽ1 L86+p@A=^Yc RKZbY|0)ܲ <6P;S,t y[+/]Go~2Sx}im$mYWo `, mN㔽!:wmL\ǰ`[6a0~h5AE(q X ?}nMI`&.DY3 x$=?- sxoV:EZu|Ա m'U>>2d)F++2B,4 E(\p&1 ~]}/eՎZDğ3 BЅNqą =xp.mBz7ȺqEx >yRdDVU%2;3r WGwve}BXbҰVTXy|~}Yym> ﰇAC-S꯶HEY[/F2UsZQ]$n;<4Ia9-TP.>G!BB<K^w )b5Fsl'3f9m庬0:[oa%ޏ֖@ʸkDz1c@cU76Maoٮ!|)ld¹d 走 3tU|Q/_dVsHjˏt[g(*ՕɯlULuG lBy JZ^ڒM@&$,#ydH p6rR"]X\ev.5 &3iwQLL)K=@j9;IXuK595+CxQWN4izIt:}{}tW0?7YNfT@f- ΑSސa`Jy>G,D{,p,~Oe0޲`bK(07‰Hi`KU] L*ldQ>^d?r }ɴmpc6g+Vf`g  @l^ۇP *O(HpF{kKAaoW._IՍċ<^QV⹏" MJ&Z9տJϑ#LBxKFɪNQE7EL!BYk&P:Etu놋T"&+gk_fސ(JtQȠN+*^Ϥג=rn8oxB4AX'9H[3` YIC&:c?ri.ji0Iy>~}X{ԡSqtېYCsU1JATm}ZWy~abbX<~fy>ܫ1v?iw$S]KhKIt@_#TUq Q= fe\:bC3D.r&ױkVƛ =Ng布K2Fʻɰ֒#p\EqieaPfvRMnEKk]9NǚaeZ9 ;ǵ ywúQpH<8=sAP粙7Dth÷8VZ mS!#53Ah0vh9)^%)*v&4[|A%' v2d j4٪n:g(lӦIȩ$O mp ѲV:f:F򇎾ܜۏv2>ZQDp0;l* rH\yyzjE3#epEv e3"? [(X6m _°m8E>sO05]-ȿaZ`ýO%nEo xFt+R5hsJS[ӓnOJVhNF٭ Zk fo@DkyCy仢_6փRwphǚnou`- V:d#bVIDZ}O浐oY$MWJOѬߠ3Xۊjlaf ~Vy"FJD:BwL]Σ#EJh@!T%18xapȈ'˚_ŻԴFn/ENSRm'>\F.<6XǠm/ӆ]24{REʇMܤW0p~T Enj11ml pKrFvmӊL28SQrGKe80`]wqD@v+ :}8a~ v.|b3COsyH{"Į OzuLP_J2|wX݉k5<; e/ax-, xVH-RB:3DJ\p7i ʑQ6RYAEVLz l43GY=j( Qtrujҹu=^p($j ҟB誏's W~-pyqW+~TCv3C,'A1lRnW4,#J|=C 4$ZtZȅkHt`aw#+#&ʨ[nr>ft~-Oi(a-7aۿIg1Mɵz,j:4լKvO ̠  6a #OMe"vWk~Z/ ]Mvv K?ObG;YT`^Q`dY{5-=ͤ 1|@(H`n 8}m=MdGu0疃$d[(>zf ʘIݷyD/&Gdš~$_LBXH=O#!L&~hL`($yLchc0?lNS,pPt?n^9Vq+6BlꏙO^*:T> Аo##LmjG~->[FSظ*Ԝ3%yzF]ƅQ4fJiM8դBM]kah9I=":'[,pd9iNV#i~f=n. UM УŴ\E׈=s-5mWkʤiY *)ƸdC:N/I9f@I H&KëwEpdPYUod,^Y Bo&l8W|;{!ENUT|4 F-^-L}% Yq֓/w8d]j7CW&j]mRZ"8ý%Ok"T5:lW`' VmBB]s }t:6;V+$͇KOآ`";EEj\@H-"~CktċRjǕuGXJV(e! ]QB?[7$@ "5pV2</y͆3s'#Dg!;? p+[=) KN΋i(dK?Х{u"?Y;hHH=2 !:J(Q2+d2 i?o$@ j~'oD9VԴOK  ,4fOs0h7O8Z@%=B3˦.5ql3V%[r)Y@(Ag"0D>mV>~7-BdGVߑMɅ2} iQ&8uiIrS?Ib3ۋvM),r+xE'Jh +p\J=pru1)nrHg܇Ծ(sp޳$uz& sZӭ;t(5(TU4ʊ7:㖁fQmJsq/oH$\{=EkI;{:n\zGS-kڽMW;*f~ay2Tz<ށfeq`a:-Ve\&w:O g-@@$V֒<=w;#soTCN|9 1mV-l櫷(rh9u)|if)$߁S9"es6DpnBἧ rSP\֛ζvtgǮJ:)#ɦp4ZĮ{@3hm]>e-ERq-/ B[~aA JYEMi |i. :,4 SܢaX.azϼ5UAvd=}qХ bqſ2Ðv*c% @3Mh)Ub20 }=(ܰ v$\J^3x}mX `M]^ fpia{(+ަH?ƈ^YN3M10: cxMbA$D2:N*% N3 ]5X4 kH^g9I|VDUubkmtQwS[ ْIm\Lws058P)P cz+]k8X7L-?=ܶ:\ dmCqFTs/1/u[˳J쬤y 0 x%f%N*׫k 5V,YOqlMD9#K=R9mHM=#l]{fX7I< T d]Զa!:p!<<(@(ߌ* /Cs5(aM`_Ɓ$NZ&DN IK=[,AxG^In+gEs#Iw3~81`GYN(Qf6ۧĤ7g0W]ӷ#{麈D-5z1ٺhP{~{?)={ Q|lD`ץ5/g N [Ec$ŏCZϚnV# G/R/5 ,z4%Q@,@qfJό+ ?ĸ0{f| rc0%$I 4ȋ pQ@֖vi{ H7]lzyFW;Ax샿b$ >%:̰-o:d|s}Ȋܵ~eXjT }m.EP19D fem+=,%" ۝ qB&mё}Uc5,J{= ɯeẇ a~U7UqfiayXɁ>(lR{HB[A5Jf׍nPQJPVmD"Nɓ0NmgEPAtY酹FQL&lAG<Zv2S< Eh/Bwkp"])*Mdi<%w NA؝Tq3l[\?z2H?˺\~5wm6YVN.jYe򇺣'ǐr-8f}{"N|Gu?m#wk$-/o3l FɑM Q|Zơ+ң,Q +;w{Wdm˥fyԺ +>"ùE.7,k*Ug9䨈Į*a6[>q:0ԬW/ƜMNu@hRrNc5'DiDȗ/n^YZ+]=)/ {`#XN n"7GqvZSKywa]^-VLYvY (1-6[.IJ23]eHZvs=o77% e0KRl p;b*#.0'?n9 _"M7|}?k.#l jY$2&nW?yXԳu+!$%^ YZ