go1.21-race-1.21.0-150000.1.3.1 >  A dզp9|[M;j?3q%t' M=f{AI4iE5ժK&_KE]@tyƫ/#0PA%!J8qJڸv,\'UR)٪RdB1yԠ5f9~so.]L/=f|OmPcOh{!ڧھ~ʘ9C`q<¥)$̷zPƇoZwՂ ގ,Q9ڭdc3ae81460bcf2ca226fd18e27de5228148717ec5fb12e6ba17676aaf646cf09cf7740648b20b38b7ee23fc0b09218feb71c1b68A8dզp9|YB&z2x-}3yMxZq5.JM:iu?o(d 5w=z@Mb%sLSU# Şc;4̫BVG/2̻Ӣq 7!kPH\WՃYK T{}}9s5 m ? XX~\׈_)@!JդcK_F1L*9).4$‡yxx$G.ww;b;&̫<2Du Z6TnN>p>?d " ; *7 Mf     @T(89:FvGHIXY\]^bcd)e.f1l3uHvLzCgo1.21-race1.21.0150000.1.3.1Go runtime race detectorGo runtime race detector libraries. Install this package if you wish to use the -race option, in order to detect race conditions present in your Go programs.dyibs-arm-3SUSE Linux Enterprise 15SUSE LLC BSD-3-Clausehttps://www.suse.com/Development/Languages/Gohttps://compiler-rt.llvm.org/linuxaarch64d.69711a07d6c893c9e24fc4126cbe1642a06d670a8cfe0cf0e4cee1a2487911cdrootrootgo1.21-1.21.0-150000.1.3.1.src.rpmgo1.21-racego1.21-race(aarch-64)    go1.21rpmlib(CompressedFileNames)rpmlib(FileDigests)rpmlib(PayloadFilesHavePrefix)rpmlib(PayloadIsXz)1.21.03.0.4-14.6.0-14.0-15.2-14.14.1d.@dE@d8d@d@d@dNjkowalczyk@suse.comjkowalczyk@suse.comjkowalczyk@suse.comjkowalczyk@suse.comjkowalczyk@suse.comjkowalczyk@suse.comjkowalczyk@suse.com- go1.21 (released 2023-08-08) is a major release of Go. go1.21.x minor releases will be provided through August 2024. https://github.com/golang/go/wiki/Go-Release-Cycle go1.21 arrives six months after go1.20. Most of its 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#1212475 go1.21 release tracking * Go 1.21 introduces a small change to the numbering of releases. In the past, we used Go 1.N to refer to both the overall Go language version and release family as well as the first release in that family. Starting in Go 1.21, the first release is now Go 1.N.0. Today we are releasing both the Go 1.21 language and its initial implementation, the Go 1.21.0 release. These notes refer to "Go 1.21"; tools like go version will report "go1.21.0" (until you upgrade to Go 1.21.1). See "Go versions" in the "Go Toolchains" documentation for details about the new version numbering. * Language change: Go 1.21 adds three new built-ins to the language. * Language change: The new functions min and max compute the smallest (or largest, for max) value of a fixed number of given arguments. See the language spec for details. * Language change: The new function clear deletes all elements from a map or zeroes all elements of a slice. See the language spec for details. * Package initialization order is now specified more precisely. This may change the behavior of some programs that rely on a specific initialization ordering that was not expressed by explicit imports. The behavior of such programs was not well defined by the spec in past releases. The new rule provides an unambiguous definition. * Multiple improvements that increase the power and precision of type inference have been made. * A (possibly partially instantiated generic) function may now be called with arguments that are themselves (possibly partially instantiated) generic functions. * Type inference now also considers methods when a value is assigned to an interface: type arguments for type parameters used in method signatures may be inferred from the corresponding parameter types of matching methods. * Similarly, since a type argument must implement all the methods of its corresponding constraint, the methods of the type argument and constraint are matched which may lead to the inference of additional type arguments. * If multiple untyped constant arguments of different kinds (such as an untyped int and an untyped floating-point constant) are passed to parameters with the same (not otherwise specified) type parameter type, instead of an error, now type inference determines the type using the same approach as an operator with untyped constant operands. This change brings the types inferred from untyped constant arguments in line with the types of constant expressions. * Type inference is now precise when matching corresponding types in assignments * The description of type inference in the language spec has been clarified. * Go 1.21 includes a preview of a language change we are considering for a future version of Go: making for loop variables per-iteration instead of per-loop, to avoid accidental sharing bugs. For details about how to try that language change, see the LoopvarExperiment wiki page. * Go 1.21 now defines that if a goroutine is panicking and recover was called directly by a deferred function, the return value of recover is guaranteed not to be nil. To ensure this, calling panic with a nil interface value (or an untyped nil) causes a run-time panic of type *runtime.PanicNilError. To support programs written for older versions of Go, nil panics can be re-enabled by setting GODEBUG=panicnil=1. This setting is enabled automatically when compiling a program whose main package is in a module with that declares go 1.20 or earlier. * Go 1.21 adds improved support for backwards compatibility and forwards compatibility in the Go toolchain. * To improve backwards compatibility, Go 1.21 formalizes Go's use of the GODEBUG environment variable to control the default behavior for changes that are non-breaking according to the compatibility policy but nonetheless may cause existing programs to break. (For example, programs that depend on buggy behavior may break when a bug is fixed, but bug fixes are not considered breaking changes.) When Go must make this kind of behavior change, it now chooses between the old and new behavior based on the go line in the workspace's go.work file or else the main module's go.mod file. Upgrading to a new Go toolchain but leaving the go line set to its original (older) Go version preserves the behavior of the older toolchain. With this compatibility support, the latest Go toolchain should always be the best, most secure, implementation of an older version of Go. See "Go, Backwards Compatibility, and GODEBUG" for details. * To improve forwards compatibility, Go 1.21 now reads the go line in a go.work or go.mod file as a strict minimum requirement: go 1.21.0 means that the workspace or module cannot be used with Go 1.20 or with Go 1.21rc1. This allows projects that depend on fixes made in later versions of Go to ensure that they are not used with earlier versions. It also gives better error reporting for projects that make use of new Go features: when the problem is that a newer Go version is needed, that problem is reported clearly, instead of attempting to build the code and instead printing errors about unresolved imports or syntax errors. * To make these new stricter version requirements easier to manage, the go command can now invoke not just the toolchain bundled in its own release but also other Go toolchain versions found in the PATH or downloaded on demand. If a go.mod or go.work go line declares a minimum requirement on a newer version of Go, the go command will find and run that version automatically. The new toolchain directive sets a suggested minimum toolchain to use, which may be newer than the strict go minimum. See "Go Toolchains" for details. * go command: The -pgo build flag now defaults to -pgo=auto, and the restriction of specifying a single main package on the command line is now removed. If a file named default.pgo is present in the main package's directory, the go command will use it to enable profile-guided optimization for building the corresponding program. * go command: The -C dir flag must now be the first flag on the command-line when used. * go command: The new go test option -fullpath prints full path names in test log messages, rather than just base names. * go command: The go test -c flag now supports writing test binaries for multiple packages, each to pkg.test where pkg is the package name. It is an error if more than one test package being compiled has a given package name.] * go command: The go test -o flag now accepts a directory argument, in which case test binaries are written to that directory instead of the current directory. * cgo: In files that import "C", the Go toolchain now correctly reports errors for attempts to declare Go methods on C types. * runtime: When printing very deep stacks, the runtime now prints the first 50 (innermost) frames followed by the bottom 50 (outermost) frames, rather than just printing the first 100 frames. This makes it easier to see how deeply recursive stacks started, and is especially valuable for debugging stack overflows. * runtime: On Linux platforms that support transparent huge pages, the Go runtime now manages which parts of the heap may be backed by huge pages more explicitly. This leads to better utilization of memory: small heaps should see less memory used (up to 50% in pathological cases) while large heaps should see fewer broken huge pages for dense parts of the heap, improving CPU usage and latency by up to 1%. * runtime: As a result of runtime-internal garbage collection tuning, applications may see up to a 40% reduction in application tail latency and a small decrease in memory use. Some applications may also observe a small loss in throughput. The memory use decrease should be proportional to the loss in throughput, such that the previous release's throughput/memory tradeoff may be recovered (with little change to latency) by increasing GOGC and/or GOMEMLIMIT slightly. * runtime: Calls from C to Go on threads created in C require some setup to prepare for Go execution. On Unix platforms, this setup is now preserved across multiple calls from the same thread. This significantly reduces the overhead of subsequent C to Go calls from ~1-3 microseconds per call to ~100-200 nanoseconds per call. * compiler: Profile-guide optimization (PGO), added as a preview in Go 1.20, is now ready for general use. PGO enables additional optimizations on code identified as hot by profiles of production workloads. As mentioned in the Go command section, PGO is enabled by default for binaries that contain a default.pgo profile in the main package directory. Performance improvements vary depending on application behavior, with most programs from a representative set of Go programs seeing between 2 and 7% improvement from enabling PGO. See the PGO user guide for detailed documentation. * compiler: PGO builds can now devirtualize some interface method calls, adding a concrete call to the most common callee. This enables further optimization, such as inlining the callee. * compiler: Go 1.21 improves build speed by up to 6%, largely thanks to building the compiler itself with PGO. * assembler: On amd64, frameless nosplit assembly functions are no longer automatically marked as NOFRAME. Instead, the NOFRAME attribute must be explicitly specified if desired, which is already the behavior on other architectures supporting frame pointers. With this, the runtime now maintains the frame pointers for stack transitions. * assembler: The verifier that checks for incorrect uses of R15 when dynamic linking on amd64 has been improved. * linker: On windows/amd64, the linker (with help from the compiler) now emits SEH unwinding data by default, which improves the integration of Go applications with Windows debuggers and other tools. * linker: In Go 1.21 the linker (with help from the compiler) is now capable of deleting dead (unreferenced) global map variables, if the number of entries in the variable initializer is sufficiently large, and if the initializer expressions are side-effect free. * core library: The new log/slog package provides structured logging with levels. Structured logging emits key-value pairs to enable fast, accurate processing of large amounts of log data. The package supports integration with popular log analysis tools and services. * core library: The new testing/slogtest package can help to validate slog.Handler implementations. * core library: The new slices package provides many common operations on slices, using generic functions that work with slices of any element type. * core library: The new maps package provides several common operations on maps, using generic functions that work with maps of any key or element type. * core library: The new cmp package defines the type constraint Ordered and two new generic functions Less and Compare that are useful with ordered types. * Minor changes to the library: As always, there are various minor changes and updates to the library, made with the Go 1 promise of compatibility in mind. There are also various performance improvements, not enumerated here. * archive/tar: The implementation of the io/fs.FileInfo interface returned by Header.FileInfo now implements a String method that calls io/fs.FormatFileInfo. * archive/zip: The implementation of the io/fs.FileInfo interface returned by FileHeader.FileInfo now implements a String method that calls io/fs.FormatFileInfo. * archive/zip: The implementation of the io/fs.DirEntry interface returned by the io/fs.ReadDirFile.ReadDir method of the io/fs.File returned by Reader.Open now implements a String method that calls io/fs.FormatDirEntry. * bytes: The Buffer type has two new methods: Available and AvailableBuffer. These may be used along with the Write method to append directly to the Buffer. * context: The new WithoutCancel function returns a copy of a context that is not canceled when the original context is canceled. * context: The new WithDeadlineCause and WithTimeoutCause functions provide a way to set a context cancellation cause when a deadline or timer expires. The cause may be retrieved with the Cause function. * context: The new AfterFunc function registers a function to run after a context has been cancelled. * context: An optimization means that the results of calling Background and TODO and converting them to a shared type can be considered equal. In previous releases they were always different. Comparing Context values for equality has never been well-defined, so this is not considered to be an incompatible change. * crypto/ecdsa: PublicKey.Equal and PrivateKey.Equal now execute in constant time. * crypto/elliptic: All of the Curve methods have been deprecated, along with GenerateKey, Marshal, and Unmarshal. For ECDH operations, the new crypto/ecdh package should be used instead. For lower-level operations, use third-party modules such as filippo.io/nistec. * crypto/rand: The crypto/rand package now uses the getrandom system call on NetBSD 10.0 and later. * crypto/rsa: The performance of private RSA operations (decryption and signing) is now better than Go 1.19 for GOARCH=amd64 and GOARCH=arm64. It had regressed in Go 1.20. * crypto/rsa: Due to the addition of private fields to PrecomputedValues, PrivateKey.Precompute must be called for optimal performance even if deserializing (for example from JSON) a previously-precomputed private key. * crypto/rsa: PublicKey.Equal and PrivateKey.Equal now execute in constant time. * crypto/rsa: The GenerateMultiPrimeKey function and the PrecomputedValues.CRTValues field have been deprecated. PrecomputedValues.CRTValues will still be populated when PrivateKey.Precompute is called, but the values will not be used during decryption operations. * crypto/sha256: SHA-224 and SHA-256 operations now use native instructions when available when GOARCH=amd64, providing a performance improvement on the order of 3-4x. * crypto/tls: Servers now skip verifying client certificates (including not running Config.VerifyPeerCertificate) for resumed connections, besides checking the expiration time. This makes session tickets larger when client certificates are in use. Clients were already skipping verification on resumption, but now check the expiration time even if Config.InsecureSkipVerify is set. * crypto/tls: Applications can now control the content of session tickets. * crypto/tls: The new SessionState type describes a resumable session. * crypto/tls: The SessionState.Bytes method and ParseSessionState function serialize and deserialize a SessionState. * crypto/tls: The Config.WrapSession and Config.UnwrapSession hooks convert a SessionState to and from a ticket on the server side. * crypto/tls: The Config.EncryptTicket and Config.DecryptTicket methods provide a default implementation of WrapSession and UnwrapSession. * crypto/tls: The ClientSessionState.ResumptionState method and NewResumptionState function may be used by a ClientSessionCache implementation to store and resume sessions on the client side. * crypto/tls: To reduce the potential for session tickets to be used as a tracking mechanism across connections, the server now issues new tickets on every resumption (if they are supported and not disabled) and tickets don't bear an identifier for the key that encrypted them anymore. If passing a large number of keys to Conn.SetSessionTicketKeys, this might lead to a noticeable performance cost. * crypto/tls: Both clients and servers now implement the Extended Master Secret extension (RFC 7627). The deprecation of ConnectionState.TLSUnique has been reverted, and is now set for resumed connections that support Extended Master Secret. * crypto/tls: The new QUICConn type provides support for QUIC implementations, including 0-RTT support. Note that this is not itself a QUIC implementation, and 0-RTT is still not supported in TLS. * crypto/tls: The new VersionName function returns the name for a TLS version number. * crypto/tls: The TLS alert codes sent from the server for client authentication failures have been improved. Previously, these failures always resulted in a "bad certificate" alert. Now, certain failures will result in more appropriate alert codes, as defined by RFC 5246 and RFC 8446: * crypto/tls: For TLS 1.3 connections, if the server is configured to require client authentication using RequireAnyClientCert or RequireAndVerifyClientCert, and the client does not provide any certificate, the server will now return the "certificate required" alert. * crypto/tls: If the client provides a certificate that is not signed by the set of trusted certificate authorities configured on the server, the server will return the "unknown certificate authority" alert. * crypto/tls: If the client provides a certificate that is either expired or not yet valid, the server will return the "expired certificate" alert. * crypto/tls: In all other scenarios related to client authentication failures, the server still returns "bad certificate". * crypto/x509: RevocationList.RevokedCertificates has been deprecated and replaced with the new RevokedCertificateEntries field, which is a slice of RevocationListEntry. RevocationListEntry contains all of the fields in pkix.RevokedCertificate, as well as the revocation reason code. * crypto/x509: Name constraints are now correctly enforced on non-leaf certificates, and not on the certificates where they are expressed. * debug/elf: The new File.DynValue method may be used to retrieve the numeric values listed with a given dynamic tag. * debug/elf: The constant flags permitted in a DT_FLAGS_1 dynamic tag are now defined with type DynFlag1. These tags have names starting with DF_1. * debug/elf: The package now defines the constant COMPRESS_ZSTD. * debug/elf: The package now defines the constant R_PPC64_REL24_P9NOTOC. * debug/pe: Attempts to read from a section containing uninitialized data using Section.Data or the reader returned by Section.Open now return an error. * embed: The io/fs.File returned by FS.Open now has a ReadAt method that implements io.ReaderAt. * embed: Calling FS.Open.Stat will return a type that now implements a String method that calls io/fs.FormatFileInfo. * errors: The new ErrUnsupported error provides a standardized way to indicate that a requested operation may not be performed because it is unsupported. For example, a call to os.Link when using a file system that does not support hard links. * flag: The new BoolFunc function and FlagSet.BoolFunc method define a flag that does not require an argument and calls a function when the flag is used. This is similar to Func but for a boolean flag. * flag: A flag definition (via Bool, BoolVar, Int, IntVar, etc.) will panic if Set has already been called on a flag with the same name. This change is intended to detect cases where changes in initialization order cause flag operations to occur in a different order than expected. In many cases the fix to this problem is to introduce a explicit package dependence to correctly order the definition before any Set operations. * go/ast: The new IsGenerated predicate reports whether a file syntax tree contains the special comment that conventionally indicates that the file was generated by a tool. * go/ast: The new File.GoVersion field records the minimum Go version required by any //go:build or // +build directives. * go/build: The package now parses build directives (comments that start with //go:) in file headers (before the package declaration). These directives are available in the new Package fields Directives, TestDirectives, and XTestDirectives. * go/build/constraint: The new GoVersion function returns the minimum Go version implied by a build expression. * go/token: The new File.Lines method returns the file's line-number table in the same form as accepted by File.SetLines. * go/types: The new Package.GoVersion method returns the Go language version used to check the package. * hash/maphash: The hash/maphash package now has a pure Go implementation, selectable with the purego build tag. * html/template: The new error ErrJSTemplate is returned when an action appears in a JavaScript template literal. Previously an unexported error was returned. * io/fs: The new FormatFileInfo function returns a formatted version of a FileInfo. The new FormatDirEntry function returns a formatted version of a DirEntry. The implementation of DirEntry returned by ReadDir now implements a String method that calls FormatDirEntry, and the same is true for the DirEntry value passed to WalkDirFunc. * math/big: The new Int.Float64 method returns the nearest floating-point value to a multi-precision integer, along with an indication of any rounding that occurred. * net: On Linux, the net package can now use Multipath TCP when the kernel supports it. It is not used by default. To use Multipath TCP when available on a client, call the Dialer.SetMultipathTCP method before calling the Dialer.Dial or Dialer.DialContext methods. To use Multipath TCP when available on a server, call the ListenConfig.SetMultipathTCP method before calling the ListenConfig.Listen method. Specify the network as "tcp" or "tcp4" or "tcp6" as usual. If Multipath TCP is not supported by the kernel or the remote host, the connection will silently fall back to TCP. To test whether a particular connection is using Multipath TCP, use the TCPConn.MultipathTCP method. * net: In a future Go release we may enable Multipath TCP by default on systems that support it. * net/http: The new ResponseController.EnableFullDuplex method allows server handlers to concurrently read from an HTTP/1 request body while writing the response. Normally, the HTTP/1 server automatically consumes any remaining request body before starting to write the response, to avoid deadlocking clients which attempt to write a complete request before reading the response. The EnableFullDuplex method disables this behavior. * net/http: The new ErrSchemeMismatch error is returned by Client and Transport when the server responds to an HTTPS request with an HTTP response. * net/http: The net/http package now supports errors.ErrUnsupported, in that the expression errors.Is(http.ErrNotSupported, errors.ErrUnsupported) will return true. * os: Programs may now pass an empty time.Time value to the Chtimes function to leave either the access time or the modification time unchanged. * os: On Windows the File.Chdir method now changes the current directory to the file, rather than always returning an error. * os: On Unix systems, if a non-blocking descriptor is passed to NewFile, calling the File.Fd method will now return a non-blocking descriptor. Previously the descriptor was converted to blocking mode. * os: On Windows calling Truncate on a non-existent file used to create an empty file. It now returns an error indicating that the file does not exist. * os: On Windows calling TempDir now uses GetTempPath2W when available, instead of GetTempPathW. The new behavior is a security hardening measure that prevents temporary files created by processes running as SYSTEM to be accessed by non-SYSTEM processes. * os: On Windows the os package now supports working with files whose names, stored as UTF-16, can't be represented as valid UTF-8. * os: On Windows Lstat now resolves symbolic links for paths ending with a path separator, consistent with its behavior on POSIX platforms. * os: The implementation of the io/fs.DirEntry interface returned by the ReadDir function and the File.ReadDir method now implements a String method that calls io/fs.FormatDirEntry. * os: The implementation of the io/fs.FS interface returned by the DirFS function now implements the io/fs.ReadFileFS and the io/fs.ReadDirFS interfaces. * path/filepath: The implementation of the io/fs.DirEntry interface passed to the function argument of WalkDir now implements a String method that calls io/fs.FormatDirEntry. * reflect: In Go 1.21, ValueOf no longer forces its argument to be allocated on the heap, allowing a Value's content to be allocated on the stack. Most operations on a Value also allow the underlying value to be stack allocated. * reflect: The new Value method Value.Clear clears the contents of a map or zeros the contents of a slice. This corresponds to the new clear built-in added to the language. * reflect: The SliceHeader and StringHeader types are now deprecated. In new code prefer unsafe.Slice, unsafe.SliceData, unsafe.String, or unsafe.StringData. * regexp: Regexp now defines MarshalText and UnmarshalText methods. These implement encoding.TextMarshaler and encoding.TextUnmarshaler and will be used by packages such as encoding/json. * runtime: Textual stack traces produced by Go programs, such as those produced when crashing, calling runtime.Stack, or collecting a goroutine profile with debug=2, now include the IDs of the goroutines that created each goroutine in the stack trace. * runtime: Crashing Go applications can now opt-in to Windows Error Reporting (WER) by setting the environment variable GOTRACEBACK=wer or calling debug.SetTraceback("wer") before the crash. Other than enabling WER, the runtime will behave as with GOTRACEBACK=crash. On non-Windows systems, GOTRACEBACK=wer is ignored. * runtime: GODEBUG=cgocheck=2, a thorough checker of cgo pointer passing rules, is no longer available as a debug option. Instead, it is available as an experiment using GOEXPERIMENT=cgocheck2. In particular this means that this mode has to be selected at build time instead of startup time. * runtime: GODEBUG=cgocheck=1 is still available (and is still the default). * runtime: A new type Pinner has been added to the runtime package. Pinners may be used to "pin" Go memory such that it may be used more freely by non-Go code. For instance, passing Go values that reference pinned Go memory to C code is now allowed. Previously, passing any such nested reference was disallowed by the cgo pointer passing rules. See the docs for more details. * runtime/metrics: A few previously-internal GC metrics, such as live heap size, are now available. GOGC and GOMEMLIMIT are also now available as metrics. * runtime/trace: Collecting traces on amd64 and arm64 now incurs a substantially smaller CPU cost: up to a 10x improvement over the previous release. * runtime/trace: Traces now contain explicit stop-the-world events for every reason the Go runtime might stop-the-world, not just garbage collection. * sync: The new OnceFunc, OnceValue, and OnceValues functions capture a common use of Once to lazily initialize a value on first use. * syscall: On Windows the Fchdir function now changes the current directory to its argument, rather than always returning an error. * syscall: On FreeBSD SysProcAttr has a new field Jail that may be used to put the newly created process in a jailed environment. * syscall: On Windows the syscall package now supports working with files whose names, stored as UTF-16, can't be represented as valid UTF-8. The UTF16ToString and UTF16FromString functions now convert between UTF-16 data and WTF-8 strings. This is backward compatible as WTF-8 is a superset of the UTF-8 format that was used in earlier releases. * syscall: Several error values match the new errors.ErrUnsupported, such that errors.Is(err, errors.ErrUnsupported) returns true. ENOSYS ENOTSUP EOPNOTSUPP EPLAN9 (Plan 9 only) ERROR_CALL_NOT_IMPLEMENTED (Windows only) ERROR_NOT_SUPPORTED (Windows only) EWINDOWS (Windows only) * testing: The new -test.fullpath option will print full path names in test log messages, rather than just base names. * testing: The new Testing function reports whether the program is a test created by go test. * testing/fstest: Calling Open.Stat will return a type that now implements a String method that calls io/fs.FormatFileInfo. * unicode: The unicode package and associated support throughout the system has been upgraded to Unicode 15.0.0. * Darwin port: As announced in the Go 1.20 release notes, Go 1.21 requires macOS 10.15 Catalina or later; support for previous versions has been discontinued. * Windows port: As announced in the Go 1.20 release notes, Go 1.21 requires at least Windows 10 or Windows Server 2016; support for previous versions has been discontinued. * WebAssembly port: The new go:wasmimport directive can now be used in Go programs to import functions from the WebAssembly host. * WebAssembly port: The Go scheduler now interacts much more efficiently with the JavaScript event loop, especially in applications that block frequently on asynchronous events. * WebAssembly System Interface port: Go 1.21 adds an experimental port to the WebAssembly System Interface (WASI), Preview 1 (GOOS=wasip1, GOARCH=wasm). * WebAssembly System Interface port: As a result of the addition of the new GOOS value "wasip1", Go files named *_wasip1.go will now be ignored by Go tools except when that GOOS value is being used. If you have existing filenames matching that pattern, you will need to rename them. * ppc64/ppc64le port: On Linux, GOPPC64=power10 now generates PC-relative instructions, prefixed instructions, and other new Power10 instructions. On AIX, GOPPC64=power10 generates Power10 instructions, but does not generate PC-relative instructions. * ppc64/ppc64le port: When building position-independent binaries for GOPPC64=power10 GOOS=linux GOARCH=ppc64le, users can expect reduced binary sizes in most cases, in some cases 3.5%. Position-independent binaries are built for ppc64le with the following -buildmode values: c-archive, c-shared, shared, pie, plugin. * loong64 port: The linux/loong64 port now supports - buildmode=c-archive, -buildmode=c-shared and -buildmode=pie.- go1.21rc4 (released 2023-08-02) is a release candidate version of go1.21 cut from the master branch at the revision tagged go1.21rc4. Refs boo#1212475 go1.21 release tracking- go1.21rc3 (released 2023-07-14) is a release candidate version of go1.21 cut from the master branch at the revision tagged go1.21rc3. Refs boo#1212475 go1.21 release tracking- go1.21+ change default GOTOOLCHAIN=auto to local to prevent go tool commands from downloading upstream go1.x toolchain binaries Refs boo#1212669 * go1.21+ introduce new default behavior that can download additional versions of go1.x toolchain binaries built by upstream. See https://go.dev/doc/toolchain for details. The go tool would attempt toolchain downloads as needed to satisfy a minimum go version specified in go.mod of the program containing main() or any of its dependencies. * Builds in OBS can not access the network, download attempts would fail. * Builds in OBS should not use third party binary toolchains. * When GOTOOLCHAIN is set to local, the go command always runs the bundled Go toolchain. * Users can override the default GOTOOLCHAIN setting with go env -w, stored in in ~/.config/go/env.- Add missing go.env to package. go.env sets defaults including: GOPROXY GOSUMDB GOTOOLCHAIN Refs boo#1212667 * Starting in go1.21+ a missing go.env defaults to GOPROXY='' resulting in errors e.g. with online cmds e.g. go mod download: "GOPROXY list is not the empty string, but contains no entries" It is not clear why GOPROXY='' is not evaluated as "the empty string".- go1.21rc2 (released 2023-06-21) is a release candidate version of go1.21 cut from the master branch at the revision tagged go1.21rc2. https://go.dev/blog/go1.21rc Refs boo#1212475 go1.21 release tracking- go1.21rc1 (released 2023-06-16) is a release candidate version of go1.21 cut from the master branch at the revision tagged go1.21rc1. Refs boo#1212475 go1.21 release trackingibs-arm-3 16917351611.21.0-150000.1.3.11.21.0-150000.1.3.1race_linux_arm64.syso/usr/share/go/1.21/src/runtime/race/-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:30209/SUSE_SLE-15_Update/9d7067dc7559a97a2cfbf2284cebc676-go1.21.SUSE_SLE-15_Updatecpioxz5aarch64-suse-linuxELF 64-bit LSB relocatable, ARM aarch64, version 1 (SYSV), not strippedUn[Ba| ɉgo1.211.21.0utf-8ab650ee119f521d28d50259de9f7fdcf89d45aa60fc41231a5ae9cdd6e79c353? 7zXZ !t/S] crv(vX0:3)l:@NEWRxGϚ*ǪN 'R]OS fu:6!K*ٓ 4̥ Ju#8Wq,L&PQCl8rR (MJQFԩ!k>&bk$C}]**qX*VkV#ūEͅBrmT7_^h٠>j䑯!s .^ 8K^8-tC/tŎ?v,S2L.,w*;NNٝSN{sE ›DsFJ):3ԴH3A[k|ȤޅN!3 ^w- !6Ĵ:ڸ{Y:YOT TW\L+:~vx~~T/$|)>|֡8qDلZbКvLT]S=ba<v|Nک`тH0gI㨹7'-Rb*Ԍ!Q0/U ulk=dEIbثbʉ+zTmIn acn3Y݅0kP*"eq0ߔBϙ# \FZvǯt&ܦW..} w9LA7+=qh6.&G#Q+_~h׉b7I>A0'd0C >L|_R}Xglfɦ#$`jEb <v=:,?];{?5dr#H$USeFW: ށs"o:AV6Ut6x9_m *_<΄vNU/6>f4Iu`=8M ::w041۝2 Dcm=ÆڙIt klf$v~DJ .z\h8 *h5m'+L+D:s~qqKtpȬC,Nemm?j|YAAЗ;w[JjjY-\=qH9"{cxjz.V+.l@hwqޘ\1$ڕ`k 5HVҳ<ok?y%S[l~ӽ⽾y_ԍ ;/Kf^5ffe ?&<+Cr}q>gznP͓zx4+ZhiAj@êz^a}DHK0dUGgϠ`:e|1|S3q_;hݏ 盁w Όy@8KAݽ}D$I[TBrC$8\wWTpoD'Ve%8;~oYWUEW2EH@tqካ]p)18}}4nJġw+:}T2ɀ!y&f:q2v8}[ E7WR_;IHJloU/.n<*7zP@q@4]anH2սs85r0QoRQ|H rI/ODѾ:5剨> &+hmoU;#Y`}kHvvfȾ>ֈ/jA-DǺJ;EH 0k_ WCf{'H37KZ )VzI宅gmbXE|Swk;/d~mCv2KD% X *| ΢Вf4B$OI _}$CIP%mۡ{/afWv}y 8B'$!T^\{q4{cn)^7T4ɗ4)$1B^ѭκO@ |#KjCJGC箁1h!}wv=ɹ(f\^I_~1ypA@8C;:iĸNXb--dsR6 M=;] +c.eSZqػ8[lq؆>4|n((@uPSIe*~gLʑz,Sس!drΖ ovEJ^3m8)jC:¦̞!53n-(dMoN̊ t_ $^Vċmh Aڒj@O5g{a٬":ZIq Se1iM1cqJt:щUz&!˾.[8gtr %:73# eWp9#~e9S2ڕ !Vdx(PTFo>|X.k֮߫U ڹuPKڡ޴ 2PR#Goَ) *`/@YAm97IӨBmPAKoOjuzֹE,:oW51)rlqū ζRfZSpܢ&/zz'"ѷ|`-LlFԯF ]WS(;z3vZt?Z${nO(O60P-Ve9P 7ޡ ET S9jt x.hX|U=|}(%?ꙫ`n6 <.j]~arPhBFNVXR-2ߓ)%5ZLɮ+B S& N㛯Ȭ}}:F)jͨ?臄p熚+p4+ozB()pJp&~@Wt- v6 f>%Akam0Q%TW#`E ߖujGK)T9n20 O)WJcw#(|O*Fs|O6\U)\HڊuX?4 GԽf~ԽC/`2aS:L !P$s+Uex6ގUVЃ,&g_Z#OY,d(ec\P`jo ~nE{K9ZwD_!=-Ƹ!CjљٴAtfה1AhGcJ eŕlXzO&-1鋈(M au$PH8#CbC Lqp.(M ?q.i#49idU#V'f+jPnnr1$_NDvW |X2ןVL Ы0Hyǟb}$b/{^:hd._@^y׼-G>4w=:e춽M!6K w"Tk;y@dX_cneг.#ZkqPv{/Mc7Z56mIxwݩ(ql}.Axns@p&^WYif%o]PWgtcF^`T|ML5Zym/te;;GHڜΛ f\W&cEU⏊/ m2bNI]F#ß$)z>{¬6@ڶȕBY@w!K1J!r6L`9su's֛-fvaUIJZFRN`ٝP>Q ];7b=_!|R:8T=Jfjٽ sTxR^ݚ:1CmugM-|bʽv ka žR(*ź]^ȕ7pp}eOuc?a ƜlVҩD-vAkr7_t-0f!+rgyo(#=N5;o2Ue/6{- ++w0&Dd t PH?!06*vi@V .$…x I]f7@e! ?CQ,&CXOFKq0< q'rdf\N?+gXz`x:5Thzgr2Lh!}(iyNp)x>El(5 M?\Ÿ@ }0(An)ռ<8\̜?"lk`䟅?:/A'4)Xܯ2MV#e 傅WO;eϥ };s̼)L3*UcLDI-ҫ@R *&uճ:7ؽoZUV"j<穯+Vpږ x(`ts n2) )鰦XV ۗÙFZ"`7NmyaeMY!ajG\nn}C ,54Ej8$!jRvwZB}t^g;`!^M<9ohB5[jw=S CYte[jc_?ކ%e#WjvK?2h8]fNx0t{Ek 8AL:]_^{4*1"!ZqXWac#P"5ҳq/Z틬ġz0^9sfVe!{ef6!M-t1J$l E9D%ɶvNpRA17/^0G|?tC +2ř8Ec HOq ?s$dC~ǚ+$A1  uuKs-ȌzNƀȞ_G*PS`: ڕzf VԄP8v:FQQµ/#8mvޕ5R$M7Lڔ1BߧSjl!\>mM7Z.}S74=V5>?7lkE./}omneUb2WY:F>jwHD407xRTKhWLdu/:R\&;nJeM,&ln*M? |\EoooNF(qȯݓRXK8.]bFբm?Z[1th *\$&+S0x ࡍsrf. 8u)cY6~C$Fk]9V[( 4o^Q:K@KZ5aGehYA~\ ÿi/Ԡ ytӫ6=8wB8diϪ5A gC4 h[W~DYغ6HTʝEZ-ڀWjtZ+* UgfTL+ˁ> %&uOi>ƒL6Y(wL.wm䘦|D~Ѝi]; VR^ڗz hfM' .H^Bܼ F^6 T1_CΟ*og}j'/_&9BQ2 :#+g9]Dl]OUC],jB[[pZI E^bBx4mzi-,g/ZҞ-{\ѦM۬ 4Y0[+@EڿW3j/ǽ' /-6Ѵ V>>x<${xzp΍Œ9dl4&D1cI7#ZKZM")(HS zEzNԗQt ަ]}M/FW]V%]׽\%!kf7Hg5jqx*Mm`nT?JmxN,G~,d鎕mU^r)?Qi$kXdMKoUR7yDgՔM)h'Iߓs;Fށt3|--9;fzIiK.z#@!Sb>4 vS fFX6kp $ K7͙02L-"zvuX%doI&z7(6we_Ln5ZRMy&Jv]gsצv+.yđR)"ࢠ$elyE˅}]B[ZUs.4X\h^ Oi5ͺ1Ocy! dWT=iRsu\` #[DM+mWop?ͽ1ܛGnZx`.Վ׌iϴTKhs-w9vED\(-o^v765YΞu˺ *ݣDéBqO;0o=ھ@]Hfv $+TU ~سI LE%C9gCZr_l0WƊ/W œgbuE&=pH~=8HEFF"$K?( r.\T҆"9CDx0YV35:>SF=desI8/nHgj6G9!XH3d/&K|j Z>hv5uq#m) b^LB-3FIbde3jJ]pl#:pybT49HvΪ9zRqqF$$-lEa]GD!N]=)~߷reN CD_KLmzkARe蘔Uq S $e^*3WYM^ް ,3!/=CfmRPQ)EŴ;E~@<3-"m(1xnsq!oWF%I=݌-\tXX÷#Laeo\?"j)VefaQ 2󽪕1K#8E`2UuYsQcvQ[f\5AjS%ic}idO)KS!⌑]9f?lXq5i~}] W-@_kzݎL0o9_C,KLV%I;t̍"dxN._o3TQuyzjmxd&d6q%U Qxcoʕ%r$#i6׮H!= Jmqve|tfuJ~.RRˢss ҧxoWkoo̗,CMV7¬?ب.c_P]M 7y֗̈acR!E9 2R'ŗ{.·p`=zT?l _=^ Qםq"DoVK@Zr¸2ny$>o}h-)<3TyZő[E?>27˹H+ iS3ȐW05 BdesprvRj{=z \?[-;r7A1Ytw-*P -H|nlSm{E'>!9] _ll6bfY,vFt-}]kpGhºS}* QS~՞\ 9Rԭf >iN F'QkTpԙ, bޕr ņă4i*}4reIz>2Itw%/TF9T.kw#y%lnXFrت{5Lˉf xו-\p O6xZhbCBp\l6:K: X)kk0M) < .j+A:G<*&k> O8Kgz=Z[[TPe^(3K-lbRϨi!Xk!TEm;2#rzȖh"yO;12}Us[ChF/ƧsF#Iw ێnBЇa6ӕkEm'mvX ϬyR v!>+OUlJh%0c)PzKg!PQJ*,}J"Oo.O bO0maw:F XęƷO`~(D{ӬN;Lׇ.FWG-[ SCd @ whGhQ iM{]-Vq*ٟkD5.#cK ܎|QߗT7u^UP'bLH^o*ـ]v2=( XjeLpOH3(.[;F&>9b V5juG*Aup}ʸ_ja31otIqI+Fb|%-a2WkE1}HqP,d\b,m8=6+,eŊ@d4J-9# "})bṂyV (ﷆ"XIXص($mCyB+ƁV|g 9`p#_~%:I&p֡S#rv@e }Dj4:p.1m[y6(A[G2&Sc/"?oQ k!1;?*R2RaJmD ~p55@s9+|ڤ󝇲 \U̖bH%.{Q$ ڞM| xۓ4B5JgA?=CV%w |H'JrkűURm\ 2uS"&k',2oƤVp4z趔 l6!s:X0¯>e|2RwCv%-0;DZEF"|?~|v5f5̔XƬw>] Xe V5o `@/~;XclUkcZ2rT{0WM©C&|:> }2UӬ?-oC:& }7̉tW7jg :Q@Oh\2'ǰnYdG=lW ~Jc:iO2?ȸElDFlv/'m|)$TMxir-*e{3Jџk{R3"+K 3֖P֛ $UiV@2ip;k^tFgksX#`TdjAvU<(~b0q[P=@++0B6LqX[iY{R^;}> B$~r#} ϋ0LH^7ml1rC3 J‰g(.Op9z1$m@/#,He-x}xޭ ^J:u G~uD'oGPgO˔g*'WNV ZcQq{ nTBBS oG0ȅ ['tϸ°?Iڑ: _2hQ)kg@̪gAhyͯ:* *x|K+c(*t3;h\t] 3{[uR3!g Ӎ#Msӯc+/f[-XCxeKIPSpqxNce׋"=xdv 1-I[=HxåMٯ/W('(:2Od%'XѨ3ph˖pN\ ub9E8T+/՘ Q<æ"58ş<\]`_kɗlCJFPPUmNFgnF{ǯZYi5eu!5Ba>dd'3i{H h/z̐ĕ&,Rc;}i8d@jv@nO$NFTR`Fdh'yF濲 Hwylq0&8Ejp9,dXl^__\<]Nj¿YϪu-clo$tLޘ^7*7Y8,#N'ŵ@t߄+T+Û&aT92jQp!R|o[J68~y.٘ΆWBrr!!e3FQV\*_M[s\0Ry-KҒr*7Mz,r𳐲9@n2pt-~u-st83a2w"?F*ض 26OsdȱZbl\#oc5֚Sn5fP7 ~cw+C ޥ*)?>ˮ3.djzL5Gle h=jENs~~Љ:b}USU$;4E$w$mNa 0R<'Qk`&-bhs2V#̫o 8g"D2گc[lU=m&"paJN[OnI.etv$++.lV»Bq!XW$`)2[ؖXnciYQo S{9A5Td -_RMiA-gR>6( ;XpT kӶZ}ҘyzS tW6*fA2ߥ ʅ'X&pG`q 2C4CBZFђxkRp?NS PV( ~uVW9Q~p`d.Bi9 9Gl$(i|en(EtDtnL@é~-,q]?\v>eƑKo|?}qF>IS κEYMVհMޝa{ 7aq6Rto%1 |Kjٞ-z@!2h`=#zi%@شaUJҕc25p.p.h-zXiW{BCQ[BXuRW^ak? ƽҾN"H r6\0zL?*m샅ii©5]ӎθ|4x͂.{y+$Ga񬐶eO&uMf?6_~4= Nd?^wd _mOwvtOARDڑ[c#?j2ZABW#%]CWlK/Q_1 ($GϱHAl[Ĕ Tufgvڀ"-'bdvD 텣 ilªZ˦>GPMZsJj)d$̝hxȢq꾕.j^LɷԳ*nR&ALJ11WrO%xVvA׆;:r+݂&Jj+ep maz-92)*a205ܥ #A 7=3t %ce% =^Ӻ121nLȫ Gt蟡gD$4] $HO'l.XԿ 85ڌ甩т2Mޔ BwW W6:P)SƇsyᗳo[g׶}y6> 4"0Ϣ%_uJF/~o8sn9. .vmo2LZp׈& Z F zmT(QZȌlVexjm]*r:L GG$Aފ圽رrR:5)zy=C Ғ6`qUN @OyWf@;@d HAdc;)>ЂC0B"GOO~xMȳ^:Jj*+%{L~Xudob*a_0mo$b {z,xJ XH)ɅFZcwҾ*f4:Sܙ5VMS`YiF~c?cVȾ(P=jWiMS͋hz%*Ϙ}2.% R^j2Gl:HdRwż9v|IDF(U߻)_1G5nvegͨ#rBV,~4>uʺ- O^l Ի궎*mM{`Ɨ1È^ MOVd1$ዮ_],%L&/c XUI㆚h?k_Z5NK.ώE e>\'1DLX+3bHo}W ;gܡSd..uۉE` ?J^9-ͺhhnf9{Q5b]0D):HH5S*NpHEHc`VV7\Щ&JEp*#yxѺ֗/5\ f$z*e0cn[a@0^i:2ص(aL0>%5Njƙ|ļQΒک+DRsޖ9x*/;I--m^ ]vCJ4 c]((1Cy:iɶMY?o]|=J:Jo3%k)pWu"76 W'&AݺEb(+Ҿ>kZԅ pƘw"M)3!A\$c]K⾨b`o`@M,o#Q#P\NmZp901XYȀ7͊Fn{B wƔ`u1Uz-v}J+D?|bdR\0/ߡs_ē\H.2uJnҤۉDO K-),\QâA>I6-h "Wmb{/2A˝DNMdV Z rOG#]QKڮbC0C0޼nld>%t~?:)Ċj}ZqߟY/fsE9VI٩aF>o;@wjU*4a6[/zugf +ked~ !ϳĹɀ7J@8)g>dz'Ǟ[KSO @btLʗ길n|5S)ZėoM ?,aӯ`'X[N?1`]sC#GgHha+{rBwJC%[T~̳T)JWlKe:yKBfByPua={Uf,<|>&W/h bBuj4g#ȚWX0 #CrJ;ڰ =;X4CaqWcq C0P& |*բ#nU6BbWXCe֑e+tm_SֽɆ-1f11*T!ByiqY Kd୰,QaIfVig+c^pW9#%1OS-6R:(S{7Qu hVr:-EXĬ  J{<'}$ gIޓN6pf&;I1Q=¾\;,D,iB(R!\ݿm)ۯO-b$B}m>u YěCy5biC?L<4E(>#bI6fҾ601qtT/o6uvT `ǭ5s^-iyDHU;ŝH]{rr˥rvLi Vy]r7byB[h'9bB_k=tdoM[;&W4!*W4.'MpO ;C6:z\ EV1D\d V<k8-IEtej!:dB<G&'Yy$%Ty,z 0U6V(Nxt~F5OJ&7^b\DVJKG(ܠ1C4k7[ŗa $_NSQ,l)-ʥ7l{::cq.rn酴x#`ArZ>e([P*p +H`oT?E+g`aWnAPSOpB##jC>6HQ>3mV/tAiVokI*_)bL+i?*/U"$a2rc)PnRGny[CAK u0ZPA*1ppn2.M{f\w3}26,c} '3xVd Zo^Z85@n*& $qG+?&.B#GKB<~-,NraQpō[1]vj6D0 =hy\.ME ܑѫ< 8[sPh^R_Rqar7 ٧ h͛MiTemdͭ^Tb1?]^v!B%yAnQ ʖ}mh:~bO4M `yKɠ7.Ӹ[$gvI^Q!á/7?=̹\hX]CSM+!ߞaTokZb|tw(>yDf%.Q!nׄ»"֩W]Kӫ^oT5od^](H᪐ie^Nˋ;f/P*QOcU^婄4ϦR2dpa+:!D|*1^E{=RQV7Y 0nvōV$~u6Ŋ|[DUm.L`0lbԠF*/$#/,+bqGs!aBK't1ϬfdQIbU @H]p474?I%i T',ve21hs.) yYqT ~v\pRҺgNV d1 dwbͅ8,HkSୄk `Zbt2#2!ްC{aa/_&3=RD8r ]hx*h< vP& ^}2 Ȫ6,a@E@hDᱞTa&e7>,ZPZϯm'^3#O쎍d5Hza>2VI~==sRh/سԘx&F!ED:ByFԌ{ V:/L{_s)wR`% cPtAvhvKSuQo ]|I 0 9OnMbPsDP|Ѥ f`Nc[}^yiòE(.{e6+d$, rK7bsV%ps5*yOlpU~.X퓚@^ZݍTn@=jb!%"wq XgG}O%O*Ryw;tdK-V۶b 9+`4YW|6TFoB;z>06=HK`kt5B]1iR %֐ t0hɂ׼hPy7|ihiV^?CkT5qI딢>!J<>9#ON=[pl+ѪCFbH} pVI8|q _eں~ㄴˣ~>pym[]C_ny ~QB!ˆKBUn`NLiV}vZ\!iJvqT}JWN'æ礍娿2ң K+7O)OXf& M$:{y)?OOZrL :Q,J'D_);\D>5irqlÙ!Ð8Dii[|$f=|.~EsxIY&N [ݾ^sZhVa,볜][q.D^M$Ke:KGQ4tN$O 7Μ.n! ,Y^t ҟnYD CfW'gYRElޓX7!"3IGTe*eԡ| uB,[4n6 :l_jvEQz;5sV@ ߭9Qh@|ޙhXOaC!vxW9dԨNI2IȸoK*an;&iEs1BlP=7#2Yv  @1m, i}T-$\OK&xmt?kVE&ڔ6I##TR连Opb&~ 󞯐4W L?TFfD)GR4_J7fz ];t rW!Z`!e<f7%?{@Qs讎7<;)衮gFf]Wi*,,=F<^QY,U'=6RZP|]lѧMlQ%qh XR W הVy ͅhFփ,(ğ^V%qaG$ _sռ w'2’XacO0JAqc>!Ҽ` ɷ @{eQѡs[j$FPD&o7lI|u'-Β:,BōiÈS =Pd)wcqZP@==&a~^.8[QiBVo\-T:Cڦ(xIJUg~@lrJz v2/:?mι,h7f^>C}5By/|S$' +s\v9L xpf~yeswE"y:JIz5^0u@rp16gd׽&FL rgi4.MSOGytF3.}g@RϻLB0<8_"Ȳsl?cPBFSM`ov?1׆s%Qpf(]gzJOTw xf+pY[x,Q6E8J\HoZZ1Fdf8[]V8R&v۟hoY͸)AɎ?F1_Sȴ-q>ބןyW̜PPLTY_ r3̅qz;%;y>X.;ELUVvE s XZ ti0XCd.H\y,rsٶ5q-BSx*mfh/c'rkBF x$go3{LնUMpC1{SJePL`}5|s+~ x\8R9iHpTBB ह ovd@F }wup4u&1sgT+(Hq7u3SL@Qrm?jz\De^SfWazp!)#ےHʹ _Lj_Q\i<ױ&ڎ4&_?M<1\z}stQ[."p')[bM\Koh_fhF]NJ U,=&@ h1K|j`S-)9yM>u$,"*-;ab<)TN./AJ2p:@<‰QƐɬ`@).^>ڦA1&1\Q6n-]%Ip8'OjL.ܞlTYN mty$?`[Esi67vÜo%@,)gξլy}86uaFQ3-u s=t(^_yTN//z\ rU-v`}Bd}FOz(!Ŕo6\{8+XѼ)\ʥ_jEE=>W@ib K) Λn<ǫ]xܥ,,Hb%'Tl@W}Z5F[XtmG2^%o<G4h8KJT!]q4)T=Dn${A3]2zhooZ|$a[Sg۸ԩKYJIr;SfS0dq(̅567v1;ʈ)[F o.bQgPY387U0($6Iw#$+ƙqq_K8۽F}7G6,I{eε?HOv&F{E ȐwY0+TKr6AJ+!9gED-OM6!o  ΎQg(m[oo)teՎ1+?/`R+㏊ϳ%eqZ)ZLy+'0"brq_\[X*ynۭr!UY_ vR̲?3h0P!Z ߀F,ָZqLз{q79.x_}3YӘ$KQF% g7,wsjv5/USF,eL ֯jxMUgnvHf&T/{Nb=U9} W*A*9Qٗ)!PyF&Y3Qf[ ƨHs]e&RNO0BF_j{\&]Ku?R순tȒ²ٯe\.B8#p"+oᄹK>mx49'OC3Ӯ5e:>ep/Fw/J1AK_|+a` =֥܍pn)<V1osrbc,*SΧ1cO-BmZ4-=`$pTzأk ,#Ye!Z3Yс{_k {&셤QPiTK:xq}k/ # @):=<5?̞=Υ N0Gsn*mFʽAR56UG8F2*`SuYZE2^L0~Tbe?sMixl)s߂iqɁ23Z83>h%ݨdvzl:lwaGDe>c vF w3dĕ l}LAv1OV[#:P4[6͞*.IBojݤ"eA^=-q: *8Mtw},ؙ*XI* id*jĦLkY>|:8>SOZ(OJ~[[L~n3RzpK~ b^"KS.x6UK:y> InQ݋@5st]\B}-!KQ.EzkO7~?>6̲ɠ3p -:Sr*njcmfyCzo OMC.@@KdCJA`2#~'*~F!Tn ǡdAo[ gNBC'SWP^SE۶aIH,í'p KUʖwͿ p=)ɫ<X.򤽤?q[cCN;Ew{hWW۟E蘇n-}v0ZSI- [M*гHqL>H'6?>v=cEqGXBڨ6p\}2kpeэ.a&Mlū m ~ ^ŵGh<僝Ŋk%V]Ťv;lk%]$~[Zן[E_0OltFGw X[AsPR8 hʎ _z^A> + ڂ8w(s"F: {$p ݱbvJ+1:<x.<2( o}72䭭Pܱ1nޘ4E6Z Jbcjch1)q]zX|hO'pa+xB졹}ql.uRVu.d=~ON pH[37=̑=1P6 C)ؚLgf:4ʥ̪n"o D[7Ԧ6`/(=Ygʆ;TF#uϦ.}'~m060c,$G\H^+ dUˑ=aHg&iA@a3ѧLz%@գCvfGgclI_>"k!7Un,^|E{J Nמ 8;k*|:.P-7ZΆWGyFK@ r*hs bH }>Q?] 130t6ntur$Mk +HEH`C+Ѱ Pllsfi 8OԲ%QlD͛XꏼApAd^T-šZÐ"JZDBPxWOLGR!v<"Bw4j$k[ 37-?zV. ZStLVI½|#q_birwSLJ@J~}sk' S:kgh边%0Z3np trKp_Sr7HEfBz?I<NZ1gkeJwN[)B(N(K4:IkzkL!_׍o4E'HOʇ+VS \|ñښ5J,<=BNsU1!d\Vy"I)X)|퐆ڼ|Ϟ(\\ CzIXYʍmEiFTN{h۴O_1+~ZPvb2"h(ESzݞ8f1Qr>)/#$:gM߁Xp !EA .ʲ*iXaSXb3$"L27>$r3MX]7HI,No4(0} ?:o <̡Tl =ޛz#|ʧ.' "nU&/OJX߹83tFAE-YX"n\-ރWq|84*&LqcG`/fgʵJDh5 {ޯ`ڥ4 ayiͱtO5_ѢҰRnm+ / ]_Ȕ;} ќl0&[h-R^] 4'F6~!S1ߤhݛ VnqjMUM_QY t&+ e F~aV؃ۛogR)w Dl]J(xAR['HT`{AꄿͰwX||aӸI߯N׼2L _Z P?ݩzu%V..?ixfrS>~hjuvpspbڸ;RPhc~C@1 0GK!0bS)/)i>(Q64p;۸{AS&ؒ͊#2`* Q{|{Q| |I|y18@ٓ[!ʳ%.s\ή}@̏R.;+!<?c8K2k^M2 Fn_w64JH>;Y10uIHh* Y Qu0{bԍRb<=Zp'AcL>%Qgj bm@0J2C%yyYAifbSjuyI]\Wyv&We׬μeu<ƥdK)~?k?|3sjǖi9f[ ipB>xGbcqX_S3˷o5s("F3 n @%.) u~M'\ͬ~A jF?/((igjP?4lg4WnU[ 1U{!}젔_*!g[ψ>x4c+K`X^NIxc]k$D,laΤLn7s;j7Ԥp$ |`~$X)f`;Rn|/y1ܧu] pr@2n,4^ ͧ#Yԇ-fYYQ<?kͭ@2pW{Z_=Kt:s3'YMuJ[<<xkembޛ*ap^q-un%YǎY,iQhPvHsMO>24>iYIg49`5 ¥!RWszEoL8O,s?!t!9OJA,#MPQIpn P"aF"zbLw] 5Zt۫_Л%ij~nŋ6W&}AN[߭vONocqo-f 9خU䆼jEJO/H\'d8_9ed([*X]m zXP,=–{,<ʲ(!~Ƅ2SK$)=-i#i.- S X@)ej/BS)^-kiiV5*GsHM}>@1f Kk1N}h[ᕹqqu) MH4&ihOz~KK;h/ۄ<6G:8V4*~8 EWXAT 9!7V@f; Dl]ޮPG+nmV]͏ĹZJrxy*$ waJ,ɦZ#f1G[y'"P%F'ώyWNY!)F?iz MIi s~bNkٺeuDi=hdygyS)< χz{太LyK:˞B{֚ӓ/@})տf1~ $;oEsо^˹+ebҋpt\o*T8W0W~V.V9ݴefLr)(*bT#1l_y͵E)7%+qG3Yնz+E3ir p\\/a+US%5g0A? l p#uš'E=$8g '*?q6 Iٛtvr[ɤ֖fApF IҐBQ|.%+Wx)ja!c*ƈ:5gH=H\ gS9"~ʎ}Qm[wX*!oJ*mWV<{YQ(<6<}^rp ѳś5h%Lu0H?I}3ޤEͦj'ܱVK88Lʟ0`R޾Jp: 1JxEg#z90D#rYA/qK3IzI܇w_&̎ l©JPnZCZڨn+4AYM/d@!2$s\ M %~q p O7d~]|GFȡ@GIԜ)+XΦ#ks\`7<0 Eyx{%DSfuJ_bhҋ5ҩzEBdS94eW m*(HhXC;Td 2Y9udgŸm Ĺ-lzzw4OfI0l^D֓S$~{I. GCn2i o=J'9lfPؔnЉK q?%$[gH +6|MF)bw\k@8-g! DT#v:ݓvM;6R7C  b>9Edp`6j&7U])bȳPhF֚ ]V})G\;Fh4A[}|b{Q.裓02t.W]YDDnoEv(:Z^l0^r p kbHl"KiԃXΙ kx oBB迄L@ ˃x{! oLH1etY^0dnFhg5abj/@d-DX'.BAuo 5F:(^?o>E)[,^K^Pق7HhCuĝTCUh`-oUk` gو|* Nrq?BM칼[3ؔ7+=+x.ܞD`uedsRʎ #±~xH@KQJcb4"+. *%M*(z-7dƾHSn.Gر\6 Z "e2ILsP JMPsP&<7&`=yǁd 퐬]QԨLyĀ*e!]^?PPq}eA t ~Chd _ms=T+> 08QGg2+y3T=°X4d ttkO:6J n6zv]m$ Np N#{9]}e+ֱ@PF 5i]zxހ̓p,-yDm!U搆r*sx,8VϹ%ng+6I^8l߲dr=GV*C:"v~.Rn\oh!5V $ Y8 /G Ѷ 6mc\_DHZ* Eˢa{%;x`!uj)BME`] o5DZVeBQΕe]2wA~21ɭ‘ Rv XL>2-iy*f`(A9dxf'qd`V3IuiyǺfω)@U11Z}h5C4!^iЬ.=L"pQmg˗Tx2'r+hZ23ꢵs؆)8K&G oՑ#3 6}ɤs|DcG*v{CGX%_NZxp\Q`_ X#kaIBvTGhJ0Z9/a?ggwA^=^> fdY' {ډE̬2˓V0lWDfmqs):֮--Rlj&2z\»6c\xe 0x֥/eeb.~UycΫS8}>AjVx};ToteǢ`ߏY$k%Ǝ3yn)"qe\[ "4V_ԏ&[WhH(ΎvO46y?Hi٥EMO8.v>kUɫyh:^!Ë 8sU#!ӈ]Sx4pvIКǍ"Po6chq#\dml5<$\cSLuކʌΕ= &!5Tu.ZpFpOgn12}g_+ RJDư%1`K prWVk`QvF]8.;3EDj\I?PAYd-A>V*~P2+rbʈh_],L'C6FOR@Հف<;vpJGbԱ%Ѳ<ݶ@W0.jϒD 45:7˟ GCX|0iYZGЧQ[F)|DiGP|29DQmꞇ6ᐮp #Ӕ[ *9z׀ p-VWOtŞB?ۯdLIV\m4<2}7?{mK,{2kS `ja!{0dR/~jT~rPÝV{c9ݕwAbŏ伋囋W!RFY1e^}s'23YEFg~ Co§1,ޏ8&>gਿX0>=JI|uxjCE'B M C+ '?/CM/H<q۲tS@{#Q[I6Mv.NeV1!+^ 3~N?R y+^[ ;vO[.f0("yi[kc"'0mC^h/P'W(&yཪu&ֿXRщ3-n3$?0֪w $u0~a0O\]O9J1[ b}JL߅6)Mb Uȟs 슙<7Ƈ|)GEf :pby2 ΆCnI ZmiI~m/ ea8#rz-޲/{E[qfD4wv@NIȬrW!8](>~.A=d't&A*&P>INsf&3f5f7>#iX9,!Q6&|F~WBroGʦ`aCd%bv2?Y¹{}9@\8ufT!wb'`E_IwﭏMX\v {\%+ѥ#*d"M)"^܃%ϥތm6BC'Y )ŝ+бE)܉[$UqLUc •}ۉYar[3)5A]{O^KVZEi"fէҏxDԄCc\*YXI3u )LOtR5BuTG-g&${Xޟf]-F`댡jŹS%5aF`ܭx-=<`~}am!xGeF֥-5& 6orX$ !TE@nx|IJe&NtŘzY/Α :o^\w_n''PXBS*ndeP  :8u,_< !O\"llp ! _r*uDlljd03S\7C5,b$A^OB )>%ƪjNsËzg3QWm>J)ŶЗO׎rEqحGy<d4Rk+++|$?ZF |1m/[]֋Euƻ;TKCD!5+xnLn/1_AUOGʼRޢ}Փ1K-'9eب.!:Xǀq*r(q] ?JH!-1b*yfYr앨"A|0<! .S >N?wvfMj0}-~M/o0Q5OQ_mC! G+x_cߘaZYHƉDB} `~﮸A/c y: pUC]8ltegN/|bT>M ̺9zǏIщzб)q<9(~.E{MNLkk.MoHS])QÍkX~,TLbJ&]fO>/?ass?ru:@@W).aEf NFd$Otf 07rJ(ڱDƽk HOfb#ou3Ϸ6IU,U7:9UD78," Z͞DRXZI pl~Xq0F=yvKP ܡD/la’H7ۗ^ΤpY.<ܶ嚬̊ Xz-K@t'HCF2j& 8U6=̫Rc XSZv'"(Oqwa:W1-0N}rN1{$Ӳ]U GyKP4[k $o^8"'7,ȥwo(1yXi7& Z8-TR+.mMqY4Yhj@7RuX/-} BO]^*r[{y7`X]#w GBl#Ew'(,>o)O` [53꿯,<5?/` !L¥p%uPB6 9( .ߦz4:it ^HU8Vm :׉j6#%dBG:1due `F-iEnKxZ3bm]4k -=@4'Q7Fu^Vm+(uV+<ǦnXWᜳ\1Z)!0t+ڎKXS$ol~?O*A2B4H2w[UvXt.N:Xqu~7lsGjrw Lp+YxR~;#HD&8B1&>s59e,{ sR= t=ۨu5VCëӓַ4~?rz̠ͻZ6#PݶBG̖ȕD415x9[B%`63[m) ns-*:W*AhWv'-!?>7I&_}G_p28fV F8p}[D *2uKF@k76"nq(C-r dg۸W3_X ӼolKq/:ԋ'q)!ّG>ڎ%_DsnӸx/63`Og@ 9NrHm±M LY\HM -ty|f' _w \-ʑQmҠ^#ܢ_>C>HZVT@SԣZDN {]XW6FP6S3ytMA x9+:Iznv>joQFi% ^!yd~n"jߠFɲ⯘aXj+]aAr<`)TcuĎEk4D1%:%h,}_70Xӳ\PuyU1}]R:n*cB1j8B59@Of'XoPo%z*†n,N# ]@̗=ij(kG1kE^i\&Qa ,A9{=+T6l0I>2_U*L^RyGeE y*.)y` Ђ!f=QHàm&">Y0F :97mUMcBEtTӧnկd36;`w61vm€pSoykD=I5OL7C"zBma7ERQwzh4:m= R떲ÉU'oR_\w_f '#4C@WK; R77g,C_F9mBz@fvI6jqѺ%G75Ǫ.Rmt&@<6K/s\rbisTjr{ief7,vl"{Wh nKOh~i[$*ˎEz6 ꚌH}MU0MOݸs˟1O7.N%$ 0,ɪW}|^",+X<|^CBq#rj6Z IFh7$T)b4, SFtBqkcR"_DŽz#?3BJ?,[V]u.7y[Ҁȋ/m= 84}Fc$$ȷ&ʜ'#y vuY:BU0q5 7UQdXGNڼ`[AIzG^aDy{f2?ɿ"e(23L1~}I3S (ֽQ+Q-lN#|rT9'6FoagZmV$"|{wa]һe]kb0 ߢ@3eU&UIM}m3U0L/W 'jŧD;#ne TF|З: vlrǤs>JV0mclD0OcNߠ7(8OCKZBE'9_- ":N3 ;|bY%HDjgRELpN5Y~1 ʛ4JKzX Cl"eOPy*gC І,*09W*&C$Xv+._ށ+:/.3~Yz h#z[[6D\%F>VDx4=_^?LFE}UR]9mGJY!gZ[`/}͓Ƶa+ պiWW/4;#mK_jɋVrm9Y`D *"LdG{,0M1]IM"Ч`y )毼9wĩ!n:ԡrdS[*fb(ϋt &83[Tq}w}R6 6|7 g~~I0̃P~$O[P~ CdZ4zjЋP_ !r AWэbI_Q7x_vRv9|͜uė|t@1ݻH+ KxZ#PGՒA6vwAR,.>ݡkMe嗒)MI8c#l\pe_K p,.>Z#m)AAc/B[RI͂#Sw-Аe7|}eWkPoJ6Ψжc,gh@xH?ZJX1I$|4c sVc_A=m4-x#*KqB3gE1MzMdŽvpb8b~I=]>ot8^-—),VMh9N 7pAfpN?p ÀeEӧw8|Hl!Lc=BU>d>TH 3BIt͞LљVSM-g`$bƆLk,2H ,ȖwƢ558c,"6Sڹ3yȼl6#6ٻь[܉9n#D Ҝ -@-߆2J;G b,}ߑh;DRN.O#GnE6Lsr!QFjߡҷ*ZgY%*"1N)&u;kxaHbѨrflt=Kɷ`qZ7"\=mGMivP&92ue@rF<и7C~-s,R C mvOG|)onOA]yKv#Cx+:jXt͊0-o`6@ha%PQRfNF*heRw1A'J04H S̬b6EKBDOBvRdur?\b ~ Y MR{[ԯĴ`asK{L熥.K0Q_ck<̉Om-@=jǍt fm7fz :Ɓf ~\}#)KBK~fTcהtYq5su!OQO˃\U˃ {"c5|@2hoT͔QӔL<^+}n/鍽57-| |MYk~K,H:x]ObxyEwPRA3:CJ\~V27> 7G!T6[LM!} Ym{t)ma}:0XdUog;ZVpT1+4JLXG>G&:KR+t55U}yJ3o}ƞ%MLk"C7]}HPW;OiKL$~Ƥ4ؐi(8rzBIq/ö3sA<]~# ^[l|\=((| ?kmGŘtwOj/uĢ tH_3`3RdySwbګf32 /]/D'#i(e7(J)n{q05*3i YA$c\]dERB:B'Q6Q 7J= ͦGkcQxHB`#Nc3X"J_nQ|饎 yXIЮT6 QN!Q(T)4adaUڊś>%ѥ(=W ( ~MR^ia|6iCNC,|ZnȺ-jmRGj/AnMLTt +;0ZD}u1kyji$5{Sx1kX~Z֫ /sӯnkR?KH/m"~VdvAê^B{=6}R$_Riyp+&?:0RH? Llxbdj(o)fk([dr} T'_|}WUoD '&fn9mNiCIZַkگ?a~\TF {<ʦa@?yvmY槨OvVʏ&| kڇC4CW,Cj8$j(_k3C8L oU&m^m0 )鐿+rQ VVnrg=j餘faO5 >ۯ~>D a㷎H31.9z&CӠP%oJ dgT-Vg!kô 7|NۣԱZEaay5 Ħ`/ӷa&b6>:̐\&aH.Sv}ȾIك &U{4rq,A:yJA?&n0ZHd/ӹfGs^A}*%Kz*gm)D5kJxk11|m 8{/c3mkʴzOuoT-ZWaX:?p<(w+{v?v*~/4T-;&And5$̧ć/z1׽C2_Fuj.yRٿ-sGـxFukznW rc7)z WZ5 NNsn*,EN%Ǻ%SFb^rW7<5#\5qمn6v0_qioXylȏ^u%i ´l#c@{Z\x&"y}PKob?Kd;h:VtW'C׺zcu:qO ]ҳ33\ H[iLxiFje 7 "0P'd.@hV [=ڽM`ۼݷVĪ`mKg&B?^܊jFo|^/%Fp•NzC:$B.؎KKB=֗ƟXxq*l$;?œI]񼒭"1|3f}U$-1YuXjNZʞ-2[ݨfjOrN^]zC7+&˸[ovMo -6fg2$5jj%ۙG=dXP4KYiR:*Q!Ѻ{z Ws[)/^a)> Woyu,BޡvK{Ose\vCм{S}N^$~x^_[Ŕʒzge^TZLqG=b)1`W)&/&z\<ĀRZ$E^QJm@↵}h=i Эux"l{ mX1|ua>w^bgAoZ ȿ>YK&ɵVny p+bTTr2Q{?e"$*ފs>H|Ϋi$} e66Tɫy$0F= *[tݘ'ٮ:BY}9Mr5׈leW ~"+uEZ*x>ڻt/)_R9kAIMHT)::l;$(me!Wͤ hz}εcLև3$?>&(d9˘Sеc]{SfӺ-O1񕯃 !>NߘA>y=\IN.jT*#aYt HFLA܌;~[>\Ki̋vmkQOKibʖ[\5s8c~kÙd)ѩZ_R)U Ìjϸ0!\k[_ygƐEjz\|we5+#C,2Z N`Em&[>Jw%3ދQ9ni"&\ʆNg\#lTHn)#R~Iz&4Gg>;kޗFL*ֽxK"41NWor'F:>P~ (.U~FCXŏywxI>ةTȽc IDs14A>d:5/*1ڄSlaːWt5:o~l\ yr$<~an}vWyFRHͩg!%L؈X1}OE-@ !;]GbGiu,9Z8B ZK.1z{VdD0[^ 1|%I5=Be̯U,HHe 6i-: U6*@ZSZhCXZQX* œ(X bmk$붦0ϑ 2]pml5l th D}vX,-4Uek\hl դ}SWkQQyoӔ~8|I!%X`4G Zp;}V8b0fMQعH{[(7+A{Yth[!$"m\\Ԣc,Jؔ"N(e {o=^uM挚礒+)7B-~O@nkʷI#W@guZ:/)&/Wh$}Jl0"rodifSӠ)J,\ . #WKI\XV {V\=S$d͚U3!嗈BdTװ5v2]cg 0LT F?eN{Lh.ĊvK=]>ѽ;tWt#P}T•8G6@= !?YamMrH)ʠi#`ʾցkt,Nr{܂cD?,Q^csѤwn]3dO}um,' ŐХy}3EMXlDX<BngaaK}OcLF4^7Kq>@@LJK2ASZY Bf#P8?*VZCS RBԽ`yWAJ~m',|:g"K.msFC{vX3-9;RP>wq~4&ɺS&3c @3VM qш}M:%*(qX*" ?_^jyHae˙j*-à bȾaw(7 FQj}*g@I>^YbWuƃZXjGEIfXh@BxK_IvDODĚsPr@ ,e EF‡Hmâ&rg%;|$7A-~@^%ŵv )^u AG`^FiƂ4ByNpuٗă~w8A? [D/KQyc4 HEa_|Xfn^7pԘW'/`^8D٭LIUq`qZkrwJAP0װE)TzYJ1dʓ2k/t9-Oz7ۡ -CԈWSŘl[=QK=6F_0"Y-OElOxz_cp!d 09X5iN Θ 6-Wpԋ^`L_cQ sh*ȶX4 c Q͡W1Xƍ:dMh)H 8?}( L3h~kXQ7|@Fhz0ܼXvsr3, BdGLW&dyNֽ @a Vh0?ݱ{ %O`MU(F ed] 1f7SS[2ɳLيYC*Ļt@$i00SB VLhK{e(`Ÿ2fDUTI q# FU_˭4NB$ڴ^AuM\:.D <$[?o޿ ^9/s$eQ`۪aK&tؕȂڜձXHFR bFZk;Wf~G'@Rz dْ+z}>&G썌xc`3!&}$ 4x(qlBȆ2]陔VkRHng02}Xm|`$' |OáoS:J^``P\""JabΊ7OpDćV\ gat88hyz; ] Zp45;CV0aw^GhV1QW!5X-8;ӆ/N#zeѡv] 3$;.C`gc0%bä[PBf9=Q0pexا;~z_mnjP&sߒaaekpVes8~OY4v1* Ԇ,@1纒WљSHow5` _l0 \Ʈ$|! Br@F4sZܓKrܡ}qS/qoxanېMvn0YF==\+ /cVU>j#0-2vz39}GKtʁ}hlͨ)0By~Y㱩GN>Od\aCbgHZax\N8WSÁ_xͻ ފ9t 8kC4v.n1q:S,pG o0VڇD3X#[hRysb,Ab +=d> ljcpgV'WF , &ie }b=] Wry ^a9qX\d"HцDMU9(\SLgJM`X=~ӷgG9Xʂv;玻\_"cӶ=J]tMSCk 2/Si0b!inxVrvEp"fl3$ ׂ~ `;Odw<ݥWMbE6}pIȟ/ɧ,B|np-O[Fczj ZE G?݃i9"^_UTZ5l&q@u;`45}e.qϡB jShVaNsh `#6`}S T~FC6ńE;"HjU/QSܣZ:d﨏_G> }YCzɊxK~&,5 Q ݓSWRС J Ic)և͚3pM t06=e4+ 4"QSGN )L/< N=eb Z'|úZL l. =dꑲq|/\L ^^&uy1t"1{A,6|f׊LXL"gPGfV'؅GIaky֕=u1sCGu*dH/*.VGT2\ z,y [}Y *YˏKo:& B0L"pma-SomwE=K!d1IOB1&!4 'TJ= +Вu<61:vr7"UNǻL7[<@x|C.BV ?Jv kʄD"Ck &O!wv* )W<˘ E˨.^ѨQOɶ :m7L3%dg0ե `3Ѣ'ڄYwpnH#Rp:muPc炜cFl퉬D%uaYfpd{VP}LcT> #FAOc=bj_0qF`&y6Xˎ#^s-;z!.Krm``Piǫ# 2\x*x~g '_3ВEA.ἰܳy%Y'KGD1bYTYG|e&B~\3]q`_A_\y7fUv_FYx AG2 DS7]jKqJNRSƼ~94!+9b w #v|b[bx9iZ TYt&9e zrIvER.X2픤4+fEw+>y6W08E 4Һb=<3j{k }+wA"-ČrGcA%6"vOllP @`Zhz\s)T!idPQ>a4Frll +D m3@]~ËRlq!{qH@T"jʕ_NjwTA`IS>LlHL/d rs#lXBk FApTiUⲚQ;tIzӻ2<ƺjﯭawϡ5h=x`,6Pb-i k^:? :%eJd&[E[1&$^$8rm`Ehomٜ݋E7VU{`_t8' 05Y4&C+߉tYt̘-b5yCqA؉/r\D 9c*ϰ}->!E9 \wOk+k" ׻줤lo_W5gb_6!_io P.7! j K&2t`@P¡\ZhNؼ#0e>dI|Df?$io}5ya> h|vY&C)g崓Q72=YT"""SIo,HO#$m_зf) ~NyB_BVLz ꔚ\.шc YUE}`_­g>@Qq]I[IxHt0 ;U ntvJÉтOֶaB4 kr;l6zˍӇ{\{{ 2Xӧn =rsMi[Ӥ\JW#>͢{c0̚׏ZL!JWt|u" $R#}%'#5>NV-|m\]Jw,6̔[ͫrܼ, oe{I2?KZDOa=#Z\s`[A/bH<6 \_ thsxaMS XWJV& _kt8nS"y|>b|D:raT?8\^q6 VҸkEA˾D"r&jK͜6!XmNd#{v&Ӌ\ƆQm[5c6uXwkqe4 -&65c ݿ`KuNk@c+#'DxIu'B9Z;2 up6Bwa7/q0MMk_.8L.tKj9t>:vt"FGP ?}ж`P.^jGW4j5MԖg&(` T"8? )HDppO~Ę~3 [ &qDM|*geUY*Y/a];'?|zS>+z4("&b.DƄ(|FͱMüco@T 5QW%%4ݴ/ƐӘ$w ;ݿt4>@Yj3+C83D~A[)mr#1J*{8N ig_EʜsLӚRȇuO[-'/tunLo6vИ b8oߝ4%i1rym/AVhɿb3~OS\(?GIFnP~&[% XGu\D@yo꽹*wAlI#eys.y;A&x_GK*F)Nµ&.mYJO'/GT0$]:k 74+0I5wzU6m2%,EhC0٤6! fC: !y6` CN~\\l,GN*wx^/ElşJY>pAU"]F%F Pu/a:1Y}=(o^:®cS_ڿ=K01 ̕STyH/'KW~naͲ +cڵ RS̀>̢w_@AQ.(32tA+%e<1OC$fA'(xiyP5|=`s^*N~+XbLm7G:ѧ^Fr~NԆc'!3>Đ!?/ă;a~L_Qy8cJhHXK 흨v7ྩ!g+'gں!{J ^`&=Jjp>@cbH[2-~PY_fyxMWpb7<Ӎ sQ6/c3V a=A#_$G[l&@8rIu Hݹ6C=h~fM7ySF>U=@a_ci^'ywhsBc*LuSbv*z4[]KN"-mZw{N*jՍbmη` &`40@^GcC ic`=t+~Ј\j:,:*@`"`"oүVҌ$lb"S RU0Iu{ĿEP^>YէdC~vVhg(IlcPTɵ`O+w腋u|Q [`A8ra_00}ˉpyQ Q:{kQ׭H\T.e`FB,"b4@wY/r), Z 0ƑM"CQzo/OJ:Ӡ;C[tܷL"۫i+hBGQoc?&$+tM1sdWY +As@@4Alj:ћ OoIFgܲb ݃Ԫ7;=AkWdӚC#@t@(a nȢHILk%b DN7tKE^~:3{Յ51xLT[\plKm܀(\zrr.d\} VM!yĚelVG'J:b֭ܦץJg*L2K?RF`gFZ7Ja ðl[=qb\3[L_D.ytPHY,0O0d}pӰxy}2v,1߉<1젝 b='OIs{:oBK4J'ywZgB KBP [1 0A1Q2үI ejZ2c̳&4GfZȪn 6lhZ2d_2+yC;y߶D$p_[lܝIK$IZkgeh*ݪ:MbGo!ib!]mCc< ,PD"j%gͪ@`Z41a~ƁW)XORqz hiLz3xNx_Pw6q7,-V 3Φ۹ٝh2ш+p,ep ^ԇ* Ar7l>20$/LO񪽫kf ׇ%d ,~Zu(v* =^coq:.qgБ̞b $w9n'\Uhi7)|Ze"XMz~̒* D6;_(ɷ|LYrXl"Z4DUN7)ZFeN o E oأ<5´'`+J^&r(ֽ v32%~(RJw]ad)8f1hm#"*\Wي 6s?42Vy'm~!KY/vSNks(6ֆHTRDEЇS@`x?+&N:`Tʎ6N3 ܇񮏫~(Ƚ }N2+ի9CqLPn%}t B(lIU{2DGb(Ap2ҝ' Uڬq5ަ z5 5&/V[& `V&Q{F xvP5!NNZ> 鼆J8$d6{ʗ~3rc<깏Al˺,?E,Zc'l'l=x_cSHZbݗņ4~oxYRExX>7;.WpKd0hMŬƬL:ҟ)۸O}DY=kZL{F6I֞5tlbCLx\K|0a':<BKJ ŲvR0j MM`D~`xZqypD+ꄭ+#K]{K4>9 p.e!,~U37_p^ gz4 HQ ;q)#P7P'CyXPF?r+#"p;%M2=0Uz;mA8ܸu2eGn´V;7~V7]D HóW&!=H2a'sx3L)HJZHF{juWW+W`PTJF2z+(Y@lfȚKϐ1G_m@wYl9x@͵w7BgA"4TL΅jEaNKfycPȈ?}Oǽ*tKpl3-ȳcKdxȨݺ&khYs`38wgS 96q,#\*q14VoQH=+I,e0Q 2/\;SuPe"!A7Q4E3˪ >-.'#fnQw?I)2+!⎿|=w}-~G,1ʵ7Ԋer8rRh>loE6Qx(3bp%eՔWL4(v$FS^&ug bv.:v 4| Ll\{~VZoÜvFTB0C}x2ATz,5!H i",{ϐF˾ HU4*e5jЙ! ]81 n#ۺr twbѥeUCѮы,d͐rn5}) uly`1/C [p;Xߕ3e-ׯl鲍5{=oA&9 7((}i fK9^Jn,77 0;wd`=<-W S4a5+0~NH2qC%S]6h@atXBaئ^'b?yi,W/.Mü<95` E*Ӵx҈v4Ksh9e&$虙&˒%l(%ȓ>wz7.|%?;*']fbr-Re4ԯ ]'ǃFL:9 x#QZAlV㜊;O Y_u- knm%?H|Ɠ=RrᰳFݤ0p I*Ǚp7ͷ c@yX|\+J̼x@,&n:z.c> ?Ǟ/}Q<^T3KaXM"ޚ@D?O_K& gdq!?Le/@Mj 7-!Y^%59_"y!`Aܨ=n)mpaA0Sm 5y71h ;JF,j*-;f)Kvm L0ԠՅi!]y{"BS!meyΉyvCn(w#l n$NS!OV/e iy n r[˯pKaHKb",Ȧrl ¹'8m==GL5k7aC' w2t8s82Qb~|E%s/cǫm,:1@-%Lw+_8G#`G]Dw.&N%dFJm~ D5JUxs At!Օx㦑 +a &?y`JVs E-A$dLNrPe 3Ii1!Sn8``dϰ# c#!m%Ц=Ln\JA~QY-hAh)@&|ɵ5suz8>mbzWrsWiv<'g1h͋dQR( xldv1vr7K̤W=,eK[g9u]3{ kQNr‰wcӳs%Y$bE/,G2z**] h'9{:x}T-Ai@LziV(YӒSBLN\=})]qQIk_Sj5n=0׵.e?jJCưbӶX!4!,υ@,DFep;ͪ:_ &BqF\o*tP ا-QL<ѿ#s;1- w2@\IO'apj*yΠS@d< HOR3y d,N;k57@Z1ObLb6$6VOk"ΐ(Þd 9= ",O{W~y<_434PSr"3kε ]Y@03TLPHgUhI{ߗp,Wd2 B~hUe6gaV1{dx7 S/@\3ж$X<nJL vj'a|!JW}tK}b| X~zoVSڵ+ŤWW CvCZe9/jia7mM9*{+C[%H̓  5d~(jSי-#f.&&[1x9:~_y=~1-[;SzCm9y4=t^JMu3;]Dj_qTM{@b*'JRwPt?7D cb4,soT%kJӅqTpa ԿCL?!r1]1%W vFqeڮr{2X64װ M\9MpؔTFm: }. &c%_q#vHMlPj%:1Z;9~p[F#1ȃ6E(> GV ǽ!%Dݾvq,{}4lu+9B7(aV'w!PɀKis'ԴزBPAA@vD!h:guwRNUe(^i)) U%ߏǎ b O6UKsQ%B-R稔]*A{nLO84OP1,Ƈ怡|Vs=eD)@WxW'Wo[3ZZb&HkN7&hdBYHjrY'9ɰz eq9AFNgC 7i(V [4>QZ)6AKڹҫF7&ZNGHGE?:$ RH(0} pB̍KbKU'#8(0d;}N.,89@$uIzC$rr7lA'jy/ۖ=ܴk&Lc_U.|q! vFP}'PGx5a9#KC5mDf'@X {W 1eՄW͂lŊΐw9H1"͊T/+WÌ0nY( s [ӿq|?2X{=}`lTɧY[\jf=)`w{DG!,Zto$OQ\9Wg6ISϧ9^.ylvkju[nǺ3"6Ũ'NW&ج#9]4^84*Z(T?}>HAObayC{t5,F;5Mm}PkTˣ`onǐV Rңl-r(BPE(FI ZmRų8ӕ2#tFE.dzkuOz9^ԓdyrcsP؇z#DFJ't ?tcۿMpO&}أNqd5' hE!κLtyff͇ܘ[SαD^/4'q3T&$g*8!D3RnHdPc϶>1!:)42fo'xISET}p+Qi60^$l v=MCA> G|SĆTNG s8-HMUQ#4Sf'& h>SB#] ѼFJ\[ڦɜ5x0?OT:;A '_#Ӵzp娖p ^Yˡe9,bvn,8 Q|B -JK)m/!>P{) %&}xbcS/YVVqE)-?2b~H <_5螩zPX;GWWe8ج TPR=1^OVG5hZ`>wȋDi&cfC6)L@sh}K!5dǪWY#d݌Ϛ1?n5 C{gDy@ ! HF;5wM;SЛuKXnW> ,>gowvQЬDDC(KV';6|IAg]Mygt\dz$QсW?cg Wb`L#425npX&4ZfMpygū=K"LFz]dlP1|3b0!&ɺA)CrK=\M$ulطזL8H!/[,{_(۳9F4ClA " p ,_]94ӠՅ/}IKb^Mˇ+CŋI[Db~n܍pC .5W;^Z>aNG?zc8 wا1~n,uVhT@G;flF}[]\V=CVk M%bDzhk ?k:g?,1hAkZx]r`eܿ*L/I65J`+9{vغ8 +UB坵cŏk'BDei!.HVZ3-2'ƥ=I}ԉhKgK<6 -miWA玉5Ur2Ѵ y"P]3j-L}ak`Zt/' Uc̳5_dĵ{0W11S}T$D#U~w\AQW|q4&͞ z1ikɞ* +L7z (iZ6 MV} \7#S?ͽO7 2nMyZlj`|ZFDh[*|nʋ:pvI Zh h]yb) y?Eh2oKTH pI.[̺w9hH୨s>i%9)c[t} s Ꭽ.J US ߄РHm|xP>I^ҁOE/b%8nCg8k9r(?F-BXf?۰!qPvG ϶Q }՟dʻ nJ҃bcfjxZ!:]DR+ 䅑wI0#JtKMB^+X1Zs/.>qh)S zK{= *POE_٦_+#zIi9Eed+_7Uˮt?n6͋Utl{pA @l{gI;\Au ? hLgzA&x3 85iAVgN4<̝50Y<@}Pe\rX~40{G^)= Mi6.?]Ep.jTP*0jhs#%cJ'i+Il}Gfแ>V L!N\#~NQqSyVg@N!)2̜-zTDfT<J{X]rnE#@W,CK|>'EN%QrRGj_)=^JrLGD(sK(ot `co:)uoFxAN*o3ҤqVeu;7KXX]Gݙ82 /Ÿ&Vˎ.rئ ?r6-?Ê6ʽS!E,L`M3 (TMf!l?0fBE[ܶ,BI#|2 ϱYou[}' mlHV(D6 ᙶ4C©ϼ)vAyٽH۬{ҪUd;gy90`JwdtBUYdFk^-Y&.Ƕu\N;UBxELe]ӎ3b "9`Ha@Qubhc 2h(rS k5 c2;X 1-[s~#ua[Ȫ@WGZVhZl=yxOsn/*Zn=*%" rGXf^~ܻsUq*.;#74Y iKϑlV&ߠ%Xiu9u `\xBnɧh 9NM̡,驴[ω'0 p*StGl&, &1|pd^_6sDQȢRl!aI9Y=oi՜C-\-D *_-8G6Ņa2Ymc.=.PvڮQ+ †?ą B+q{钫Uܥ=wno$/L:^솰:N0>H8! j6=| z?R gnmxYv7YǺ|+&1˒L v_M4*^KfJ6 Ac=SĹ xQogIn*Ƿmafkkաᯛ$`_3!5e:TB"YKjcGO\̘}Z{457am'6=ݙzOǜaK5߭YwuYV[G^oX޶XɱY hQcuZͭUO:FLQ>ëѿ^zO>JVaU'*[9+vնh^.*͍S'zڀ"Ռlda˩l%@*pvvي8bUfWJU;Բ+$.o A9wW aVVT3D^ʔnA\|`87=!K -q1ߠ S fM&/Sbt9sq:)$Sv"; 3C H+׽jg:~Ej5 d>wUdj`3\bHy&_mQL&W忂eLbP0 d/JD¬vS@LC](g4/Rw\(:Y0t5Pf;Vq3m*ҹ=t>a? }M5(5υ|sQs ۡOFH1#)G@4(L, '> @E]u܌Nz5)-'U07{aU#w$gVmĄor)wb'G\kl\l hvC`"nqLtOx4޹MPU[q5>2p>;t( i\9#8s'ޤ0b:Uh]*mT)1 =i-:W)[P$˛/?_@`Sk.J)B-_/04<Т?Ѝ45D 5> Q-ݿq%VK;` 1]}t!3NiAbe9C:(p@8vɗJ}?O?)@!y^t+A^5Mڟh3\ .HGX/W:4u(bg=`igk;*uŽ|P-k[ƀqrUZC餳: S$dD%a9wXq\u)p|*mқFz16SAUw@:޶4KL8 oTsh3iv$5zPW_SZiٶy+[ {$pJФ뼸5؋- ?hBDU%J5}NbFsFW*\R_jB`? `~ua.J,|TIK~.Ud8Rj32%Olc<{')ʾW hs(--yΟһ\&J7e]du6a3!q]nr5|gS r4IO7jȗLv91 )"[f|^ezHzvtGn\?P,7ƃ-v lڣ&AS;aDjdx7/O -ο,nh<IJ1cMv2@Ǡ.Ks`T<)Ȇ<.tb*K5ZMzLA"XITL؝NJ QQߜFEUIyt*y#bd^-`{?9ؐUU|G0q9͔f 5hO̞=<%65.*%[lW?? q ށEAߖ0.O ޡ՞b,&`xeLħdn)bs8LLo+ XW\p,Cum} v6񐔢F6`"cjp Ϧ(J#(P'Ӓc g]!ev>rdk Jx;.w7\~C%dەh[˽O5жU[L=+V`{i|0N9~wPr__DyBg]o^?)VFS7&k̒*~z<ҏ} Ơ 2-e*+`W tdUF~p;A+p$]ä|Z)X#|ebvgq`o~i4CSP lzBWʲֺtBNa+;CN{w]'aEP)O5Pvmٵkb4 ? 9Mdq\7G#'awN}> I8%)չ?ߘ)[j_tJ[o$jd;1dUvlH5ሑ:֯9s&ٳ? 3ESM~@=n!Gx4# AЮ㺛j|3Wz:NbVURqT;LX{/CYC;N!thQlIlߧ/ͪ#6.⋣^BMjǃJezt\NURDq4^5??,R-f'L@hdL<,Jo>e7~E&3Ό"Ox/݆ɤ Аl#TH[Zp@38BRb ָ-rX>8|w\^c t5Pl(}9 GU>LO!MؼQa-Au pXUfg D9OMv{u{ȝ'kv;FӉt¥$; QZoB:PeEn'4p9bfe[W I+3:> k_Z:Hc#5̲;Гm&Y`'$V Q|{yATZP* ] ^1h8' 1/=;Пuy7,u ,3vs:2Բ-?X|?jkcmMhj>t?r~38Ta`uj< TSTua.A`Rp`i[sXp߄΢p*-ܻ듋+,36չT^#pe\$%BPll9=]Z=Fɭ)tTz8<#d)VVdҴNS`1X-9ZSsjۋn􋧥>9OAժ] l\zϞMZ,r@36QplD6byJGNMFtQה>!xdnrRf!d 8~]e h.C{-M@'Pa[SG7wSyį]OF//I쯩kG*s  N0B[heG ٜ8kJ[{8}Ӿ]Ҿ&F*:~Ai9C@wN=5¹&/CGZ(PS FYv!j]-"yP?isbTq$~u'腳_\:/ Diې+PERڂ {FOHwLr^2$P.s͐@ll/JB3ޞ U#i*YA⾨spĒi@AM 8g+L-FYzx>㖡7s{̊,&S,}?Qj Q*hޞ0z]:`1k#cO?:2x<++{evuD$<-T?#e}XySۨSu}7%J"%Q ȦEܞME/ߘǜGU"Rj&tΪ简u*&(J:Op3Fii.zz={4T!ܦ8f/F )=NzÔR^M!cߟmg{ kBmw@ͬ'+?#)iB0k D?ٙ;u+ x[$ПAm^w,kd0,1B5YAҠcI>qʉ&Cel2hJa.4HS ܋xրقt ѬҵƷ}buGbyX" p"ZLLa$ ]uOPTZfP+s`pa}FD!VU'\8- ѐb: ._I[㲾i}yfĽ+e.ֹz1҉9:󯡊^}0ݐo|̓*W(/YoW@l,W[Q%p* t^2d$GGŔu߱_5*ijTrbrqi6ve.ֻC3VRr }#[ D61/2h{ya~.~ٔ/M5:#zc9w|ӚyKx{$BJ9uSXb%Z`d03 % g^}x`[g&{)X~@HZ^$nڏ[Nv0`._h2 ϽJWE֊۹sC@EEBFiOYStäE8H%2pL Ur,Ҏ_%=q.5dKRSiE%Qt!C91#.Y@3ޓPq m Y"qMc6 %5'cG16htHFmm#wS皋4$sN(g]:p2P&HVNW =92u `bPBr(b@TZ<ʊ}(BuJ8c042Ix\q*-DQ*NӖIprjnO>}s#E U2 FCT)qsi V2:^,AF~Wi4chPcm ~E73ӓmKS}Ņ[r;eVgijWk Ð4Py!? 3^mTVFqM YÙ1GczI~Kc_n0~5(/1Àh+|08v&=% Uds6]r"߽9Uw_I!ԞSCFRߡ{d9yE9.oZRHjِݼarDBpD6%@A"C{0(=ث ][_7Cps352 Y4eEoB~4`̵ܧbcpA ؝YYTُІ)67icE E@=51&ʼnNba`2mEE=Gs4d{%y‚)[< <Y`86XV(ӫ"%+me%ә4K3BŃf/櫷JTZ5+ 9evΚBC*v0JwY {6?g\i'2x SeL Gb9/-$6ݖ ͩYÁjk;CfsC{zvzhaxc+ (Xj9+qgH0 n7=EUC9GP>Z,4Ɗ@tu~-/}k كSP'knnqQ1w! bQhr*{׊p"?'&bi{ӶwUX{5/B% Cͽs. GjLBwȣ4xlL}ϓ᫆NMsϥ3i$Z^ BWdM\}幯ܑ\VP mlgۈ6ƂeFhG۽$Uܯsu~]4:"HBʸX;aǎZH-[01 Yz=Όk8I_ZMuBQX6oO`b؅:c*^n/b HWi/3ɗ[U6AAjg tLU f ݂M`.ytl#mwusn"/q8T 8*}L{Ai#4*Û/e~f>_ 4%ԈP 20fM\~WJhv2h\@o*XsbGZaȾosvڔE,2u#>ri{I*pӞ`MJ_> FuI%-+iv%3&qT-:fcۊTʐ"f[6#50lAcsc;M COPS;%rIVAq2$&!73(%iM 2`-Zz6-A* D$ӛ {&r5]#C8u'2RKym2Iur>iЎ[kPsG9qxBLm}LRivlw> Ľ%U@ڝ6&h#^r#tsC;L([:yhJ'bG;~WWuK),Ԕ"%fOqh^(#YHݞ2ō'Jz-Hפ-`yк^B.jbRwgMnnƦSSekb?^!mUAdP1biFJ.C՗#`*TbJJ ۯ&g2\" /:OI7I@ra?H{xXY=]3mȰV|Kb[CpaSOԇM5JZq^kguuºx1Yzu䪘e tֵÚ*=oZR 5'ܔH<*)RIQQћofډ(֥`;hL L% ^pw_0 x;&#t(is%&Is#`@inBT\'gd; J_6Jsŋ 1\~U w!wY@C" &v& q;y!ԛP_o<#QKAW?ivA]˭i `ӅŁUi&6b}ˑȔvDiSyj/.GC4M7Qѐ{EuĄis|kj>wR"vq\_Th~n 8\@''(M˽0RjIVlxmrulQ@$Qk("ە4*9 k~(\UGA&\|BIYFwyʎy"‚X1aVj,((leVU2oJHl=; |Q5MW7j:Ad9ɹ @]ʑAx۞Bm2WyR iP3_N%H $a\@Է;,C^(1DFg?ž&hexN T/0wRyc$4{o> D}QR{J 2=[6BDL qMlskoBvl__[H(y7Q4q`בfG&zΚ*Nk Q/ުH˂m(bЎ5==忑N8յݔTH/96֍ڃS+)V%( ܦ)sj  39? .WTԋhkbDU$ ??%߅8ACJ_*uv,y!Yʫ݁p l,+͜m֬$\8b_"c7#ڤ@*S-|z(N~hL5o w)vtq %B<;~.7qRd/Y896ZjD"f7j+,eRx|f,]6"9}*$ybZXC}I& /4| _#Ֆ(7'[< f`w bGx䯛zRCClzXɬARaVF/(!Fە@z0n eO)M:_RMr?ީ: lG|ݱ?E}^Z8Xus oPw?t{1FTbkrm/Ҹh٣rkԇaz T]֪A])T#kJӪɾ!hD뛸A&"55nv}0M Ev^^5>(\i09JKZ\_v5[_`ɮ Xg.|4'j !HT?w=Vg$St>ÀF ^ZUlĽ"PgܝFW`m޹B%|pC8_J|lrZ&2N+TI۽NGtޫg3h;Ww酉#Ih wLV(X"¯";ԛux?gh9.9{wWHUEG =6ZR:2a B"`YhףoGkR}R)#,$QmOy+}@`s#SΆj]'03 ^Dˣc-*ֵ*~ %p}6q_cY??Bv%!vEJH1,g}X+b g(}Eu_ʲmM+ώ\@C/ xL9RU8w1oɝU5QI}~W~Kɴx-}?G;\3 dY.5-6@!ȁM,c!i8Z9[F'w ?Dt|#-X#22]Ǡx@p e_œSqHu,X"wcfTѭ~JkYb'n)2nJB  l㝎 ~,|:w27jZT"ȡȫ[r߲amRG.s1e].NV4UA_ii-+W 9d$}(nFg7˰߮>fQy8u]2_ %0N'C&G0\_8G;#3r{mo !> YXjqw/ȹ'-| Rl,jV(DŽWn@~j#F\t|ޘD`S.4$zqyKG)%UsM<*xp5ΗDH7Eտvw{:nO88g~!c%2ܝAˮZfT@>NQP-^c2jQzG5jV]u@P&$ ,ȷ!ЧT HSV{6+,Ώ$[LµC-vؽXKH w`8WVF 2Oyq;n~[-AR_ti|S8BMҫ:> T Cíe^꜅N z.h2 ߠ-z͠be ^gJ-'7a\M"h/[* /]/t_^3⁣bAtE :}N{6#"wZKZ{ުH}H,1$`]9Z?z@G1v!bWx.j&1>" y?A39@ogP, w ,2H`[{!/- [./fI@$[Vّ4kH>[>wh !1f^b-,O.EauZ҈-qG$XD,?m^扱ClGG#:/g&v3%5=d ez:iv d݌7?"yd6aYQogVzB$nZ:@[K\x=qX_6f!Rk!]l%ŘC/p|<2ƌ ZY?*)n@XCnjQ* 葯s൘hDog#`zɵ%GW?9,+'<߼0i>Ld20 uCD=>֙=zsS@k`a`SBh G8Mv _o s1oP=[U:gbtcMXZFYW)`bfDKmȣg6h,&8( M< [Jy(δgz6P 0Df 7K۬IYq r &yy[* ۫@IA;!m[Es0.&ۃ lnÉ@0v ~ .VK$~m?]dt"qsU q̙MTڦ~Jb l~J|x@P M?i(T{pX%纶?ҦcnZB$E?"$"b- r2te?#smtr*LL\/:,̑.L ,QtI"}˦9j<Fo> 0}Jv+c61] I&dE_n@S)6&T e)egPWSW̳gK etɚA qoUӉ8*}f 0,]kN]wBt|rn@aP\0(DQUl s}(7d5waW%3B$.T5bbj/0UO)IB6 Z@ٵ 郹Z3c<#Dƣgd9.NkgR Q&'lе2&kK3ֈ/jo ;ԵE;ƈ)ӒP BE;׹iemb(ń|"fav{;=ҐD)#; hbT/ _#p%'1%;k\J**1E"oO{JoxE?d 1Pgb$ն=؀jBC ][bt469 +T"/'ȧh}&:2~ R;k&ԫ`@5g-&V>z9A_ qb*O'Tνn]e&|J+ IB:DT!2sb O'kLk!c qj斑*4R#^d/nYLyX (ޙ0%[Py `Ӵ3 omJIޚ4=at`.ƎHQTv>D P|!c 8kD^z]'ak+3BCnid}F钲ڴLV1`MKbr%uW2ns~auUڑWvREWu0I߮ޢ3'U]Gw*Ԛȓ qgw]Z "N#ؙVN9 F=}!!k:/ΉO%&_Z )k&q=?k` -5;6K2^!xlHב0nL?N8,0Q Aڏ(Oڮ}j`ERè9?-%;QMj 6żLaY9AJFI' n>m  ? kG'P(Am@a/>!ۡoip[(j--8 <dX|LWRIҁw@-m ,`j3 .4-+O mr\ᤔk[9fuGU)0g*[AF m1IĴ`,%[Gm҉h 9u6k6INGϙ23Uӑw3JPᥑInXZeJ{(EBqs׋`O =S"/V=jR392qyFKPC?OTO@>^%xo(<b(|m؞G,Zژ=n1#)VsM\ )?pM*w^r3!F~}\Alϸ$S~c,=MLZUĸOt6鳝%H2t2kaz| `ԘT GYIndcZeajWsIX*rB20TBڋFVnV 'L8М\>HƶG.yG 4_eg. $1BL#t?·W%IzUU&mLۛGpN$ϒi8}vMc 4+R%,{g_'k%v4V8;]hj[0jAq9uӋ-h,P-)h^EڶOM SCJCuΟϥfNqgj4*#F 7G&*T={ѽW<;|M5X ,Xͺd4" Ŋi%@RL¿Dխ09/qa^SPQ0Wt"z^)::sPَ~o#mؽ *߸ߺ[͏ r߶fMNѱb; .h%(a:/H۳,F,gތ&8mV.̛GӄZy`'mi B2MH:6BWpʪF{¡!1@c9A'WLAe^] ZtdO$z 3 kkCw >=q>)(.!ᢳрLɷW\%-a6޻(GK3KdD4|5.+35)xE>_cJŊ/]Q !%\B\">Qoe~ nqAЕ~# e%rPꊵR|`1W;%iRh@ǃ@^e5;#rW[g`}gq XRƥhlETbgvf@*2@j9 ]Zϯy^Qۯ9)owyS&)ShyۜL̻+5@JsıTQ B@5vj4)=)HNi32tq3܆:5nc7O bRZRTb|%;ȶhy!45l/7$Ew |^eM]|rs./3=L|YVxPm'iX Թ1y- +=t +g$܅,[MGaKt^< +.lR;?#a bnBX5jߏ84Agjrj:uuQNY y*!9X0AcJ :4UJ51Z)5vZBf8PFB&Qɡ HLvVk-[hE1BN^Rx 8-#? i;3a}Ck\׽ ߪAV{a6Q^Z| NB>!?o!Iג]ۋ,OxPuYCOېlq.Y&rˏ Z؂ [,AHS Q`YF|W7:KepԴ]yM;9ܗzoLG)z:(r 4w`т38rV7xwcIH 3eZS5sH"=jpu,~@ z7] Mڟ-l]s#c8A:HTn+%˞}WEgQviC0N<*fdؗ$Gа@ LY4e9ÓDGUx}Xam 7mMÏS29 ^!w Eem8Ǽj#;bHa&(9=Tt0=v{çܜ VsME ?F6 -b&x%\[hVcwv* o~->I'2{&50%lR\@0Zԏ1X?0E @J-sF[VVF0q!=ONɦ|?.cu %{;rgΙr0z]54~84KbO1)@aGi͜ Cbǩa7(aLs-オբB Tmոsy 2OsS gQ\^^ǒ8J=%H8{!6M%YC1[D9]G/,{Go'IАBt ~`P20kr.sMDB-_k A hu)\(@~$HlWcQWm4qGT06Na%lw qkLCAR8B7.x8يeihh&qXY>h߁- Ϸː T44ZgS5zHQlDЫ(WW?%2ÆehOipAcQnN˙I ]$x ivv\DO#Z" bΓy0\8,| ۉԧ'-?.).`v _Ru8#XQO'CmRǧ'dReENE =cO83{JvNY5>B%jhD Zf#:\}=bt0!·_/JBL}eӽv[`-+xSeHb2Km-P(ty0Y{ zdtŢ`6zTdGH];#J0q`GGަI N0AhdsDעm!sS0;;wdBk[+)Un!'B&+ؓ ޵!rE9kv!A\hO9^h򺅮$Z60 oYhSdI!g)="BIP/VTBLź`6e0+@;S+{I$›^?HvKTDt"]EtlJvK/ ޑ8*ǏAvR9)y1ɋ{YT >RaK8+*%.tҔ/zAˤ N%Yp,ry F!N~B֤HNI3P8` }q%@ԑC:{A n `o ÞsLPwƳR m9}c/ OPӊ)muv^cl&1 Wi`YPi"?\Vt)]R2>D '(^jcF=DBG+LHJhB-oCgAd-QzSnK36zO:*f ɯH\8XHoPqVV:gҡg#ݲL̇V'gv9ץqRpϖl ^GKVA q5D/h[]6K 5ΫһDϛ'wo:"d>SŻKޚ @DN̤ϥY`"^1(4d>`3Jë&SEQbLkԾN^{ bB7>SGQh𓁉*:S(? bvj:&,#(|Ytw8g1_7)0B-EM%iCP1>p06w__{ zjG^Mf)?;|׋-. B AhS=vk]S~F&*u\ 'GR'r@B,pߵK=QYc!:BTv`S:(PLETyPUOh4r0 tU{Ƽn?1{-9 .c|ݧXj~uWUC!Xm, G̘co -ɤfjo<@IG V^ZjHQTӽځO9ruTM+ !V 0I70SPZ-4/gGT5:ZY!)h/j³@5βnx.wR8$'1wM] yI'3ƒWPHtQ@׸;N\NDƞC&zt~.Lk5aAj-6i77dy W+5/5!*TPT-tt)C!@nPy4DG!.AHr8mye;;֙HgoRKM*dDqsr -mDlZn,^=9ڨ6yǵ6QFEcd#6`G' EdSibn.eDt  gI~uޅB7JCF;˵HIKb2Yy?#F.1ZxSOb&sط٬:*K,-"A@ݷ x,i=)pkd|RT]8AhU;.rWrC.ɿ$<3FeWx/Esx6dq|֣.Q)'Ҷr(!EޢeB0Bl]:8KڋI:`e M\M x%Z]jW0|x`1Pܢl$:'rdʧL}FdO;_M֋Jy yȗ v=nvŰ:;V|S>RgvѢVk #@/1=2Uum_6@pO Br`zq5Ǥu6%̄`$jfHQtWpr%ɲ5 #lXJq?~=X)t KV3!)s{-2 `5$tH2ieݸY PP<`$~CDOkY837ѽZVyOCW);v~g 6~gk: n6}(N/*>)$S+=>SJ;=k][4`n!w/PCX=i-,j?(YiXtg: G=0>N ^v>#~H?|b/ Bб PkH lߡ֐XB U$>7BttDҕ)ħ?Har)}f3sa*i.GwŇ9 d" 9  ubdRJC> 8[ Zhda Asy;t{C)TEi;IC*hgmh J"巿Kt+gA;o 1UFf1YP6L8_,k_xp<ߋݴO$6kO\$Z| ʟ%8,U 4Ԋ_ߩD,54CβG[Cc xTvԦ2` Z*yzy0!74If VŽq 7SQ WБ Nʆc*;"hdꑧa\v O|)kK]};rKzf–﫣^ fJVG,[O.Pk'gt`\#B (lA`lPOݬ!FO}E [qz&GeC&sh0ր[DFd!>U|Q֣$G\A6[aCV(Y}$l1gՐӶWw M>E}B!%Uwe)YAlRߣwtl /p[r]_G3|o+7U?tp{ O8:ڊ@R$G C_RhcUh2'dqP7A>%Vd$X 6HԿ/} M.TY,HCӧHF=*KfY"u2KxCjigJ0ыKHnԡaE41# fa?0D%GfU08G,@yp4CG+͆Ww\:IEfv_PHے.RBarWT\Zx9dwbpSf3#k+s|}X#FFgIBN~-J*{,-lrQsL~Հt*u1xi;zӄF 'HvV/e%՚Sv򚭈+4zﴈY Bk}J+'h&J]Q^-xx ѾevA5!nŻԝ<1o'=MNVQ`74J֢Y!T}Tԓ9$v_Wn %ۯ*9^;M-B6#[G')W>_|l !O7 4?Nyv]gFS K`w"%=.4|h,9DɵTAN@u`}-7._v2л_sk[k~ʤRrmu P3`\N֌W>][2Ne xn-z !13`Ng# /Έ[[cʱ9 2n\tj!Vڬ}19#w%ux~ >d@B-_nf4q؋'jq;V"Nx74vbcI>k:" 1lNOKf8~z[To`f!}c}o;3jX/k΢7 ',;ɔJl$!aDu,ihk1*KJpv)}y.OɴR9.wHc*P7HM&6Vbk|) (Gfe}SSPuvZ=DQPG:l):2IV[fl ID\춴Bntþ,fzMS*6^ ܫסH0dY. }v@"`_In8bVWde95ٚ3)W'|M&<6~ hiA  z>r뭿~؋ ;3bn \G)&J>}ҽf7"oXD?Y-ⵋU~m.%IvSq4ƺ3lI1>q6b.87K5LدXIH,wd00GƐg[4|h(WkXn-*:`˷] pD[aCqn'o5IR.M~%V`6ޅ)/S͡ 󝧖pز7>>+hu99d"NuбOҭa^w14pY.`N/V`!Bǧdǟ8"e2Х~0 7gyvz7e>Zj̽~7xһNL={0GJR%3cX b)-q cl kuPp"{ >d5Ǟ$6Qyq}D MK[@8Vt9-N[_b` 48|'LHixtTzHdLdB ֭NI]j,[1V[33ϊJlY\8z򼧧sPe~]"^?XPrHfG2pZ`dḻthnay}9UdF6[dKo Ͼul)fZlJgRW&9{vsޛ',~Bڭ)wI‚ʧ<{3$@cULG{UJ篛 UaWuIMz(0Td@~QjxHPu(!y2\?  hKMW}jHm >7$d6Bħi]Ku9Ls;Wl5IQ@6 qT5R'* F" ^BWp s'H 27PGX,_sȜ@فU[<Qr)v#ǐ; y@>i< |mT) T0|t-<cifHˈd;^pq`)}7T |9T:9@z<{˨g۠Lf I ;ܠ/IgqN7n;?aPoف=%rR01*"L$:,D۹DlYEcy/X$ي#.1)j'KЁ Ϡמyq_Z$nTJ *f[BgF.paE|6_D.xrtPf@s]8z,w<` M nڤk2ooBrF_t:XxD|#LAZ!<>Il23mݏVn>> {={N"[–.Ɵ1Vgmp,OrAJ#G9l7HE؂{6}+̝MrW#/e*kj1R (]5=:Az ?O/zuoJJJ.Q&ezÖ92/u\tw Q3}Ui(r2.|S vs갫UqO:Br%JѵGzԱ V*ԈI{͵aIDc YCoIF 폏X:sZu;b^r Q ݉H HpM^x! a~#5Oex=Ѳ:I*kAcj0 -m`)qofe2;aع; @d]"à7Ɇ{eGԿ#ǵsm=ce[DZzGRYJ/L)-ğ/Stѩ;@T14*u՛ʜ؀Ll!/nxz+ؙ aIc#~q~Q";j(@b}n~g j J6q@jY:[tg?;g*ObPbq$$;ns⿣E~@}zň&,C&-slp8c.H6eBHFjITeHv/sG tKEuw{&.h3Tu93Fj|OU%(厽ZqBn?}J?/ȱlKgǪbD#:n2>[mxw,XTӚCyI {B3Դ^2EjGrfX{ yI}v/KC #y3G曷hHhET*2'WYUKJ-WM% xgV/0lyקTZKeqfT3[:t_ pI@㶪QNq7;HB?liaڔ7-%@9$pNp%spK@='~KӭlT|!AMsAmVJ{6\$?Aᴄ0_Z)WVG(LK.E_H鄻\Oי3ֽ`Dgt×Z/mW"bJ1X7 X؈E@l`| ;E+L>mhp``X®ӋB_=a*\rřݡNQ~ir Ɖ-|^C\ VtĴcny T6-^ߩ+k} rd灹5\LjZp_IXEpL@tFNL?TTSI{/?rQ)]2.\w{mGdF깫&_eYEЫ @a5ڐ!h.8H#Y"a'6[[Լ[kJ!e,vȇ_wn%AZ(&p ]_a4sRSa}ReʏCg .nr@+lx1zN,S}(<f~#k,mo`[H>Jd*sQ6K&(%i2B(0JAf0fegPC+-i@{Uo8g|r/.*NYI`4jg|%m!nSd }eFݩkU)w e~Z\>/ I~d斒sۥ\uo}AmsgH&{}iN\ .D (xQV:ԟ?x_qFK8!U1B)BUX_)ҡ471YI[&Ppwe y!ư !WW[S)p ]LIiJ.ЅYtbθ|4-BShuPXqME$1mK AL-`(F)|2'U'Tm,*nb3rZ! = g&DWhŘޗI0JgSbN)a\*]dx6m^m߲3I${V0V6{@:GSK-zƉ7 } ^5^ep_?&š0`BTYa.\>;0Hsx>YD=O(+w|B{_6Q8KJS`nͯR1\!QZetsNK%? :)TL j5)ܘ;x qx3ǧ^V܂$Θ#I.Tf-h,)j oš' czso:O?9U0ƤrgS olWY[3֫5x K7\FC{!wCWKNKdBUGLOHMrom/C$1S/:ل3xW~eNc\=.{dSaPÿ ʢ^nHy'Mص i~իӔ lYQJuox$c},$v}kN%M S^{Sk{ T_xyup%a`Y qkmU}o0mrR}us̰5~)|ֶ xlFjR8F=xSq` &@;ok3pbɱ+&lUS"\e"x$kq*cEoo7`'Ķua")_7u>]Qܪy݅ S4/[`m2AJ&iPƲ>ą fş*۪iR Ӹ{dqnqD6vVqe%Rt :m hWt7KT2TE!aΫa}ǮHal.p0q R;L<'@fd镵iF#4( ~y;UK bDk$3؄prs`rza08>i.D3;l6%S  sTg뤬 9Aj_jeȥ.c?}P\5 y!|_4p`.ewNC%xJ"p"'ӂҌ7&X$l#S[kd4jF\σmJjvkq^W.n'p+6Q)*#cה6]d,nyoNl#X-U ū&e2bPVzdcTČJ/*iu=<4iz=2hbG< IQ ;: Ua-;a2 $w򬅕6E0/r'*GƬz3̓-Á =ù\qɶ߈r QM(t4N:Sj?gĐ&8#o Bj]9U$;scy(0HÉq*S Zp`5֐wzjkh{y(ˌ[^Hw'X-2##h׿PB&8h%|;Z .#qd:v.-(q$e>JH}LƯ:8ΗSxdh/ors‚$gAJS |I[}='hV)DE|&UYx@J&~Z -(c'Żn kg5%{Myry{#C6osv 0̝YpL^J_]L 'd>˘q4FO!hZΔfI(5q i[AvTQG\OJf"EqxiΡX}m)]GJb7Q3wWL _7>⟰\W\2.sohE 25ڇD hPess h5&Zӆ2P=%, eMOznb'hAS:<O^54u.? mJRBMbtmYH٫o?E<;q%={6֜?#zO%>?Ȝ2YM+_?6Fv Vcƅ0xiH}~ZԥgtJbhoFovшRpJm(bAĩ7@%Ⲍ+wk@̾cq4=)SvmdkBaC9Tes dPYO5}!Wb*,Di[acVc G܏:[ /0o!9ҠP<>JEc aYŏQZzi+ӺF(Ke,аS P8]h})FM՜@S.dCn3lbNZGu8rO[2n䴢0JK%X0@G*}k0Άq'5m?ܯ=/#>5`2d0+:jֆxT68SQnM&pŵL$R:!37vuONJZB^cWTyJy&CЗwOGGqмm?F=x&CVZM4%WebiEa *s=΀b05]IY_M93`kqqL{?lhHݘ!' <h6%鋾ʫ.|0@6?먼}4d/]M3m dW|=]_EE8}JbkGmHHۘMuul_ĝf 7{Uez7sXe X?ھʄEFT؍3cxɴfYI,}_eYZ&ʺ4ba.pE$)3ƖVKh)=ߎσ ZBd)W n"ԊĀč>Fյ|Cn(a{RAR4(u&\rq & !ZCJWAqp_~ɤ񹐰}KS/mD,H a0*.(SAIiw\.43JQkP\И x0{׈2&̿s>L/j783 a˿V8ְzSJOݚ%CFR6z,hձ@{W OI0'\F FӝxT!ahfӊ(Q+Y\kv)=]bLtʗr>R Kf%V"Oסm#yv̺腮:bS!c+&N`Q~ 0%?N>tQ, Np!)i&?*"g}ߟ|tlIw=&1U'0vؕ%C*RB&Ӳ[UG^)YMlv|bPy+XL(pa u4b  W, 'H*=FS^+eԹnQbr-\.8`#C~Yf OQr Q̓$tUXsdxZ@5"Y_=?x"cuT`{qPޡ/R !c7+fsEӷ`g!J qLo^r@񪔛fȢ 8yYQ#/=+atAHN6K^Sx&7㖱W=$_hTO0U4 uv♧ՏKDQmQRU   \f:4?Dy_Ҟ1&4'CTq֞SLǯws5R|L_P,B(tM >>$Y6Co n!t1"۰fLK*l$]@CGotPyaEe&E=#Z$Y`@niZ-Hs˖ڻWB4ٳ4鬽IlYT qNZp]\ P2d)*O4H.7Wt`Zj,2߷yts/ƨ4#VHZG@$m֝= irG}dp="pZ43V~>%pfn}qoL`5_ s0P>V)ʚ0ȇKEHwƒG 'ڞ(HXa*5#^5 NwzW_oW:q-r3Ji;Zj:D]d,aTl%x;Ms WbQU謼f󡓨yq_՜ f&`%WvhOp\j6,g9; ρDIP!eݡY}*AJk:\oQ`rXqꊏ6.#(V6?opGϵU%R Nxc bd`\kD IP&ܘ+DKI'W486DR8i%Zt[x*1eYjZ[k֍72_sF8]%t_#bE`K65Vb=4jAYhs9F]65A)JsFdo00%U OSQP<#+weA\iq[l={ S e_T#1 )]-L$ @9fHQ"Xr-7j/ø,қ_)M~ay)lr1X=&E:67hYtKM sKp\+bd7[]k<d+z{[׏^([${Ф jk@ՀjЍ2Ҿ "h,Q&H FAs#62A딨N6a;ڡ06{VUU_ThB_*ua(YRSb~nLڱW*܁v3.M+KS