go1.21-doc-1.21.0-150000.1.3.1 >  A dՇp9|Oh£,NL/ɂgg/5T,Va ZPՁNF9"sh"4\h 7kd{ik} ۬~P] I7l1l@P==Ƶg_>iS͔QE}t6}'UY_A/n ߕDxfo 6yC}m y2]BAUU6*A~.P8)a.0ryܡ_ء )ϵTxL~3T0865e7b956e9c91468da190e08d343e017771b7565be92e16bb525945f6d224d3744c1a48f4904b3f12cf63d963b8e73ddc6bf804dՇp9|`dнj2!jy$*i2,Tg`p;L?<d  ! 2TXdh      4 y (8(89:hFNGdHxIXY\]^"bCcdeejfmlouvz8Cgo1.21-doc1.21.0150000.1.3.1Go documentationGo examples and documentation.d s390zp34SUSE Linux Enterprise 15SUSE LLC BSD-3-Clausehttps://www.suse.com/Documentation/Otherhttps://go.dev/linuxs390xMhi+< dddddd996fb9181360d605adb42c662c36fb5884988f29940621dfa8b7895215740e3123c14365f20daf6c31123df409b281bc131e5d1f88fbe543b1a68b5382cf6e7f31eb0879010f88e534ffd161f74f81be18135a5cd8d5a688369290581cb24d200a1ebb3883fd48c24f3a5807f8f21d3a627b634d0c2e954e0681b6c406a196bc9ba527b15c4f2ad1bc28ac7432ee837ce7bcd66e0747bbca82e1c7f6d96a2eerootrootrootrootrootrootrootrootrootrootgo1.21-1.21.0-150000.1.3.1.src.rpmgo-docgo1.21-docgo1.21-doc(s390-64)    rpmlib(CompressedFileNames)rpmlib(FileDigests)rpmlib(PayloadFilesHavePrefix)rpmlib(PayloadIsXz)3.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 trackings390zp34 16917353081.21.01.21.0-150000.1.3.11.21.0-150000.1.3.1asm.htmlgo1.17_spec.htmlgo_mem.htmlgo_spec.htmlgodebug.md/usr/share/doc/packages/go/1.21/-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_Updatecpioxz5s390x-suse-linuxHTML document, UTF-8 Unicode textexported SGML document, ASCII textw,z3Vutf-832a07e717fca2a1bea50524791958c2d77eda60616e4e23176a12aadef701ae5?P7zXZ !t/:] crv(vX0:3DKvi22_k1O*CV|R1Vk\5Dk~zp͜EVI_8eRW>B8@o2-f[ hFҝB8 fJ> |_.z%%F w;Ye`n+e ( ])|;XPTN Ɣ(OdI[2\D\-u5zFAHjvn"J$Q+TY,VzHZE@Q!+ByVE7mvG=b[-iju=` 'y(JAxՅ~$lң<maCGgX]ZeLag37)k J '3@-G-У=>*p`P_ j@qpO[`4o4 #((*7xGv~MG.J3h=l<Ϟ&XuyъQF:.c+tpnR =ft!%E2*\kl+KW\kKB ?q~vR 7u|t*? sn | D#Z*Az SbhGN%GSɅz) l{OfksZq=@-eI;0"ZDj(2eBݭQ̉f];qr_Rei/>G~Itݻo9#3{?הw#a&$^ CIc+."F%h~VXNEy YBϽgWɯ+K=ďwGtۏe^jæ D囔5 =I ;mFNEUk7F,[$(n sH ި/i ^"}L+Dc3pvykA'}Ͳ6yIDj9-2x@qK3:sT~9VQԤi`-m7$?f"/KrJy@Kvwd1?E]XFx7.$g2j\u=3Pl kVZZB{\m!~-uW+PA ;q\"_8#^:,oc_fXb:HaD8gⵜ5Z! AtcCd1<0M'mmgt|R95etX R 9o}q(ǨHⱐ>U8/P>$B_/;,bj 9Ds{=q.̜u*#aoӭQI.~ăkjem>O4IR+=A.F1tLkY>;>:Ex3ԧbɥc1GJ 7>9!HTp $xoB}_@0t &[x5BV,O{L1{ wte8(O%#T| 2sAk8`bl9:l!#јo݃lFߣPFORg\iđn-HM!6b eܪpV>E\i7p[B .DH~'<*O+ 62 ά|R1rgP{V|x|1SV-✫5׿ Y,gwmB,#AGEO )?2r5Ctj[׆~.%:f#NĖTpR{'I VsV0p&51ADMv'nIR SKQJ0/۾cʔOHet({y+q\k1T4ڪ{5[ɳk!%z$)2}xc#yB5jol~'_ f 6'Up9bQb#I)k`Ҽ>kB4XC_hƉ>|<ndc%1uKy1(H!KFI%P,.CB7([JeJ`֙84+v~$+dC #9:PГ꣇۱I;<8 8!$h~=o6{p:GGЎcKv xYl<9\Wh_v;rѯ$m4!Q71IG xg5/jFqu*ZձC9,?&H3> ~sZs=T79() 3w,AHC,^#Է_ZjhQ8W= Gb?~|g^X$w@oSJ-,F37ƒsr"yYaxZ`9ĺ+9oZ?mlK)b˯W⏯V* k?zf 3h4 58-Fex`{¾~7g<{/kbRIP2" SdJrMZbMX{2/"GaظkE:$ih$y ؽj-7Lc^sj-5jg JV7)]M9vD:R] U8) Hy:LoV,xͥ˻vM7 wz2jJlԱ$LQRj" GmOAcl<d>7D9RqmҘ )Z¡܈.3_kOVJyrFi8QuUoB&4|pC*sCԙA:q6Bv ^CXޡy2dI0}kNN@=l>t @/:Q@L)GZ )j_ZeCA Q~n9 \wqgm;z_&A(||SU4L3J[r&?$3{F'Rl^x@t, R~1CܢO ;>>9w Ρ^{ƪԷ pJWY=,%2V\kF E_0-:e^\a'ah6D)!XO21@NjamyDĐ6z3ڭ(͟O,z.QDϣR2V74(0\d f8K5FXj)e7b>9-+inXd] FKj-ƔtX¸,ks^RD#R+' ]yЂ5~>̔o;n8xLV@ʸ\̘gP< $t|wXڞ$Oڌud;]?sj3C&϶ 32D$A^r#8u>%qga&rpyTwAo/?us.Ys37}(Џ|閔Eflj |tEA޳pN<(U;*&!酗ЅiF^sn+ڎw6vt~AtjN}+TT~+E6A ~t6$+͞c*N5tX<:9(5tseԥ2fVo:gi F8]|NU?NO8w*=f 5H?';(YnckzH}Se)w#W9ّ'kSO،NEA(Jw 9kۙiz4uJh32JX!\U)I&we\ ?s~1\@gLlT$(DܛʨV R:J,=lȲC-l[;{%ra߉ss~ߵIvmTKgwu""Szm^')V L.')έi}#s˖@uB,lY檶0Y|(mmq(@"OqDExwCcӲ2a}k>hF (EcmȞ=Џz^U:D~iGý\X~#d_= i8*5Dau˶W-}-5Albb#3lR0qizhPq n| o<Hɞ쿼m{5}]P*mCj#:"j"y7t@ gy- +ra-4r,k[ n>\l{n:!zzt?noa}5ZHMkRE^"*# }A`x0l! !Euʔ3/I WrH\rG$%`UIo0}%WQ=TG@,'3_xmR([y*O&XwiQl_hqau3ziOq׭]/BR&Ks)D7@2h8Dgk+v?ƨ[NJ*ꌩrB-䃵Qmn;R.Q4h{)GOHJbd?z}iAwF "96:ȪKϝ܉"Sq- ;$eYѳ:ws߮9+7Ɋ^a'^ʷpfƄ˞)6g|B{~`*vskAaʡ4V‹S+KeVE1jmH١%%nnYY YZZ~XD O2z,.l5LԨzrGPP't6_F X*+v,N2?jS'NM]T 4jNB~q uq/_] TyuÐ}!Gd>^#DJ欖uLW ry]obz6&Ɔ !@n !S:r'aP8Ul-Ɋ$j׻Ib"JESR AhM@ϊZ>yFfR2w358ΠA2ƄZvhFFK,[)0dWKhhK W0,@F_#Vj_{~y$0:SbKς7ceq$I̠h+?菊Bc({6Н0w5ͨ ҫjNXrOKM>}SNEI%,dDkt)Yώb%Z۷AɌa0!R1 'tk9GR]ق #NG*͠f;ژ𔐧hPGJ0Q~2cx+E*TMZST0ew~7t 4O.`i;OQ,nZUR*h0j$P+Cjw U ϋ3)?VVRf݄GjÑ[CX ̘cxc¡&њ!Q6Z C\ ;]vXF-&_<-_:296oRN{9,:m%`άF?78uyVF_~҅D4%j"³MB 'oꨚ]uUX)othgkS2/P+=!{KQ]ኑ{ߠm 뜏#  o Y}cTAi-@ybC '[_';W1F$0r& :^b%44}uU*&J}Jee8,4SS(^M*L|KU)F4^i[w_W-& (J7#`ڝ+G&7$f7&6fqfTsFzF]m[o3:;c)?'0U5"(M%PO^!B>Tz ԮZDtנGF_Y S@h(0i, /jb&n۰`0ȕs42[Ofh8weg8?t<fvE֌k N@@xi\Z<[cp!yh%ސtlm .8c 7\{_g (!'ip$ex )#$7?o(;n{> (F,տgs0%B(yGk]e =+j6ٱ 4 |O/QWUp&"X]s_H{Rq*E!|YXs-s0*8PJ*QDE)|ӪO4f$J =>bBON8wKH= AL6g~*-{?[Y>v^l-<f,]*L {_U8`CR*dK9h9#ɡT><\sBwT }5S$c(AT-{Nɮ'`Uht/-{̓2"d-(.Wc9\x9|.LDuZI`&;w͹09;Zl1AmىIGS2[*{`sςF˾469VHUUc5odA_uړpx=S!-[Ds1J1G!,$2 ) Yr&:.3˭if]¥3Q:k:<bA 5Ọ ʸF'dWN$\)N$Wkܴč;8qGrV3:HUA34:2v%3 ]UNjڊ&-2`p!wʀfKmd^RшEQJQC[ G$4 <@lh+{;=[-'1zx..7RQLg,f$eZ&gùvə{PNd3 (h:L--XYMKZ(\E/Uc&OX;/]nUZcD!{[ X_?ڍ,.7 m1z jXpdh(z.<*z>3 r!p]P(˺>}> 'PZ@4::=@ŝd6rʠ`n^4p!2< ,/a'yQ,GquX4rh;<9"- r%Ža|?g.6κԓǂ)iy9pR$vwNA/lq{@-r!D0.qvř$CNNuĂT C&+W2f-h홚uW%|vjD)Dm l[Z>Rl!O1BCuPOt!,bK>vwQTf)h|rb Z 1x Km!8XS?گ{i8U9/=i럓R8c֮"'B: Ɨ^VbTKn7b<0TzCPZ:ƀ頋0LL'eQ1OC,7' NBZdjVb:yI2>آB!|kl ѦN҃p1xP{xp_@1oyYD, Il~(oMn*{o4'N1wP>M`^s !tݼ= T`GǶ;-_Q"3[)-[BI|ylX}l^:ۜL4<8Ninmj0AdA (c67<^(Ÿ>9W5ԨԼugc᫽RQk|Zsuq{_we&^% ӕѩ) >Ϫ~Phӝ._Z3$#ƫ+Ǹncx?IٲkV!`sx>|+=@y" gNęfi8EE0'~/f2ju{oݎv$giƋw>,#"ܐ;Ih@YFY?!z*zosz@‘"\/BP0=j+_]Մ&BsX̆&aLjR;k)fN s䠡<|dXhe)r''C񤨸7>1aA?!  UqnPZC>Kt`-l*r"3 g!]gyvn4n`3k`LVʵ`ax$N|䲳4Sw@^BK"/ ZGdZd8)7@PX0,q͜D;OjCsƹ<fO"} h/Ѷؒc8Y%Ol19bwc0q[DL?E垊^ $K;[qf##U֣33h!i@1 Qpz|C!Z3Qc[E+Zk_M2!Ru oIW!KWZ^ErV`OuANcH[iluq]e2[:LmGXOC d6Tu%PE*0w8׹nY{-~3h׸.x1b*NXCk?f\X,'M<_ ۷O'@?ihPb{cq_@e浴j1oi,CKjXq77mg@ۋtGmnMmBqPrprk|2wpFWbܒJrgta`"E+PBzEmiWqIN qB_ g_m7E0ZKdT<(Fep{=JWЁF!H4[H2> OҮDȻ9di4/a`=M @sM$<~=^k3H#qAD/+[vS7oJmvBklSnC1v31o@_k;g6^|aUPSս|u]hNu67/Dnh QЄ-N@ޟyhgM  VcҀvђ{h;oIJ6J'] LǏ1+Ƕˋbo3 ɕV0WmHHPKuWu邛7ZK67b, EٙA9pA(/.v/s"1JH!Ju7i-$> ~ݗ/zL[a4][2o,:/u˴ӂ~Q2zۇ XuVf)Dunui&<5/ÔaNS0 i~HGa:/@?kn3#]ikjn;А##$͙ B(U]6'̈́}HYb9Vz>eL&N>,!zS{ &N URsU{pBN=v a5r5k⹭IoOwBܩЃfdV9Vit?4L@*͞QF>ZǼDdT:zx_}AS#D1|Lo)MNP#:o+䱩O}fE"8.1/ƍQA2͝4 j:N?!re@ڔ[2҆BBaX@e-E x\f ~)&n5A@o!L4@M, ȰD !瑆+LkEH"3)n<Bi70#I#/AY '#j\x13.EY `6lʓM\۝];٥"`*U7=(抦"0J6+kW'p%r /_FSt گ#QVQ>JfXyƮMao(Tn³mb[ՅuyEm8c$XÿerZ/@'^0ȞˇZ> c*Q[4.6S$;z#eLMrڷm'Ol6Tg "y$w?Igc*8S4Q9gXzmv%>ӼEv5lDo!tŵxc\048{Y\9ŔBiLbqMza(,X!ѫ~Jtg$Q-1/m*圈V3rju je\R Jݢ?٩uuD<6e|иr]&]th}:on EQ/<֜8a9+ ?*=_@Ṱ~Ѥf.GO&ըz_4i=6Р ǧ "_ cG+I Fڏ?6DOWWcW X$PN^ <;\;hlϊ`hr/bd qͬmmI|yVaȌmrt߬MU//#(!6yhh) TF(=gwz<9_E/OhڍR!:,Ki qQSW߹+4g;pQe:a C/rGJ`s`G tJ&RP^ju(Vґj*+vkHvm]#\諢c悧pZp&nمݛMV0lXmBk~+2u T.Fg( .$6lJOf{BSHI2l+=CS_v\F/H>w+_  e--qm%70FW1 mk;06щ"l:R_F3MaHTYqS9!ȡsqt$QF0I!o(91V>{";6' g۽9i.p\0^+ zvF\"arr0fCQ~#Ba_,3PuvI睌/qwxޏn}6ikt=$WqbC^; [_s(h_-4ܞ3#4Cq{wz ")F6}Zmۡ8]qp$LmCmi<"Q_c $`>ާ0k@ͭ[ʔ<P09z"ps)1~Q:dUX}R،H/w!N~ԍyxsV.4l}BgBu*$ V撀s?!D_3H_ ^ؽ+{mhǥ/q\VVzF"xw9 si]w06O+TrIF;rߟ[<Wp5pYR%O~GMۼlr H4Ma×쒕>aǂ{_z 7t< ۨ_+T#u30ů}G/rm;aMFn)q!1p,W AAnޚ{ ue3MRLHZ>l#fnder=_3^>oyBc[TM`䨪y2B7Nnu*K ;g ]J)z_4=2*<)$kN Fʾʌ܆s"?=j_z6?\v !ډ vˊ&B!ׁQ^ KHc7:9H,{t% !\R SńY> 8e+Uq-|;CZ>jRU+g˥$Q55Ɂ*0]"Okn.$7<ШZg%v*$y"Iۧ#u]3{A=}sf_{rcOCn3 c;cR=$l*Ztǥ#+贸]dkZΉNIdhXx?=.Ș~ ^?wEe\l /Ѭ@D#t@l)LJ|Y)Ş7tv B?ïN7$9B  ̂ J!כT?+?`iHljvޗ3 M$ARXxX2 d9R,>Ր5] oDZ %?Fū?t f(jQ(8xO0&p0t^V_`,CuԵ]ܧ*OVa/0Ac~ ^-!!+Ll0.5|N9smiӫԳF6+"+Bv oK!xUSРT6qĥ:duF@D,Ǧer&6tJ&րwWAs١kAf c,42b $h=mw8l=NuH3J|8O]Fne([,NٔeDy?F *֟˖9 D;(A_ gNGJMbT?/c ,A*jq\gf{>_ȓr¡|?S[l -V 0Eq*eԠ>ޔۈ5+p@yfNM(^隼`:c?gtG2,:kZ lG*co\'1Y"&'-QD9H]ZL"Al<7I n8Pk f"O5K9wӟ+flr }-jw*$^*Og_Bn}sJ̵PfD"*9GURL?q}hq:J46%Tc(`b`]aNݽ(B7B Tp0ԡX"a+NMf2E}ɻ.ӷ~M!*_uŚR2/FDا:E.:*q7><7>@MTT}ȖY%cnz^]D.„At5Q"ڪ*[T;L)fTpܷ*Ǟ'Y IU\G,ΫyK TŁ?VHj dYYy6M~+ Zcκ$gN@xGhY6RΠ3=:+MμX-ɢ?I=SL8+W%O(;&V4sY&f:▒xD`(QwVj~AI}ퟍ samr̨AGu*RC~5my=t݂{F%Wٲb9,PJ 5՝FZ CmsChPҳGz~¦mܕFzSatz3ŝPRinl[Dr}N%nukJIGD1" 5n~1bPº<;h:,0sOٞ2LZPlާ8NTD~vZ EٍsYwn81C|gV^P;<*rNot:79Ωܖ_}]NثyV/4:CR> d, WĆ\GiUDHXĀśfLה^,QF-JX4|22[4Ir F*iHNFcsV?Pve|r94g-Pc;?U2WMTҠ AԶtYcF  wB@3tGOg '蟉 !cyq=Z^x"¬xJ3P)/~HL!bv%p^<mrU65Hrob@xr#<7mۼҶVt @2t!z3{,,/":V8~5SFPK8*ץ -+5|!X7kre }Mz5jtd6 =c(c8Nxfr_\EW\RMHAt†GrV&n8H讹rm6FRGk)5;BZZ#e|EQirEy Qs̢WMdN4]o=?Mq ݂a&c;Tuk۽|Ѯ}9!SKC /?gb.¢_V6FڒC%^k7.E' [-?XMܙR]׹ ~-'TpRzSK('bh\^jSꨟ&! L쵚J FIn(mv ㋦攼\Xqc]AԽIP1Wа$>y[( L8z:+BTce?7Q"șk$ʍj&R)?)c*zaaӻ _wIǏ0=bec7@5yG&˝ߩ!ʌ `ʴf !(/ДdQ@#գ$,PphGljYy;P{`b6T-j@TD$|Úm9W{Ƒx(UY-T4Lr, Zrcwrq$V.~؂'򺑭宼)n?ua c_D_0݀cPN#8+i,s:(jV7|)4abo7gsRH zQ8X! 範x8˨JIo#KyS",W%E­N`RX@Z@#L)ZwsJ^ȌXߚ1\OLjQ~ƋdmK{Ma%:kX6EţE?dty''u2B"UNץn1Ƨ%>;Z&rN qhg8ܕS8 K@ȉ0"ҡU`^" HSeΧ]ʝOP[~`n?&Y[.͟k륛rsi{׊zkF)I^;{]Y#V),xՋ^K!N5qDZF.jrpgAC+?+^Mr0=x"y{+6TjMqlC#4bL&W9Q*9rDY=Uo7}wQ}SKW4"(K,XHF{K 叒U( B ΀H4%gr^jPqQtK#챇*xH9GEsW?htKS(X`C}8 YEG3pඤd@AϹ_tٝ.j0`r \թYasYbWP.јe »w{Be,AMj:|;$|Rs͡t}RT>Uз #p–Mk2u?n3+eMR# 8,cèK_I2Vh3Ҷ@k5y>*ؾ @u0$VrtBŹ~O7ULٕRH집g `6/z)rljBZ{J̃W(8ȥJd12x=D5Erwf *b|voni`-kM ;B%)/@(W 1F? IVcƘ\ <+:TnQˠE*ܝ; b+h (6L5AL WV~zV#dsr0y=z#Y1w_TH^d-ߺG;YUzv#i@FQCRzʰd L~2wd7f]9 |`%HKr 'rtjN?QhAzQFhLc 'H Im_LlP̜#5U/tPfF-wʀ&R$Cjɭk30B0^ ;ThW6I{rn'F->e}U+EYd_}A20AqO>| h| AʋA8^(hXB!EDm(،!HnNʧ5&3N]%冘Gwbk*w7 SPiA"=Њzl70RvHRG rѽS4Ї7<{nCc[Mͪ{tH,׸E+\v.:՚_ 3|#Ŋ f-F{>ddAt!S΁O8qלL=P:0%ssZ]+bAY=jlM+Z@G cʛё^&JH ;8ݪ.8\N5 0-,ˣŮsAH ju4F2v$秇KT2|)|Y|Խs|pv|rؗ0 /T"s= Di;/3B)2KI^j!﹌jU#G#㾾rUU]pe 9;>B)^tb% ~@ ڴS)^ 8knʥ1֍ 4G cNZ/Ãp)Y1!)Ֆ&4^n.V`h*3bǵͷZ99F_{_:(g[;^-o^K_QG嘹3Fj͋%U_/Nb]=Ly!ܢQ vVYDvN@bJh+̪J MѶWGltq]A<٭Ag2NJYa?*xAZe}7WӕIv$1S﨔 S?kPp#ޙ^+4N}S|3Ȱ/Z[B+I%l-)yHe h'=x_H?U q:fV: ;EU,c韘f٪tJnI]69j?g|Y$K)ObpA!:m v6"^+E> w{\`utxV.AiI\$؁ݡZ]y<Ëkg0,ݩĊc6>t/RWk<8[3i ~ong"=sVJ>3"eQjyf&ى;M8|Zwl"@lI~&@f7!4tV$EDj[`^PERXںog=J Z@\2ȌU՚+mqKq?QodsWWӦDh*\#!kTSAFNOH0/UJg겊lg1}9,#wlyII_ՑpT 5]!Q^>T{rShjDuv[g߃|<;I2 Tʖ[I#7`G)DWs$f v.dZԍ{*?3Kpx6άq△}U6ۚ+:M <^u0̎ Ё"&,* zҮo^%ۨ@VܢxW6G93_d*?#Ai2p=~֓''G$9DuL8 M"UDwP8;=dLy /яߜho9NXЭw..Ob@O=}?3Op2e]>DNtm*s1\0I(t#3ӛs6ؙդ[D}*cݟY1XUz.@VSJv{3v k l*_9:)8<8W>`-y'Cv|/s"lwmՀߵVwð+"%̭B nĜ-zLV{G)6h}=y)/, D,h, ?IC̀2Ih J&qt6zsNv׉r%Of>Rӵ>96݋}) 뤯7g̣LwNY^]WMJTNs5CaAbiYpb4gNenhivjvS|ptk cί/q ze=j,kY,W<l6OWlFZ,5X_%C@}(k!4Ngh.s멠r3&.I8ey q11rQ@i*`say _ JKoYz>G\EA\Ya׾ɹho9@×x-ǿyD$xC1>vns^Z\3Fmcavԉ}OhJL:p'po`ʞ9y&i^b`hJ/n52b`w M}̮#ܧ[J>D2ʊ}FPd'Ve8ě؆6B>(o䖋‹>U]+%/+7PҰ (IhZ"LC\[}/J|+BO:z7qL(9Z 7HQtU_3Mi %TYbNxLp,)K0  ziN]r*BT ~j{hX1gM nP{t oF7VZ(ì#|]jyɴO8ll4mX\^@XA+S`EGt$SbFw<;KęX6я[&Gum-e]u'Y D9l1J`Q0JޕAiCă-"6WUi8,%d G|]:XWpg"}s4 $ M%%Wd9$wͿf݇n'84o;Y'+X"i]j[9.z'\1.YWD)s'^x;OYj h?"`8B::2T@yWr;Ws^: &F_ Ӡ4J۷١^k!܇T20_Tѝx z!4W6{Qk(j G"!}dAR,Н'ϽDIP< oս1~- 0%K?4 M3jD${#r{X[x\{.i <0F2"zz,YKI˻еB1H в`1JaWɝ>+~!%;Bfġۂ1ўҾG.!ع0܂| fBR+8Ef%R]0!NT_̱)O?JVFٲRCIE|IOGVXpZ{ڕ @9KDs'[bɚ}\L5~\"|%jbQd] rL}=E.ұ~'cR.9_x̽݋"vMgdj? EHau^ 1TJvyO ڼ2I} *)v%^il(W*&m€6T0ƺnA[tL%Zy)[NXǞ/;"wSU)4 Ffœޝ5K8eq]&{3;j9<:џ>i.2mF)TD<6;.ݒC''?ʓ%SD짨l;АէDE6VzvX|shR8՗Uxq {Q4Dl&z%yB%s:vZ2išvX90ʐg*&cEZ>2Q9 \&lV@101%[Y7$mL8kFY ^C{*0 `J皗!LA~8֪N10jQ[0}(o0:ѦBo3#я钧%n6ϖ@Uk2S#6Gۀ=)5ºM;7=Jp#@`U+ϙuQ[-$iáX-J̧5P|䉴7\S˱`t_c%Z|G%Py\ɗ&/ޅ3z FV]81'YdcѾE9OxY/g{E#L9w0S"Bi\p)rz ima5B℮&tWz8sC Iir y!)_ \\!GNySA {$gvN#ϻo=~D4,FߋNJ+udܰ@8u~7$SCԢ<*q1ݴʌ)68_늎ϲ $%.d낭9Q,א}`,%yK^}¦*7%3ڔ qZNK6r" Z/xΈ(nGqU"Sy18kƕYo?".]^F@ƌ I_Ag J cVhdM.5Z27O4˝V{Xtb"NSC>|#/p/Ϗ;/-kHZ{Wש`9ʧh}Dg0H`u `JO+bZnW8@s,7Cw\k/[|ˆm8EC@33]v{r)&}a?K-ȘN+rNr&[ˑkŽ)&I8uHW7 jmM,+\ SʜwvTW )ּ !_;R;ЏoMkfWZP<7Sҍ/ z:@gWnYsO(<[dKI`sU_6b{Im^ť, /Jg?~IF:g A0A> ( ~4MYלIG)Hݦ`.=aܯ W\Z&ؙI^XgDԦ!ٻP;4̮Oq 9W'%M~q6zgƂLzPc8rM=)Ԃaes9~׌t|UBc}0q`3oQx~$k̽VCșHv̆=J ΁vרdMVHͼN`7ƆV7$O@ BUf%' J|Ț4b8gl( ͉&,EL{՘šT۷>+0H1DRaN= ;]ܕ5c8kpzcXckmXLdX}b!^FI(]0G+t-Gh|2Wʄ 0릶@Яḿ (/>Sn56T%}t`oF _8ɀ 6.´,ɹi 2;1~}=0.bW[G6d́/Mh;AgaL$;e"*eSq~8?kr9m ܈:.u%#g(;R_ jО@\]4yXDi]bⲅt)99fll@A}W ި=>?^29MW@[GWtqZmY8؟R PKcveݫ.в`qZqSc>_,|w@jkMBIqŸ~j (&`DUe4.lǢ(3R^[\ϑ2@.o2~W @{A [,TL2Ȫ;nPVFE4:0CmN{ZZ;\1ԲIp-D T|Rmr kOMHx_n" \ǷRJH59S7&FCOq0Y|D)v˫_bat?rصlNӶyMWv#MCtYeHKO?앝 %̙#"Xnb@7Uns ?'[8fZ.;F9ol[r\Q;`O?D lrTD*-l;U 8r,rkrRT x-/({_6ҍ[I`kRwa/dnj -a!M&70jOQ;$ h/80 oJ gChDu_tψFAvI_iJ{Rh*L4:4Bmrofژ[؇ o5Yz& ,qu-r C|yKT["xHAsy,hύxIz ڟDYYĖ yQapЩ6JLd=Dsºjz'õ=2RcӃɬco#ɔ~FF Èr2]` ͐*Ԅ%X<|>/ !UKu/>TMfa->Ϊ(JnwȠr0ܣ^@;,}biwg䍅R6=)ee .ĭ82`)/,lkM0wJ-9ǼȚS ! ߌmR ϵI g{?bFq}ډ f材%5ڳbb'"bP4)O)f1{?"p_{Џa0_ G4d>|A:\O-!^)řA ,#Kidd^Ae-0kXE;TKE$N$Sbwa0a+?)gl.f%v!qUT`ceEHաSEpZ#!Qnǰ`.N-.L=lVװKX 9|+W֮pEƸs4mʵ%}78!{-^0,,)c'~=߫*l#`]K:+ae1sy:i.x֕TPd<<}DO(k&*>"*C\7 L>"wQ,'kړiGW2ęͽ8͛%ΨYsL]sK+*>)^Q#;wd2^ϋRsdk|hox`voʢ@mp`7IiUeB-Pc_ٔ#_2:qR=HT[WD/'MvA͔R8La#lTp'oݒEsHijXC1IPW伓Rԕ ϊ& ş1F@6f>|?O$/ZS1L ԬVQXP}j=yɱ"oVQɝV, +15L߃Cd `GD X|Ԧ D_^BJ4qF9|lʞB)$ zXa=GhΟ7k>`Wb{Mmcw!- 4EĬrc0YQmMU0R'ϮDDZS\"C ,On+5_tx7% oGB1qmֵ,;* >Ȗ$*wC$ +u(.%H bXlÚ#O>>m[#b$۟1:EvG.CX?}@BEi'B֗ @cpn=FD8΂=ϯdd1}&FtIq K9S{0^2jU`l:Ѓa`Nì#:+ ,pMpå#Kd8B=nkIM4X6vh*'iQ&tk*. ܧP32>M9zG"\>=2q]CJksS)p#:1",wfQI9E=UbvתσrRӦMac [/s*rE{`Tp=`Mܧ^'fͬ:. (x /8.J D:BI6&FxW-qEm,ZߩN4ʍå"v}*/ hQ?LW `6 5%o"N&,tPjF""#"# ̧4Cqtrݕ-mؗf(K9GXKh—r.V`<>n͠ }kj6'B"wT6P8dQ ."ʿ[H;%('dajf~ b6CgYNN@L 9Np0 rw\SHeoųFzVp1'$x([tͻ A^#R*֔)Sma琠ċɢAܑvvtzo@H`1J*ViPkg`'P{܉$YzXGYW" ofb8 |P]bJz- >޷ROQ@=$H[tIװ$6tMX^BtPo WUy2 6ElnS#gB=LJ]ŵ3T0d8(b/$ >6È4V0"Ҹ R;OEh0S=ִ@޲`o.vDzbQCNR2uh%>?WZAٺV9 ,WM(n Ӎm2}-z,5+SR?g@eW,Z dKd1=jaCncB%1DmĈl!ncXYP09}^ {Q]$+ $VUc0ޫX~.;ʶ".tBR N/`wuraϡ8,{1\tld+& aH^ګ8h @>DJrJQhΘ!/Z8}F1yEԧF4H06Z蛢p v4\=R֟l1j^9eÒ =炋M56|O*7Xze`ߍ%mmty8Tĵ@T Rh$8P>|3hkfcn!C =K>l>)l*OZKX6 2w_^9+LQ/æ`-!0Ǎoۊ0scyDvS' 3Ealh˦<=FuL$k ;\;?$^|E^* J舉j֢ )8#ΕϢco;fNlv+4A[չd D_eT,Ղ|y-;`K8(Zx7Nl9E,,w_ecAJN:rpM/Ur+JR(<-+uw/\؍MCKkD⣑z@HݟBwޏ">:l{QlAn_1ņJA $ XJ[037Tk :k{*_[>-W^mi\ F+<*\c{05('bM.8rCH0.5 @Vmw(8Y++︳VZ|mYG緗16K8ӐqSQ2j|mRIL[@PQGGzT>)노uClMvi|/`X]OBfK! g  Yb&0n1IKl.yn?Q"25-5kAxe\2Mr"!#pu숵8 YTK /:~^+Dr#$`H eo1e5@ !Y_𪝵`Ҋ( a!xE6L05`vcx!qYK-EL^9;뾃| n@[zNi.޴f1vQvk weFl$TW pC* {j {ϲhn{6AuxѕQQ123RL/j}%4AԒr&U5(>iy*;{l 鸿z([LoN~9ӯTH96ph2ҫgcs/Q+UC6FZ:A`3]y;㕫&/;R TrUk߀Cpɘw큍OhEuNeI ve3<ܰQ @7۹{ؠtx*4obL%?~ i3wU*xAY!I|&QWULKh k> pǍ>WM RtBq">w1k5  | `f$:eh yNZx&Ugͭˡw",T8,m3fS,'o⊀.`Z\Sא{od(9X}0x,xn  wQj!7Qv :6'S s@2xC]ߒU4ύ6YV4^낐ֳ18NCc-7#=*"IywjAL~奶̄-]j_{,žf-2qF!z>([d 蜭֠]Ƌ@<i2@tSЬ:9pN,wG*F>| S6Ldz2j]aZ˖=&W@lXvNW:Y(Fp ;I`E3A{Xsk٪*^OX L#4rͺBiFR4ӟ,Z u9|zdkb=n+[$cv&8"~N Mh)iCw1U|S*FTw,A>~*H&,LjZ V+o!>{=J*Vgf1I }lQiR{.8N68RK&7F=aݤ?Hn2Q6nNPrU<,&HQp b<ſk%+uO$=>WuYpyh9'569tWs56rI0d'H&hs)(zNzőKP'J RJP0 k)X@F~m}w\3P$mރX9e'KsKM%Y4>z;}6%' ؞&F6T_-B%&#^+UAِr l*Ǐt107>WN }*^Њ#T#bB[kKS~VU*\:;soߵBfOG2FQ[໺EL';!QKnIw_z9REN<*0=4]ʾgok| i`".֕wFj+['6Ik~Ċ;?kcY Cy=7ORvۈ.aF$Cut0w(d=ƙ1R!mW{:D3 ehwf.:9Ɵ>Hg -h- &4{(?>U\4OPŒM ӗ o\i;Y$$נB("F7=I#'RfaS۩~<QiThvn6q@Tsfy`lR~\R1v:I48*\6/<$m2%2*Q՜ xk\.$ L:Xh<+IWSaf_zоrʉ^opk`, 8MYN*LSP8FMÐ{},Sf*&ssn q(_  T-)rg7f BUŒMs$ϟVdqʋ\9J_*2!t:`ЬF!C?켲0q4@m\0 g+]6BD h "-ϥF2nn/]Ƭp߁CڮY'ZpzbyQv)PiL-so$0sTD\F!bi3$P%F՟) #%w 6I9mӕMq_-=nk0l%@K1IhdZv7|dGW"9*=L/yy.| NcyhD^nUlPBocY/;=2)U&e'\:T54 TdS[~z8bkT;X;`8~(T"MQC.$2`1ӹyFO@ڥ]فt]g r+*sQDqZbIŤ4%bPr.lP)|oh-ʺb};k#c:ScG 5&~[d1r .s|/>m麌c N$ `m?Ww#,iTAێnw4ݱJx ;Z k>.gc{o݊|EB89y8uw~R.55C !̃AF#\ħ!xjuAج8SvS^4WCVMjlcpQKiaÑh4Hj3)U#-8mT lF7,YJMc ҘA xj\:Si5d0WidS)m4b~E3dYn C)s݉*EKͩ$|*zn6#`-aoezQ@ $~ӿQoQ5w&"m? hH`jry%t{M"NcqƎ[ oz@mA@w~]Z"/-6L>~ΰ{OP#[7s> Cma:@J"`}E%ߧ Ǽ'(r侷uoeܿc)e**>47!clt[ɸ{& oDU LeU./MQ6`nM I3^}A_ '޽[mѠoLmy vaH^qo´X'xޢ=U4[$z믻D9\+=tK:"@0h>+;Ɩ ]fۍ[ǿA/BSgD|(.<1vȬEYJGcHӆܫP%lX$YU-?)Dÿ7h2aME_̞!Xg߿+GG"F5N@h0QR0he!CG5.˼HJB}>ċf˱RN^|**O\Z/{̼;Ǔ0fJwAXtŵW|h [GKGcCk\NC %P2p\p'ڳ0;@E|ʊEEZ~b@H [SAcIj@{-=Խu #jϧWctfɦV7j/2:ڭANL%cev'.Т[FjQ`U@< K4 )V|~AAid@'qM4zG%cL=BgfJEq24N)QdSm Wנ;.yB1 xwblQ>2Ҝ3/F DӌkU锬fZƪimZ,x)i[+y cJ.CW^?zA#,#b(Z!d%0.FMXUlmRMH-Փ̘/ߓWdx9O$%zl w{5UA$uWwJ:iQ˗9.., 9Liy˝6B|ؖFK&h XS`d7PP+TZ.] -ICsCL.%6Sf,Q,t<tOnUehՇnx!O~[(Q_O< Ր6Lnm]nS!n>UL ' %"=_5>q]#Ռ jraW<(9'ŪF$>ͶLLGYGEtYoXi`; zfD agNJxiAɿ1:!aaWl#5nuQ]]^%^i}qhDE g@$.Y2ZFL^s=zL*^z}K\Үw][?\Qۦ\ sXgf$_[Ueslc}*W* -I3BK s8B"a'5Df_Vo ْP4!b^4Ak@ogtd% @r^x0Xk 1plql S$V^2j,@B瑾EA؀f:\suY~V>INo)UW L TBXSu$]+;.va^JSs`:J{]ST@ZQ-gďq&.Kt9ioI%{4BY>ןc^_KZMjpԻIpd[rl> !}OHt-Q'H8`L).HqlhzxbA5G&A"|ѫav8MeܥZsø:_Z*K#ЈEǁ{sg=560' h?wxgg7\H#~̽vNm`Rx{OCR5ӵ{#Wf'ڕ> ɳ l5FfwOQƓE{NQkl{ HW{% < 'TtsqZ"2o.!248ʔ^ZғØ8ZN2OhX6gϻGv2=!Ġ0۠}WS@Aw@^iH5l9®s}doKA@ܥ"f_^JϫdP8!(!e|mkҢIB %vxtw6%Pх0rv/oVrb~^R>2Kk;5 lÎOꮎl2^_K'ebPp%<ːs1-_kej6Z,d)Dxc mjA=Ȥ_nYn/.Zygr8m8 v)2: 4@>Y] U*?WZdirer#x+TG jm&Ir4Ȫ\7!&0%}oܲ{Gb9Мkn)K+-ƪ9;CuZQq[_AAX?7Ӝu|T tOP ,ajWHzڌ2#$=ehӾhh,VOf<]GB3&:wr|.\9^Q'R9C/L ;5q4m*Y<9ef؝s;3sy]2w_v8xTdiF ܶšAɜC=RtDxx)|NUin zw;=F]Ʒ_ Śo Xx)N&.?ْy{llp,FY 8QefMcߎ}Dֹ7SIΒWF=d ܝu-5H{A>{-gmy0x(r!MHvYs f ̛xBP)5 YJi76*]e\2mݙ)y Q0R iB"Ϻ ٰ-ŭ̍}9 -[!]\5 V~3σx˅ $+G텲s`wIŪ[#O"Fʃgrm?b0tԿ^A jݏ8 ']s^rI<jzY">]ւ1^'>`Y:}QVF :}I&*.O|ƴĀ_aiCƎc#lsdԜGRZu;qzߜukЯF+;<,<5QPrT_4 n{Q*!,pp,'Dcƀx5,MpHa< #J Lgh zmA8G)eC[;zmtsIJݝ@TQ5D@Pm娋5+ cuY~)Iƕ_D w.GZIh903qX1 -iЮ(WNٵ7]8Qcx€}CN~.raTZr[8<!j7J!Xcѻ#x1j(S.h%Ojŝ; h)˵\tӾ&: fNМ@ ߻SS+-tv1GHf&W +Fp&dloЉT[gܖo!$pY?>E]j-~9γpְ4n'+| >qs4 q |0ڋD&S-3s*M;_G[(Tx"fuGW:ڣμlg&7r T KKwK~T=CE _ŹAp:p0KtrizQf/zN= {t.M}Y(?$Q0&l<0aUIYȌ7n'w؍P6n_cƏYᯑZ)0v|W;ﷄOQ~HUp7&ߦ&kMrt8okGr5fڞPwrh5֐:n?>/M7t-# N$SS褈wP2>C)u=ryK7a90{DH.U>W'Y?}2EKㄆ.y:3-K-&zs.rZY5xJ_fwif!.bb 'q\"\Fo=aηqL[I[L9tXGllf= zZP] wLq`NSQY%@!cs:ߒ֋4;8:$L4ȂZMMG6ƐaHhJ[oe UȕHf޴&1&-._<V`dg%RۃVqw0h*YjR~sƉ%]MLEDXÆEff׹7EN>.ŽɊ#m,F}iS~3*[Y{N}PGtQB"?n#iF <&PWT%_0_c27QMhMI -ܽeޡWyjM&(?OgUF*:,\嘩ZsHy0z 2$_C4'Zdya/P9uΩS8A߽ԟ;+bɫ#qț %!a/V hѴѱ|x!9mjD2g_߱ot*Jpso=-;uQvlHWODpP$BQ SE ۷0ݸ uj+5k$__3ΠN}:vBF%WeaA;X1pYo֢80mSc@#+GX!D|pUb@>#h@@PEyylܘ,dz..:9Y`AˁTP^j:BѻTS=" vFk@Zh]^=ŕ Tl| .ɼ@r, H۱–,? !aFY1((J?Kޛ{eHH4R `kvJQǯ^ƻYM0hd;!D(G2FmE#eb.]Q2HU{]/_m2 xkѓ#m]F+Och8-KLɬa4iDgv6NZذ rBa{Z@a3M[ U>\VτRnXͧ7Kz›(`R.@GsV̥s9.pHifkUfpL?E$Fh 4B+-<$PRc18(8pT- ;N ӻ`aӡc'mh9 !ؤG*H'Y/7 vTD-F QqD ?p q{WD!ы1-}+5zo CoE/ N{c ei~3_zR;1S= zF6?jQ=Wo|e-EF8,UG$ǖ0{bXaIԐ p-FD2guI 9gKhiPW> uea/`feEUy/vcd:*Jza<*J0u72_GEٝ f`wʟ5sN5\S(7M`;">_OOT2=}ls;S5,Z%w<8I9`pHQ}Go9+͊IPET|[Ԡ(T {pea!69ϻ@m'95$Aq=[; F8E i{s^+nuxY^d⽄&~wYȁu[Mpƃ=b8:.?不TqyY`m # $rN8=\yp}Wy)(I,ˢ$HBzF)}H#W {?]VBaDW_F٦u\mySg^'ry Q5UnNHQ)p#eLY՘=\ݶ-Q=(30`0f2"-d3:yɡp6>ra/%z(Q`]1儀mRbu[ t\}Qsslmyꁓ](9Mruı".WcXd# "}G&G} ~u$Y_Q"p}7%_(u :x{&fn=zlJďL^k_83W]0ׯ"VF$nIM#͗VR . / s0lAȦRxpU=@_/$cfYZtm֒ůUQ#LzJ>r$|)݁w_!ഔ{f 7nTDRPaS:IMU42٠de nlg[7 o'6E{B38r;#RMX͏e رӉBo1ڰEI! #ڴȣencHUǂoa&7v~R~;_ 24 2]&ye'&߸yBg\[_ۡFY H_峤 0|lصoj+(DlFSvKLmvڻ4 h~P"U1k9exϽTdQ>7fxn׿8-6گDNƘJG' F-{r[ \l'*j K~;fT6?HULR Jn5#>3'/g-ѕ0y1j&R&*Ihl czS*@,,PVse((\Q:`rٞ/Nތ8ʗ,,?$8V"~QR~3 ``%c-Iaf2=Sϣ h"Bm;O[bƤ/Gi[_eZIdkkb^ʞ ,/R4)قL f!unvB{'W}82? NH#*cHs wH%T{8YO؎!%]_80?y 6bO7+!rԱxNU  Xf*)!?Gµ6g3$od5= fXd8MC'唛;.? . BՍ?lAe7:쩲DK/2wyMK[_jHLt qÆl FT.Vܹh$j%v!ڲ@`k,Jo #XĊkWm~9wt&^;P6y5VZJ|@!ĄFHڡ(1Ғ颞(q[ԣ[sv6D8,eGP4<02ܟ@xpy ~[;땝,#G"<#ݒEMss'bh}^Y:NIڈa1`02`^P3 jSa6ksm`u/SNɦ̉+@3,E [Eܕϧ c͘6>n-.[;-vtU<`JEy96ؙ*fz R%RH: TE{K| -^R rJ:vN|K_r3z2Jg]CrV{3F \.BXruh#If~Κޤ5>0^I_N[R -Z|r;+WHbB2Z)\Q4*#+CG1H!"ts G1b,,<ͯ,6lrPs)o>YϵrN}?g!Aɤ;䉒X nJXs\F^gf 6<`('2r7YqvO\ףcɲYhbYn׌V *Oɏ.ޖ`e87{ e)4@؅t:`r 1ϑ Bi41K٩(ݽ a{1KbgV,_s +)FQ ^6YtOe\p4v(qF,.bWCg^,{`(SIkIM! T.n0d*V,4+_(!(*L.L/ŠEnƉ(c xw(/c$h,goDʎ}eߺ?%kAS; :dZKѐ/(1fG>Ɉٕ7P2D8Vk:fU/{YDy.^1UF2^(~*׫/Ϳ']ynS7& aYR\xo# 35.V /6Wl#"jRꊰfwr f&PB!^+W0|Sɱ$/xTg>B`*Ŀ_? ;*`V}S`+lb[eea; 2`v]VS^͉ӿO/JҰ,G T<nnl>7+ِJ@a{WޞCkҴ˘) $O{2\0 G9 t6RrpuWo451op(̪{A'xHC zZFG N"t*+3*G9'nt ʨ9jM.AӁnEl$OMr@3tNMк,auoL 8R{]EiYp0cR UIuM'p#6`Ydc>2 T""!88DZL.I0ƁWwQ6:RT+$q дqWqKSN#2Ƅq JDG$x$S[Dڲ6;scPcK|}Z\jGGB|?kqx=jkDAͤɺ@xRV8J5 ZɾOCͨ3:{%wS9?Nnh_aI"?XFGT˒n+ޟM_Ķ;o5Dw#KGvf=N{< c*~"WWEk44BU%7U"0je)B"1/ʾB&\"[s»uCFyγA.ĥu@9?nAKEa[R(fσ*1,N4'z٣`bFߺMeayB'nΞ\jxԵY.Ku =TuhH}8 +HD @3w؋ J{bVRr7AT]cbPh Hh1*Ѧ!t`>&>;ϿQ8=|kR(Zz4wFz|f"gE-`usv.l2y淄= 6h ,ŚJ$jAծߜT#9?27m8rY@6-WQ9l[/G<rkzCƥhFcX_{ğE%#&R?UP y9?U]݆AJw;*-}4|_O܁gөEtHI]{.S!28NU'>VK:!tfێj$J A-x F(?#@ 30j?49IISXJtDv#vCp GTo0W> {1+;KQz}*Ңs3$V݄./~5 oZ2AϘ-EAwmnד U[PUf11MWzc5>tfkLCRXJ(LDx) oL}󑽫Ů)t[iLDJh1yH^dzD_  b>KyᆦfBXO~J2 G|oZsIg wί,3{ P+oWcEw>ৠU{~܎fKf)KTW!@]y}(y4GA53_RQ)l3*Bi0teoHj$tP'u2)^'33ޔw;>W* 7<;hI˜h dg{ b |ɸ' #gXA?]V0L`x$!#%/RT:.QnJc, #m&*G"ViFS^[Xp8eh. h!0'Ad'7h4bd |N }>ֱ͖@ɅH 7Nzsdȹ֣F ~ g١t3]3~ei7Ǽ*w=1v簊I"nvQH'\Se'T\f5D6:߃^G@bqOpbPNÛ퉲ԛK\y{ޑz]2<[ `]ǎO=䡌ZwsJ9C w}ό8=)hFS$>AY%tevc{/<7V:q.(.nt]ȯ١)ߣ@]^2R쪠PeB>//hI6O[wC$B*=- X1mָ 'pץI 3;/W4HT=eDc؆A ケ`M0u>!g 1s}gw|=˸ArXdĄ_fg8 NgÕ[#I:sK31:|}d(:s(!yNr>D@$VA|,ATE~$L[9K!Zи&$N?bel_E%:jKJ'\oʚ:YK02u*H)5pj*nnmv(7am{a&tlN2?-PXۯ.]eys!?G9i#75>+Ia*"%K3{#1X'\No:G^{$LFh'6vs:ɏ,"-*qo;')a9H ְ5 ; ePfZ':Ԛ!ix+!g\\u*b%O.%e6[X`#0R.:J o~̴ɷ3 ˡdpxZ] h-O`Zz~\|n:i mo͟Q%84ȈM Pvr-<%h&qm= ;jÎ*&&0HL8YzIO#p[~ƷImz*6͇L0=qa< p| 'tmy`&]N= =@nͅQYx6*YO`Z4ilE^Isl6Y&$luMgvP0G<>/m^agEnlr*R_]n- \¨I!ВJj;O<;l5SAc_p:"%;3%-8? fݻf0 x޲[MR-]u!Hc$$Fӌ;7rDHpLE`zw)L%7iCvbD ~E6>$&09|5m:Թ{H/.3̶ OD)]fĜD6 ^9uG`NS ]{ݓt+V":0aiw^Ds|$0ˬQQS˴!EѵN7v<㋝XT2 ˦>[ܮ.AP T_ur?gU[K.0N/Z_ڈ8?}|oӺЧ?(NԜMhKaţ T\r*>|IͶ@C^"ցOOamFU [eZv-$i%8g;tFW:Vl2A6'?$! =]ڂE{?@J\eCݨ\ /%jy|7 $dlwPV6c3Nhd#唎;Gpuq|UNRN-軥my٘ Rr٭98 ItTyEո1DE*3՗QzNmqj1@0IJoLl 51m4W(Y!'w}&D(S&,W Hl\]И(#5: Kt`  .R17/qH+ˊDŊ[ jH6*{A kic;A=@k7 ~٧;誚wdK'v "'Z{ va*jR!9,q#>DIDg'l7^e c/ ,c'Ua7Y{4y]hTȱC'߫Ä:Tghaku{3S 8'ZrxNӗQj0Z e iĥ";Ko픦Ϡ\'t ? (蠵1PT+9l-u"wb8W\5쾦5}5pS6iKr.2Koc vd3OdS/^ynfR>Nuڰ*0%_/ a-@zVW4& JpC'uƄ~&搔a!j߯J v7q&qz2QB>= 1DAޙZ';`ԐJVbbltd`@|!+p!_gmiEpOL >tE:%;ޝ#NW_i8T;_&uLkTE=>-/a6P:y)Vk%8!;9{ɝC{#Rl܆S{ĭoO櫘*NёH><Ϲz/`,@h?]o^8S';P:$'e)Htjp# LC5MMbD[@OEm*]fj[SrS?ekz0AH^ﳤ%.>.!޸~ G#vO+a13Geߞ1aѻ'Ȇ Ku/ :M5.D?z 톞ue~ J\\R]͛d.28[< G{Vܳ n%^*߿rEt/ j4x5yRC`lQ9l"1B{ Ÿ#g-W pEPy^ς^/h~^AVG)g4M 6@y;tB$[ai wŜt>Žu1P8؄'2B LȺ"dB[s0>ḯ]eeo Le%۔(Ni3M[(17k&4lr z :ZiCҮdƙ!6gdzS:Ɏ{>E }R;OkZ5}+]qgX0c9_dAE{2SW:hr#tܺ<᭱nCˌOUyMr0aR2Yo?Q`T#*@ 3e"S+`1WݙWV+7!D^5?/T|Bثcx22lPT;cDzpn/Y W=RWJ,M7Vaq#M:]^W_䈯2ւ.Kj鏺6mJ·w:Qwp ]%]4Pѿ4 fҞ{N=s9eDW@V(ȅ"ѭǣC T(dS|(ߜ)ݚ3mašD5pIf떧"c9#Pu@@\!Z42d8U'|8;y)R*;IO`VٗAִiD=Ec-jruӹarW ! \JɠЊ&7A/@ a[;qgX d ; O[ݞ7~>z槹}'ltgB!m8a>tǧ6ܕmW~}D5:E;ĕMWyOnWM~-@!HC,VCljounqvvB\wZ%EI1 [xc}2<?m"^m5,0T.*2 s +Vȭ # ܧ"!,G:k޲Y\}^A'0$|$(vcvM3NN/%V N"hKfPze?Rt;i `{1E!'=F2l?0hl]MrRq4 4r!! wۋ*eS x̉chJ?݇6:9u 19?2uw+ |>KԫQI6{5v1B?AVtmz戯D  ac[b!Ʉ|'1n+Wj s!Y}cZyD^?+\B*:RBP1:3\*5O60^V/mV=gYXbT~9BAu8ONZtU>anpPm~WI1 }~1\h% %ץkjnw2KjoؿNSNԓOB7{Ř >|R 1,EOQȼsuoq91v}W0dN|@hwfKh|IlM=/Wêl;XJI\+ YKC78X=`UL Xîߗ c1z7U;E"'0abEpc=hXK1ehmZv u/gvy7/AX"{ETifWUfֱ!0|MxsqoTزNJU%2wh_4̥.+|&ڭ53wxa!){K7Nom̰OD~w "ׄѤQnAoQZy0"4M ͹+Eh#'ԥr灜KSlVa8<,| .iH˕` ?2;Ee&$ab3'a@+-؇a-*r`aOW4Du.;W݃*& 2C5$[;@O VFɭYY&P;ۻb>*#DMduqyJՅPnkԿ.y6KG>I`o 6 h0-|e;=2%" 6Tt%RAif"D ^ss]ov"Q(KP; "uw5/8ߌ}{,Ɛ7?z`c&5!<>߲LJ]Yj AȔz!V3z 9`ܮKy\y{ ,2l?<Л橺wuW*v3c8qC ~* "~0\tK3&?~#ML@l{e)|v"4ƩpNUAk)]h>'Sʊ@%zS8}Ii?w.1Ajd3bFD]!n h}l˅>3P>xG^Y4A6 ")֠HpǺk=F}+FIƏ򤬱o~EFTQ}#oI}sS-H]ɯG;L-)7ұg|XO\+שw'y%$P$= '^vNWj,:"Oѥ JomTgU JOM[XԩRLp 9\)vDp  X=8u >Hղ1*`Ml1a6(%H j %DVJsT[ѢO 6a`WHbFT)%rF&E.؍eBlv:B _ZWAҾGa!W>?9x^.6^勁"mRs٬ k7w8lZ0HG_7)bRA<=+ +bJܸ7w AYaEGL.>tVcxirc :˒t/IQ}b1I+%5sLj/|>n0#?$x"D ǪaY^}(˅m 2I$ ,9_ꜥL)3jqy{0lo0+L| G_Xzn}Q zpT$p_=RZ1a(Mf.\T!/;0roMDo9gB,(8 Ɲ*5Zi߂= 01tAXr^ a`DU֑{ĹrnH[vcfJ4Đ7=[E͇|/š nj]CpKH9>elވ=|h9Mefodz^қBu9ޥ%iaԞk[[MKIvBOdK>BC+4731o$; N*8鼗Lc/lbA5 1w.cwdoSPxހt>4ntP{"ɪִne1^ijLtWRPt]e&.Jg4GN)¤=0~,$Glи :Nb7PeN^*XJ$A`y|]" _N\l̬gD)ju[N1n򷙘eg +D(< $ibL[9[n`E(9OVkyG _Q4=^޺8[ O?!Y@ KinkDgV݊4!1H`a?&Y .*0M׾{m] -/UW{΄Χü!ȂG&CH74 fUaҒx T dͯs2_oT9aYk{|]8yU )Z= ϰkʧ[]H٩Lj&) 7'O&˒&0kp3'?[*#3[ܐ73K\,YMZKvmxb(k;5a^rWw$wQt ;7)#5Z{#ӡ_;PGH:਷h55Bfqߨ%4@Fk>1w;c1 60O #rM-UJCP*s 1U1sJP꺚49xY}?C3Oȇk:a \gT6٫Lq*U.6KWav?>¹;b6r["\+JqO^;:38$z.e2IlfwEEMXh'^(JUVEwwWďLΆE/{ڴgñX #uo+;ՏN\YoF rny/K5u E<0l2,}]4]ڼ{N(5s3|NwPM<pΑZ?h̅l"# :#].UV@ySw~{ƪ,|њ{.Pj.;;&K{5/7tQ쵨}5ibP\q[NL›ہ=L>$L$F';4g܌EWyJMal(3ё[Ul1<l :oD۴"։<GO3r"іT-Os咖>\2{d~ʈ%iR {w-o<.f.#oҾ!"k`~3;'unZ 6S +ECQSl'g`FfEݛRjmyD)1[X= {L /s/γqPfkq,: b]ƝVO:O5%p(auҌ9*.9l]/nolۥG.dV{_D[œ&?ˋyMc~XF7vip)Q߲֨ՙ϶%3j6TE`fQ9z|xMsF𗾭P̖ 0|#t^ںnvX@`Hƕ[3FaTulfE~ w*7oӗ'F56<{=}`p( o ')c3,%ȷPPᐁHxxٽڙ mtxP:Ie1M͟ >dv-Smr YyL" &n6?., pJǎe7HR.w(Ot]y6p:hvsд9WUu}|jJ$d*U T- @qIS&D5ߨMZ'(uX.;߯!a2\NYBH>WV2o4\VVez3UX:!nf \nue}#CC*8^|nF%.Gȭɰy*W2K bbFcF!f%FGƍK*yRiclxH J(H^FuNn%_1d.D=`eHc$>Uj3spf/R1Ɠ9M-X<s@}ʕ0Ddy3:و劳f/pj >NT +}zec5qa+*S_پPSݬu(LLX[5uuSAu=?aIdSY Á"+_ȱu츾8l4dWu8`)MT^4 (5]u`ʟ\"K}y@'PfP5 Ģ#7)Y][HCOcmZ= g6y '@`_ FmƛnPɋ|t&Q^mthEg=c`-1MI[ʠ>!Pn!@+ S w!| 9o"\?.2#M fqqyAyXHެGg(yRx( jĞX Jkfuoۘ, <24C6ik0#pfZ^32v@"_Ӌg Wo圐sh5y,=T579E`םϰ7HQI{Q}9.U(e*IT>6j~q";޶E4eF @xܼ8O='zYQkb޹ty6];(ON3Ojg%!p+/샱6Sc,ޥ4K)W.SW|0? E#{g#Bl~U&y_/ >ωx'b> sn)G|zƐ'sv's?o;ΨTlޣOZuOxa[[aQ+仦 $P ?'9׻ qGJY俄eAG) jƒ,@KH{AЪ=LkoRSG͕Fda| |6zl{vJӘ_rUIH..c塧V+by" M;ȍ^6Xc/>i"P[$H 7S8luTA?3 C?.T_uӅQj= Q^p[ `kkc&⯱h9v쉼<^ON~lxVAw9ŸwH ރ)ѭ^` s0fwXJn/qhX|;Myn'ZKѥk Z͙bjL7l3 c[Wl #(%ߵa~X ѣ2'Wii!O%[ɿ߻b:3?~w_Pȱ[AH!/;!EDvRa' r1.JA/R؞:q_ЅOla%=،}"#g iSORxl徻1s^HCSQI"w03fCFN&>;vM*e瘔myΞٜ"X l}L/bH( J{..'4m`{| (Q10n]_wuOlMd?$|V-$L{|gŵD~BhWE(AcӁ3rf>DG ZCS^3\36i 9[ƏKBD'Ol;Ae@ >0z:|Dr}2gSgcm)ϖc;UrS*雧}~Z|͛d e7A"xJe7^=.LՆBƣ_|U<%e= `~"='fZ~N!hT{Mwv٣CA? POH˽/.q\^xv&-'BWHoD./6z9om=:a74sUSRM"aÅ2,1L:F?GnsP&; bAt(?XOgH -9h"Pq*Q8F,Ԟ(M8ԓV,am1[>87!Au ÕE$KqoVW神e &r&:iq(ʼDA B^TʩI /Inςi<{I5g9:g;, $YqVRF| 3||x!vo:Ʈ{ef)A^Eu z6!B\`K2+g'QKmos{@oe:)ɂɷ&UR,3 Ԙν`E+.Ka7c\TVb_{SEiadsZ%:Ln}^INb NY9˱gT%n@3Ś;wؾ !WSSW~Hu5տp vo@nlu8'8[|@xhPTCzZ] ڶu?%`<ӫEBGP\\6t\V9^~T,#ꀄ򰠰Jn99Kפo<-4?ZN&.)2 Ea(zyq/0MƜ ?\gFSɧՀd~T+\n7Q~a8׳tu0( 7}!_2\f)Q-*$c#AI`\Ӆo5FL4[E_J2`^ꀰF  8@Oq^to<bSl4X4Fۦ(*8CA#;uǩx ^\dx?i}ǣY?Geeǝeϱ)&ġ_+SZ"(l2>M+3d*Bk1RFMg$|mYE oV ,{Eղ^'3ڀMJMNrvM:"} vD+?mLLF8p׉u2B]6ȂlA4>2-1`̴|VZQl㥿o5yF wW.y Tw+=n(;9w1z=d(|C?iwrOi}Y3c]+<.NkzGi\ UւtK8X#qq4m]C^txq3 F/4s oWO=!bZ2X 8$JDY'4iba ]C#%F&Hx:LÔ1voqב3!B=hi܊o3>/Tjws]LH4I3drU4k^ R nap@׽1p?&ABe*@FZ> ȻoJ;kQ)Sᩲ0ܢN˜ДT>ND4 bNdtfȁl'!rg$?$|z`*OpɈŷJ:2. `!R<EgKp&W >o48^<Gj@7hu2Ѕ<8Ul4W>V=6Ov RdGRvŨN4eweӞ N A |oz+ dBCcQkh+~tQAL}0C !([2p ]i{ ͍r[9@JR? U/9)|6-̛:RH"j!Dc͏{}+MJmbd*HňmnԆHK{|LɃ~P,H &K{<} 5bG=CB EF~T$+ly}h7jB6 ؋,06F.ߒF *(%}V XZ"k26-v6Az!gWu;J$zj.Ds(\-~ 9Tl`oUBBMOma㱓i{ٍʐL&E,JD%;RޒD 5^NpT*r5LFY\9tRpﶋ%q~81iH ZaX vu3, H?tV%7Q^k84\dz ♹=BY }%?dNŵ'z7NSV yb#L:~LBdܚ\6 4 [S E>J8 "έksB\p&M' _K+Iyw$5{3r\_btyU53 /,E1$wlAx:Ql0Kt<D{F=tNjwԖ.07rr1~'mg_ =I[oJO*/$sH:¸ܛ08l4O?=/:pJ ~ETUq|'eGRoJG{NBFY-esXkYTIrMj(Ӎ莳rJS(IG /:5x)?d"tdžg;(G̲U|Н?\+bs;0:ḡ~Un_tL>ev&Q)ps6xCZD;ȝh8lx'|*Hgi%fcb>7,ž]*"OGz'ԘIt(ܴ&B#,O~\db@Dp~ `i<ҧ`[_<K`xY*}p4{ok ‡aFvCBZ!Ӥtrq\Pk2p TXEMp_܆+a+wF8_mFE ㄏc[3lB#>"N2{5am&'RS:@*uF+cjyvY jP"HFϩ*}?Bڿ"FHƵi~Kf 6%(/bXx(n腫m[{[ eMB"vcnXALȕx0/ 5>=m+  6jg1+=|V6e[մޤp-qr+tkzv?*RJt[ ۆѾ^M.oAn+.seJUN//j Zׄ n<n5k>?:1}QKDii7`N>ÕwOAP_f ۍIWK Gq G8޹_ts6a3ʫJެ- 0d@Ld 161*u\0v(aHb#A3%-5Z :~jݹ_ӣV} ZMы{Onk뷌ne%3t*Hc0k'M~('* Jjn[d|yI"Qj8S !˯tE:m\Itc|(N1,0M0 ?p9WzX>Gf#?O^3QsTE]&ٴ-M"];TMå;XgilHd5P>芩5y [(ʓuFdkjjdn#N?",Y D u3͇v}5t .s:xr&ڪ̤Tb 2WdhpEf$WhD;\I:l+&bdDxq^V$pفFyM\Lwm}[G:ʟ)G"s _]ȨN{JI$)8}X[]-C<t%ZV"5ŴhJDZ+*1E% r`iիT1%@m)g:{~6'jkhM (X ˷w!+B`ribn63^D#an R8קsYkA)lHMkg 5`iGWK9m[C5~C-F759K-hS?ʲҌϗu"<u!ALDTaEaҊoQ-9|:[,?Nr N-B\؆2@WI&yk)>{g?gZmfrۻ LU4|u;ə /'q> 7*I*ģ,1ː];FV0* g?Ҙ̼an3'G@UpӋza;Jbx̲9Wv:N`;"`rjG*)]b棊0o'. };ޛsZeS2t\#}Rpz]q]O{lW-jL܇2XŦ5&^ ̱cQ`m/#32!A섞@{ ̀K ![վ0|\t(זžYD>_.l|#D@,ΫZ( T%Vgj'Rd`4Pg6\3ܔx;CZNwU*G7W ÛE7l~]K}Ј*iYX &'}cRN6`[',âgd8 YA 'PXuY\]S9M %{l,d|朽ZȦhGZlqA2? nGD,cYS@RCm@~3ON{N:[-uV{XËn< A? @zd/T P2 Le$W3? K^%jBD)LuweHap2&nJb쐁dʥ>,Vv3sּ-a#d`?HN [dT=6|w-N kPz$aO7)$r+3afza۾j규FnNyN0w_dM o)S qn1x`"ԭDsI9tSq^^T>@q>Oe=3EVSd%G#ǹPPB͠UTCm)̿Nsl/~^⸼s^/u"F`"龣K9#EvR!~5]!?i:9l wCسIؿ~EYf:%o[ד_m2;t3!4V 'p?C|`N۫cXDNF,ƻxR.(eˊ{ӣ%_Is}Iʡ#Y ${dX!;4ѽ5"p SАP p u|l\>" #$F~?NH 2BKl0 Ч^ wvBNy]{\E+B%{bQh^TCwGT+r>-86v3Y۸+QdQ9b1ou$yp"JWE,>BuL:'ܧ>)EUm]v^H;xi OE>>`9~U{0~WI$=A9VhQ$cjs ^'{d\LK-/E@-90+s$El Dؔ"،A0LJ]s<޹uWe*n@_4ܼdKy$WqoeS <]'#M$ V W u&c 8.uz)#5u`+}@O[0vկVL(?L6Og9n\ ͥb(G23ZdJO'"& !$Ы9m1&sT'KV ɦ-xVq~;Zff8KC=ȯcO" 4zIK\؉ڔJ[F,~KJ5aF1sguҪہ = PrE-^bIa $J;B&m77#մ@|[ǖd༙+;?UuV4sfP}cJD5V u!daq#JڡW$-|tFò9H8`Nʛ"rpGp*$* 5`DtLETHe OD.\,@8bz!/L2eK Q3=U>ދ.@QLLNBIo+9Q u&562{l4{uHW:M C)=PKtq2}NFY 7еURzϹN/Y*~FHQO)B|PՌg1 h\,b'<hgokΩA֐/%PxUf~'0梕.2x>w⊘B/+ (`wZ!7)ʝ [|.Ki^dZy2llUjHm}k''Yͳ7E>l5YyHUANqT5+0-ogSw.dؕH廍nE6|~@(84nl4fD2DZ|DK/G !`2]sXMM>G V 6 6t}Y@L9q)'IJ9Hѷm6 9wCeP[Xa"S6;;quDrv\m+(7#‹Vcbsr:ԅ~ =I?Nd\ZUkii+3I3d;e 1t]E˓ - uʏ !Bm^]z+Ayazޡ~kG|,O#ky"ws|Cs%jL.owl_mΨ5gLJ27T+֑.z-Yb~n#=kQC(lm^vurk6W䵰CCk/ Pu0hrμZ=6ZhX"HD]0 zؽ۪߄lRJӊG5|WjƽriKEuFEO rd}wܑNH0" K˱3g-,*|P=X\֋7X\"vA29_}.gdM9ޱ5kU?H;߭1 a/Wu|$0 OМGE*G6R !4s!ZE"5*'Hk޾sr=&aօm=;j]I,G1~2Φocai>"V+z`O颠KWYr QFMw6